diff options
author | kris <kris@FreeBSD.org> | 2003-10-16 09:31:58 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2003-10-16 09:31:58 +0800 |
commit | da8461ff2ec762292299f15fc11acb1c8964991e (patch) | |
tree | f89e331d5f2e08ecfea6d61ae8acc9965049b439 /sysutils | |
parent | aacf2ddd5568a006dd10f1707dbfc411828817ce (diff) | |
download | freebsd-ports-gnome-da8461ff2ec762292299f15fc11acb1c8964991e.tar.gz freebsd-ports-gnome-da8461ff2ec762292299f15fc11acb1c8964991e.tar.zst freebsd-ports-gnome-da8461ff2ec762292299f15fc11acb1c8964991e.zip |
BROKEN on 5.x: does not compile
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/LPRng/Makefile | 8 | ||||
-rw-r--r-- | sysutils/prips/Makefile | 8 |
2 files changed, 14 insertions, 2 deletions
diff --git a/sysutils/LPRng/Makefile b/sysutils/LPRng/Makefile index c981c0dcbe70..9195d847c578 100644 --- a/sysutils/LPRng/Makefile +++ b/sysutils/LPRng/Makefile @@ -48,6 +48,12 @@ MAN1= lpf.1 psbanner.1 lp.1 cancel.1 lprng_certs.1 lprng_index_certs.1 \ MAN5= printcap.5 lpd.conf.5 lpd.perms.5 MAN8= lpc.8 checkpc.8 lpd.8 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 501000 +BROKEN= "Does not compile" +.endif + pre-everything:: @${ECHO_MSG} "If you want to replace the default printing system with LPRng, use:" @${ECHO_MSG} " make PREFIX=/usr SYSCONFDIR=/etc clean all install" @@ -71,4 +77,4 @@ post-install: .endif @${SED} -e "s!DOCSDIR!${DOCSDIR}/!" ${PKGMESSAGE} -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/sysutils/prips/Makefile b/sysutils/prips/Makefile index 28302febda65..ebdb7416c245 100644 --- a/sysutils/prips/Makefile +++ b/sysutils/prips/Makefile @@ -16,6 +16,12 @@ COMMENT= Prints IP subnet ranges by list or CIDR WRKSRC= ${WRKDIR}/prips +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 501000 +BROKEN= "Does not compile" +.endif + do-install: @${INSTALL_PROGRAM} ${WRKSRC}/prips ${PREFIX}/bin @@ -28,4 +34,4 @@ post-install: @${SED} 's#@dirrm share/doc/prips##' ${WRKDIR}/PLIST.tmp > ${TMPPLIST} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |