diff options
author | kris <kris@FreeBSD.org> | 2005-04-10 21:37:43 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2005-04-10 21:37:43 +0000 |
commit | c3ed64512c76740a8ef9ca2eb235e6e4c69e98a4 (patch) | |
tree | 6bb0ea384b2568ac07c187bf25f10307a2d0a78f | |
parent | a3bed607c31d78ade1e65c96a090a744d6a5afdd (diff) | |
download | FreeBSD-ports-c3ed64512c76740a8ef9ca2eb235e6e4c69e98a4.zip FreeBSD-ports-c3ed64512c76740a8ef9ca2eb235e6e4c69e98a4.tar.gz |
BROKEN on 4.x: Does not compile
-rw-r--r-- | astro/celestia/Makefile | 4 | ||||
-rw-r--r-- | dns/drill/Makefile | 8 | ||||
-rw-r--r-- | sysutils/cfengine2/Makefile | 8 | ||||
-rw-r--r-- | sysutils/dd_rescue/Makefile | 8 |
4 files changed, 25 insertions, 3 deletions
diff --git a/astro/celestia/Makefile b/astro/celestia/Makefile index 620d750..4fa9963 100644 --- a/astro/celestia/Makefile +++ b/astro/celestia/Makefile @@ -41,6 +41,10 @@ OPTIONS= LUA "Lua support" off \ .include <bsd.port.pre.mk> +.if ${OSVERSION} < 500000 +BROKEN= "Does not compile on FreeBSD 4.x" +.endif + .if defined(WITH_LUA) LIB_DEPENDS+= lua.5:${PORTSDIR}/lang/lua CONFIGURE_ARGS+= --with-lua diff --git a/dns/drill/Makefile b/dns/drill/Makefile index 5b29e9e..0a87ba7 100644 --- a/dns/drill/Makefile +++ b/dns/drill/Makefile @@ -27,4 +27,10 @@ CONFIGURE_ARGS= --prefix=${PREFIX} PLIST_FILES= bin/drill -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= "Does not compile on FreeBSD 4.x" +.endif + +.include <bsd.port.post.mk> diff --git a/sysutils/cfengine2/Makefile b/sysutils/cfengine2/Makefile index eb635fe..bad9c0f 100644 --- a/sysutils/cfengine2/Makefile +++ b/sysutils/cfengine2/Makefile @@ -39,4 +39,10 @@ LDFLAGS+= -L${LOCALBASE}/lib/db41 -ldb41 .error WITH_BDB_VER must be 41 or 42 .endif -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= "Does not compile on FreeBSD 4.x" +.endif + +.include <bsd.port.post.mk> diff --git a/sysutils/dd_rescue/Makefile b/sysutils/dd_rescue/Makefile index 293e6e9..2b4e509 100644 --- a/sysutils/dd_rescue/Makefile +++ b/sysutils/dd_rescue/Makefile @@ -16,6 +16,12 @@ COMMENT= A dd tool suitable for rescuing data from a medium with errors WRKSRC= ${WRKDIR}/${PORTNAME} ALL_TARGET= default +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= "Does not compile on FreeBSD 4.x" +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/dd_rescue ${PREFIX}/bin .if !defined(NOPORTDOCS) @@ -23,4 +29,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/README.dd_rescue ${DOCSDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |