summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2004-09-19 02:59:05 +0000
committerKris Kennaway <kris@FreeBSD.org>2004-09-19 02:59:05 +0000
commit377caa388426fd9bdabe0696cc2c94739c635266 (patch)
tree207e0ac7ad48a3e2ade8f95d2cdeadec5362a18a
parentBROKEN on 5.x: Broken by changes to make(1) (diff)
BROKEN on 5.x: Does not compile
Approved by: portmgr (self)
Notes
Notes: svn path=/head/; revision=118288
-rw-r--r--audio/opmixer/Makefile8
-rw-r--r--devel/openthreads/Makefile8
-rw-r--r--editors/openoffice-1.0/Makefile4
-rw-r--r--editors/openoffice.org-1.0/Makefile4
-rw-r--r--finance/openhbci/Makefile8
-rw-r--r--multimedia/openquicktime/Makefile4
-rw-r--r--net/osrtspproxy/Makefile8
-rw-r--r--textproc/ocaml-yaxi/Makefile8
-rw-r--r--www/openvrml/Makefile4
9 files changed, 51 insertions, 5 deletions
diff --git a/audio/opmixer/Makefile b/audio/opmixer/Makefile
index f70c5d4325d6..710f482e0199 100644
--- a/audio/opmixer/Makefile
+++ b/audio/opmixer/Makefile
@@ -23,6 +23,12 @@ USE_X_PREFIX= yes
PLIST= ${WRKDIR}/pkg-plist
WRKSRC= ${WRKDIR}/opmixer
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} >= 502126
+BROKEN= "Does not compile on FreeBSD >= 5.x"
+.endif
+
pre-install:
${ECHO_CMD} "bin/opmixer" > ${PLIST}
${ECHO_CMD} "bin/opmixer-load" >> ${PLIST}
@@ -40,4 +46,4 @@ do-install:
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>
diff --git a/devel/openthreads/Makefile b/devel/openthreads/Makefile
index 96ecb71c4b63..f3bebe8568f8 100644
--- a/devel/openthreads/Makefile
+++ b/devel/openthreads/Makefile
@@ -26,8 +26,14 @@ MAKEFILE= GNUmakefile
# opt = optimized ($OPTF added); debug = debug ($DBGF added); opt is default
ALL_TARGET= opt
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} >= 502126
+BROKEN= "Does not compile on FreeBSD >= 5.x"
+.endif
+
post-patch:
@${REINPLACE_CMD} -e 's,%%CXXFLAGS%%,${CXXFLAGS},g' \
${WRKSRC}/Make/makedefs
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>
diff --git a/editors/openoffice-1.0/Makefile b/editors/openoffice-1.0/Makefile
index 521c373075e4..2d660032692f 100644
--- a/editors/openoffice-1.0/Makefile
+++ b/editors/openoffice-1.0/Makefile
@@ -42,6 +42,10 @@ USE_GNOME= orbit gtk12
.include <bsd.port.pre.mk>
+.if ${OSVERSION} >= 502126
+BROKEN= "Does not compile on FreeBSD >= 5.x"
+.endif
+
INSTALLATION_BASEDIR= OpenOffice.org1.0
BUILD_NR= 641
DIST_SUBDIR= openoffice1.0
diff --git a/editors/openoffice.org-1.0/Makefile b/editors/openoffice.org-1.0/Makefile
index 521c373075e4..2d660032692f 100644
--- a/editors/openoffice.org-1.0/Makefile
+++ b/editors/openoffice.org-1.0/Makefile
@@ -42,6 +42,10 @@ USE_GNOME= orbit gtk12
.include <bsd.port.pre.mk>
+.if ${OSVERSION} >= 502126
+BROKEN= "Does not compile on FreeBSD >= 5.x"
+.endif
+
INSTALLATION_BASEDIR= OpenOffice.org1.0
BUILD_NR= 641
DIST_SUBDIR= openoffice1.0
diff --git a/finance/openhbci/Makefile b/finance/openhbci/Makefile
index a70d26e9a444..3c1309675fd3 100644
--- a/finance/openhbci/Makefile
+++ b/finance/openhbci/Makefile
@@ -18,4 +18,10 @@ GNU_CONFIGURE= yes
CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL}
INSTALLS_SHLIB= yes
-.include <bsd.port.mk>
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} >= 502126
+BROKEN= "Does not compile on FreeBSD >= 5.x"
+.endif
+
+.include <bsd.port.post.mk>
diff --git a/multimedia/openquicktime/Makefile b/multimedia/openquicktime/Makefile
index 3178c907aac7..18ce2651250f 100644
--- a/multimedia/openquicktime/Makefile
+++ b/multimedia/openquicktime/Makefile
@@ -31,6 +31,10 @@ OPTIONS= DEBUG "Turn on debugging" on
.include <bsd.port.pre.mk>
+.if ${OSVERSION} >= 502126
+BROKEN= "Does not compile on FreeBSD >= 5.x"
+.endif
+
.ifndef(WITH_DEBUG)
CONFIGURE_ARGS+= --enable-debug=no
.endif
diff --git a/net/osrtspproxy/Makefile b/net/osrtspproxy/Makefile
index 91350d9604b1..497db0f159cb 100644
--- a/net/osrtspproxy/Makefile
+++ b/net/osrtspproxy/Makefile
@@ -17,8 +17,14 @@ COMMENT= The RTSP Proxy Kit is a reference implementation of an RTSP proxy
HAS_CONFIGURE= YES
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} >= 502126
+BROKEN= "Does not compile on FreeBSD >= 5.x"
+.endif
+
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/rtspproxy/rtspproxy ${PREFIX}/sbin
${INSTALL_SCRIPT} ${FILESDIR}/rtspproxy.sh ${PREFIX}/etc/rc.d/rtspproxy.sh.sample
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>
diff --git a/textproc/ocaml-yaxi/Makefile b/textproc/ocaml-yaxi/Makefile
index 4bde78cd100d..06f1c503115f 100644
--- a/textproc/ocaml-yaxi/Makefile
+++ b/textproc/ocaml-yaxi/Makefile
@@ -33,10 +33,16 @@ PLIST_FILES= bin/yaxsltproc
PKGDEINSTALL= ${PKGINSTALL}
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} >= 502126
+BROKEN= "Does not compile on FreeBSD >= 5.x"
+.endif
+
post-install:
@${FIND} ${PREFIX}/lib/ocaml/site-lib/${PORTNAME} -type f | \
${SED} "s,^${PREFIX}/,," >> ${TMPPLIST}
@${ECHO_CMD} "@dirrm lib/ocaml/site-lib/${PORTNAME}" >> ${TMPPLIST}
@${ECHO_CMD} "@unexec ocamlfind remove ${PORTNAME} 2>/dev/null || true" >> ${TMPPLIST}
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>
diff --git a/www/openvrml/Makefile b/www/openvrml/Makefile
index ca8f4365a743..06d2fa060108 100644
--- a/www/openvrml/Makefile
+++ b/www/openvrml/Makefile
@@ -40,6 +40,10 @@ PORTDOCS= # empty, not use * 'cause args too long (for find)
.include <bsd.port.pre.mk>
+.if ${OSVERSION} >= 502126
+BROKEN= "Does not compile on FreeBSD >= 5.x"
+.endif
+
.if ${ARCH} != "i386"
BROKEN= "Does not compile on !i386"
.endif