summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormiwi <miwi@FreeBSD.org>2010-03-20 14:20:32 +0000
committermiwi <miwi@FreeBSD.org>2010-03-20 14:20:32 +0000
commit8f8385125ddfcf06ce4371ad8f512aeeedb0bccb (patch)
tree0d81245af6ff3929205cda3b458d31553bfe62f4
parentb9ef8a77931f95fa56367fa0285966fc0082055d (diff)
downloadFreeBSD-ports-8f8385125ddfcf06ce4371ad8f512aeeedb0bccb.zip
FreeBSD-ports-8f8385125ddfcf06ce4371ad8f512aeeedb0bccb.tar.gz
- Mark BROKEN on HEAD: fails to build with new utmpx
Reported by: pointyhat
-rw-r--r--editors/emacs-devel/Makefile4
-rw-r--r--ftp/bsdftpd-ssl/Makefile4
-rw-r--r--ftp/ftpd-tls/Makefile4
-rw-r--r--mail/biffer/Makefile8
-rw-r--r--misc/c-hey/Makefile8
-rw-r--r--net-im/centericq/Makefile4
-rw-r--r--net-im/centerim/Makefile4
-rw-r--r--net/clusterit/Makefile8
-rw-r--r--net/fspclient/Makefile8
-rw-r--r--net/fspd/Makefile4
-rw-r--r--security/chkrootkit/Makefile8
-rw-r--r--x11-wm/e17-module-uptime/Makefile8
-rw-r--r--x11/aterm/Makefile8
-rw-r--r--x11/e17-module-uptime/Makefile8
-rw-r--r--x11/emu/Makefile8
15 files changed, 87 insertions, 9 deletions
diff --git a/editors/emacs-devel/Makefile b/editors/emacs-devel/Makefile
index f961fd3..aeccfe3 100644
--- a/editors/emacs-devel/Makefile
+++ b/editors/emacs-devel/Makefile
@@ -84,6 +84,10 @@ OPTIONS= SOURCES "Install source code" ON
.include <bsd.port.pre.mk>
+.if ${OSVERSION} > 900007
+BROKEN= fails to build with new utmpx
+.endif
+
.if defined(WITH_SOURCES)
PLIST_SUB+= SOURCES=""
.else
diff --git a/ftp/bsdftpd-ssl/Makefile b/ftp/bsdftpd-ssl/Makefile
index 3013cab..01d798a 100644
--- a/ftp/bsdftpd-ssl/Makefile
+++ b/ftp/bsdftpd-ssl/Makefile
@@ -18,6 +18,10 @@ USE_OPENSSL= yes
.include <bsd.port.pre.mk>
+.if ${OSVERSION} > 900007
+BROKEN= fails to build with new utmpx
+.endif
+
# Client only part
.if defined(CLIENT_ONLY)
PKGNAMESUFFIX= -client
diff --git a/ftp/ftpd-tls/Makefile b/ftp/ftpd-tls/Makefile
index 2765aa5..dec789f 100644
--- a/ftp/ftpd-tls/Makefile
+++ b/ftp/ftpd-tls/Makefile
@@ -26,6 +26,10 @@ PKGMESSAGE= ${WRKDIR}/pkg-message
.include <bsd.port.pre.mk>
+.if ${OSVERSION} > 900007
+BROKEN= fails to build with new utmpx
+.endif
+
post-patch:
.for i in README.TLS ftpd.8.TLS pathnames.h tlsutil.c
@${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/${i}
diff --git a/mail/biffer/Makefile b/mail/biffer/Makefile
index 4d45197..16ee2fc 100644
--- a/mail/biffer/Makefile
+++ b/mail/biffer/Makefile
@@ -21,6 +21,12 @@ MAKE_JOBS_UNSAFE= yes
MAN1= biffopt.1
MAN8= biffer.8 biffer_comsat.8
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} > 900007
+BROKEN= fails to build with new utmpx
+.endif
+
post-patch:
@${REINPLACE_CMD} -e 's,/usr/local,${PREFIX},g' ${WRKSRC}/biffer_comsat/Makefile
@@ -35,4 +41,4 @@ post-install:
@${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} \
POST-INSTALL
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>
diff --git a/misc/c-hey/Makefile b/misc/c-hey/Makefile
index aef4797..262fdf9 100644
--- a/misc/c-hey/Makefile
+++ b/misc/c-hey/Makefile
@@ -18,4 +18,10 @@ MAN1= c-hey.1
MLINKS= c-hey.1 hey.1
PLIST_FILES= bin/c-hey bin/hey
-.include <bsd.port.mk>
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} > 900007
+BROKEN= fails to build with new utmpx
+.endif
+
+.include <bsd.port.post.mk>
diff --git a/net-im/centericq/Makefile b/net-im/centericq/Makefile
index 8b53194..6743b70 100644
--- a/net-im/centericq/Makefile
+++ b/net-im/centericq/Makefile
@@ -44,6 +44,10 @@ PORTDOCS= FAQ README
.include <bsd.port.pre.mk>
+.if ${OSVERSION} > 900007
+BROKEN= fails to build with new utmpx
+.endif
+
.if ${ARCH} == "amd64"
# Don't use optimization since it sefgaults in some cases otherwise.
CFLAGS:= ${CFLAGS:C/-O[0123456789]*/-O0/}
diff --git a/net-im/centerim/Makefile b/net-im/centerim/Makefile
index 4b41b91..04c2faa 100644
--- a/net-im/centerim/Makefile
+++ b/net-im/centerim/Makefile
@@ -46,6 +46,10 @@ PORTDOCS= FAQ README
.include <bsd.port.pre.mk>
+.if ${OSVERSION} > 900007
+BROKEN= fails to build with new utmpx
+.endif
+
.if defined(WITHOUT_NLS)
CONFIGURE_ARGS+=--disable-nls
PLIST_SUB+= NLS="@comment "
diff --git a/net/clusterit/Makefile b/net/clusterit/Makefile
index cb19d5b..3c22b9b 100644
--- a/net/clusterit/Makefile
+++ b/net/clusterit/Makefile
@@ -18,6 +18,12 @@ GNU_CONFIGURE= yes
MAN1= barrier.1 barrierd.1 clustersed.1 dsh.1 dshbak.1 \
dtop.1 jsh.1 jsd.1 pcp.1 pdf.1 prm.1 rseq.1 run.1
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} > 900007
+BROKEN= fails to build with new utmpx
+.endif
+
.if defined (WITHOUT_X11)
PLIST_SUB+= X11='@comment '
.else
@@ -31,4 +37,4 @@ post-patch:
${REINPLACE_CMD} -E 's,^(SUBDIRS) = .*,\1 = barrier dsh jsd pcp dtop tools,' ${WRKSRC}/Makefile.in
.endif
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>
diff --git a/net/fspclient/Makefile b/net/fspclient/Makefile
index e39fa26..e49cacc 100644
--- a/net/fspclient/Makefile
+++ b/net/fspclient/Makefile
@@ -21,4 +21,10 @@ MAN1= fsp.1
MANCOMPRESSED= yes
PLIST_FILES= bin/fsp
-.include <bsd.port.mk>
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} > 900007
+BROKEN= fails to build with new utmpx
+.endif
+
+.include <bsd.port.post.mk>
diff --git a/net/fspd/Makefile b/net/fspd/Makefile
index 0fb89e1..ca91d84 100644
--- a/net/fspd/Makefile
+++ b/net/fspd/Makefile
@@ -43,6 +43,10 @@ OPTIONS= NOCLIENTS "Omit client commands" off \
.include <bsd.port.pre.mk>
+.if ${OSVERSION} > 900007
+BROKEN= fails to build with new utmpx
+.endif
+
.if defined(WITH_INFINITE)
SCONS_ARGS+= disable-timeout=yes
.endif
diff --git a/security/chkrootkit/Makefile b/security/chkrootkit/Makefile
index a517b0e..ebacc1e 100644
--- a/security/chkrootkit/Makefile
+++ b/security/chkrootkit/Makefile
@@ -40,6 +40,12 @@ PLIST_FILES= ${ALL_TARGET:C,^,sbin/,}
BINMODE= 0700
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} > 900007
+BROKEN= fails to build with new utmpx
+.endif
+
post-patch:
@${REINPLACE_CMD} -E "s/^(CC|CFLAGS)[^a-zA-Z]*=/\1 ?=/" \
${WRKSRC}/Makefile
@@ -57,4 +63,4 @@ do-install:
${INSTALL_DATA} ${PORTDOCS:C,^,${WRKSRC}/,} ${DOCSDIR}
.endif
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>
diff --git a/x11-wm/e17-module-uptime/Makefile b/x11-wm/e17-module-uptime/Makefile
index b98d039..2105906 100644
--- a/x11-wm/e17-module-uptime/Makefile
+++ b/x11-wm/e17-module-uptime/Makefile
@@ -25,6 +25,12 @@ USE_GMAKE= yes
USE_GNOME= gnometarget pkgconfig
USE_EFL= edje
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} > 900007
+BROKEN= fails to build with new utmpx
+.endif
+
.if !defined(WITHOUT_NLS)
USE_GETTEXT= yes
PLIST_SUB+= NLS=""
@@ -33,4 +39,4 @@ CONFIGURE_ARGS= --disable-nls
PLIST_SUB+= NLS="@comment "
.endif
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>
diff --git a/x11/aterm/Makefile b/x11/aterm/Makefile
index 01d82b9..58c32d4 100644
--- a/x11/aterm/Makefile
+++ b/x11/aterm/Makefile
@@ -23,6 +23,12 @@ CONFIGURE_ARGS+= --enable-transparency \
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib"
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} > 900007
+BROKEN= fails to build with new utmpx
+.endif
+
.if !defined(WITHOUT_BACKGROUND_IMAGE)
LIB_DEPENDS+= AfterImage.0:${PORTSDIR}/graphics/libafterimage
CONFIGURE_ARGS+= --enable-background-image
@@ -71,4 +77,4 @@ MAN1= aterm.1
post-install:
@${CHMOD} 4711 ${PREFIX}/bin/aterm
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>
diff --git a/x11/e17-module-uptime/Makefile b/x11/e17-module-uptime/Makefile
index b98d039..2105906 100644
--- a/x11/e17-module-uptime/Makefile
+++ b/x11/e17-module-uptime/Makefile
@@ -25,6 +25,12 @@ USE_GMAKE= yes
USE_GNOME= gnometarget pkgconfig
USE_EFL= edje
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} > 900007
+BROKEN= fails to build with new utmpx
+.endif
+
.if !defined(WITHOUT_NLS)
USE_GETTEXT= yes
PLIST_SUB+= NLS=""
@@ -33,4 +39,4 @@ CONFIGURE_ARGS= --disable-nls
PLIST_SUB+= NLS="@comment "
.endif
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>
diff --git a/x11/emu/Makefile b/x11/emu/Makefile
index 0a6e29a..ba6dc3f 100644
--- a/x11/emu/Makefile
+++ b/x11/emu/Makefile
@@ -24,6 +24,12 @@ USE_DISPLAY= yes
WRKSRC= ${WRKDIR}/emu
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} > 900007
+BROKEN= fails to build with new utmpx
+.endif
+
.if (!defined(DISPLAY) || ${DISPLAY} == "") && !defined(PACKAGE_BUILDING)
IGNORE= requires an active X session (and DISPLAY variable) to run xrdb. Please compile this while running X
.endif
@@ -33,4 +39,4 @@ MAN1= emu.1
pre-configure:
cd ${WRKSRC}/client ; ${LN} -s ../doc/emu.man .
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>
OpenPOWER on IntegriCloud