diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 1998-12-31 22:15:37 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 1998-12-31 22:15:37 +0000 |
commit | 8b4bc4938b36f83b0b44331dc1c78361bcb55401 (patch) | |
tree | 5e2d2698e1a8dbd478e19a6ce5f25d2a0aadbf1c | |
parent | 5210753b3833bb0b06dff7aca204f6739fe877fa (diff) | |
download | ports-8b4bc4938b36f83b0b44331dc1c78361bcb55401.tar.gz ports-8b4bc4938b36f83b0b44331dc1c78361bcb55401.zip |
Notes
-rw-r--r-- | security/fwtk/Makefile | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/security/fwtk/Makefile b/security/fwtk/Makefile index 39451831be79..783d256e6103 100644 --- a/security/fwtk/Makefile +++ b/security/fwtk/Makefile @@ -4,7 +4,7 @@ # Date created: 15th June 1996 # Whom: gpalmer # -# $Id: Makefile,v 1.10 1997/08/08 01:55:22 obrien Exp $ +# $Id: Makefile,v 1.11 1998/04/18 08:57:16 obrien Exp $ # DISTNAME= fwtk2.1 @@ -31,16 +31,12 @@ SBIN_BINS= authdump authload authmgr LIBEXEC_BINS= authsrv ftp-gw http-gw netacl plug-gw rlogin-gw smap smapd \ tn-gw x-gw -do-fetch: - @if [ ! -f ${DISTDIR}/fwtk2.1${EXTRACT_SUFX} ]; then \ - ${ECHO} ""; \ - ${ECHO} "Please read ftp://ftp.tis.com/pub/firewalls/toolkit/README"; \ - ${ECHO} "for details of how to obtain the FTWK source. Put the files"; \ - ${ECHO} "fwtk2.1${EXTRACT_SUFX} and fwtk-doc-only${EXTRACT_SUFX} in the directory"; \ - ${ECHO} "${DISTDIR} and run make again"; \ - ${ECHO} ""; \ - exit 1;\ - fi +.include <bsd.port.pre.mk> + +.if !exists(${DISTDIR}/fwtk2.1${EXTRACT_SUFX}) \ + && !exists(${DISTDIR}/fwtk-doc-only${EXTRACT_SUFX}) +IGNORE='Please read ftp://ftp.tis.com/pub/firewalls/toolkit/README for details of how to obtain the FTWK source. Put the files fwtk2.1${EXTRACT_SUFX} and fwtk-doc-only${EXTRACT_SUFX} into the directory ${DISTDIR} and run make again.' +.endif pre-configure: @${MV} ${WRKSRC}/Makefile.config ${WRKSRC}/Makefile.config.in @@ -64,4 +60,4 @@ post-install: ( cd ${WRKSRC}/doc ; ${INSTALL_MAN} ${DOCS} ${PREFIX}/share/doc/fwtk ) .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |