diff options
author | Michael Haro <mharo@FreeBSD.org> | 1999-08-23 04:23:59 +0000 |
---|---|---|
committer | Michael Haro <mharo@FreeBSD.org> | 1999-08-23 04:23:59 +0000 |
commit | 535add65ac98d0ca871df3e8438ff56ba9129bcc (patch) | |
tree | 760c5b47c254af152605b0ddb356af68f100067f /net | |
parent | cf82726b69e5f993c5b9268a80d7dfc84ac09b31 (diff) | |
download | ports-535add65ac98d0ca871df3e8438ff56ba9129bcc.tar.gz ports-535add65ac98d0ca871df3e8438ff56ba9129bcc.zip |
Notes
Diffstat (limited to 'net')
-rw-r--r-- | net/SSLtelnet/Makefile | 4 | ||||
-rw-r--r-- | net/dgd-lpmud/Makefile | 4 | ||||
-rw-r--r-- | net/dgd-net/Makefile | 4 | ||||
-rw-r--r-- | net/dgd/Makefile | 4 | ||||
-rw-r--r-- | net/ztelnet/Makefile | 4 |
5 files changed, 10 insertions, 10 deletions
diff --git a/net/SSLtelnet/Makefile b/net/SSLtelnet/Makefile index 1f4b0a5b5dbb..647e8b87384f 100644 --- a/net/SSLtelnet/Makefile +++ b/net/SSLtelnet/Makefile @@ -3,7 +3,7 @@ # Date created: Mar 29, 1998 # Whom: issei@jp.FreeBSD.ORG # -# $Id: Makefile,v 1.7 1999/03/26 08:44:57 dirk Exp $ +# $Id: Makefile,v 1.8 1999/08/05 08:00:18 dirk Exp $ DISTNAME= SSLtelnet-0.13 CATEGORIES= net security @@ -17,7 +17,7 @@ pre-fetch: @echo You must set variable USA_RESIDENT to YES, if you are USA resident @echo or to NO, if you aren\'t USA resident to build this package. @echo You must also have installed RSAREF if you are USA resident. - @false + @${FALSE} .elif defined(USA_RESIDENT) .if ${USA_RESIDENT} == YES LIB_DEPENDS= rsaref.2:${PORTSDIR}/security/rsaref diff --git a/net/dgd-lpmud/Makefile b/net/dgd-lpmud/Makefile index d3bed8fd6311..1e4bbc9fe2fd 100644 --- a/net/dgd-lpmud/Makefile +++ b/net/dgd-lpmud/Makefile @@ -3,7 +3,7 @@ # Date created: 10 November 1994 # Whom: adam # -# $Id: Makefile,v 1.20 1997/01/16 11:46:58 adam Exp $ +# $Id: Makefile,v 1.21 1997/08/10 23:34:44 adam Exp $ # DISTNAME= dgd-lpmud @@ -31,7 +31,7 @@ do-build: @cd ${WRKDIR}/mud/bin; make do-install: - @tar -C ${WRKSRC} -cf - `grep '^[a-z]' ${PKGDIR}/PLIST` \ + @tar -C ${WRKSRC} -cf - `${GREP} '^[a-z]' ${PKGDIR}/PLIST` \ | tar -C ${PREFIX}/dgd -xpf - .include <bsd.port.mk> diff --git a/net/dgd-net/Makefile b/net/dgd-net/Makefile index fb5538bf91b4..f71102391aa5 100644 --- a/net/dgd-net/Makefile +++ b/net/dgd-net/Makefile @@ -3,7 +3,7 @@ # Date created: 17 June 1996 # Whom: adam # -# $Id: Makefile,v 1.30 1998/07/20 16:30:13 adam Exp $ +# $Id: Makefile,v 1.31 1999/08/22 18:59:21 mharo Exp $ # DISTNAME= dgd-net-1.1p6 @@ -53,7 +53,7 @@ post-build: do-install: @-mv ${PREFIX}/dgd/bin/driver.net ${PREFIX}/dgd/bin/driver.net.old - @tar -C ${WRKDIR} -cf - `grep '^dgd/' ${PKGDIR}/PLIST` \ + @tar -C ${WRKDIR} -cf - `${GREP} '^dgd/' ${PKGDIR}/PLIST` \ | tar -C ${PREFIX} -xpf - .include <bsd.port.mk> diff --git a/net/dgd/Makefile b/net/dgd/Makefile index 0f6f55dd65a0..6710da89becf 100644 --- a/net/dgd/Makefile +++ b/net/dgd/Makefile @@ -3,7 +3,7 @@ # Date created: 23 August 1994 # Whom: adam # -# $Id: Makefile,v 1.77 1998/07/20 15:01:52 adam Exp $ +# $Id: Makefile,v 1.78 1999/08/22 18:59:22 mharo Exp $ # DISTNAME= dgd-1.1p6 @@ -44,7 +44,7 @@ post-build: do-install: @-mv ${PREFIX}/dgd/bin/driver ${PREFIX}/dgd/bin/driver.old - @tar -C ${WRKDIR} -cf - `grep '^dgd/' ${PKGDIR}/PLIST` \ + @tar -C ${WRKDIR} -cf - `${GREP} '^dgd/' ${PKGDIR}/PLIST` \ | tar -C ${PREFIX} -xpf - .include <bsd.port.mk> diff --git a/net/ztelnet/Makefile b/net/ztelnet/Makefile index be0efe689036..1edb786a0dda 100644 --- a/net/ztelnet/Makefile +++ b/net/ztelnet/Makefile @@ -3,7 +3,7 @@ # Date created: 15 Mar 1998 # Whom: CHOI Junho <junker@jazz.snu.ac.kr> # -# $Id: Makefile,v 1.6 1998/06/14 16:00:03 steve Exp $ +# $Id: Makefile,v 1.7 1999/06/18 17:31:21 mharo Exp $ # # In this ports.. # - new compilation diff for FreeBSD(now we can upload!) @@ -30,7 +30,7 @@ post-patch: # we can ignore warnings @( cd ${WRKSRC}/ztelnet && \ ${PATCH} -s -p1 < ${WRKSRC}/ztelnet.patch || \ - true ) > /dev/null 2>&1 + ${TRUE} ) > /dev/null 2>&1 # but it is not @cd ${WRKSRC}/ztelnet && \ ${PATCH} -s -p1 < ${WRKSRC}/rz.patch && \ |