diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 1999-06-23 06:26:55 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 1999-06-23 06:26:55 +0000 |
commit | c07e8db0f63e93f87d6a7a59de8353ba723a7b7a (patch) | |
tree | b4b7487e5900ac728453512f09049a634724caf1 /security/fwtk | |
parent | ab767de7bbf29d2cb72302f73e41b6fd9c5d8e27 (diff) | |
download | ports-c07e8db0f63e93f87d6a7a59de8353ba723a7b7a.tar.gz ports-c07e8db0f63e93f87d6a7a59de8353ba723a7b7a.zip |
Notes
Diffstat (limited to 'security/fwtk')
-rw-r--r-- | security/fwtk/Makefile | 11 | ||||
-rw-r--r-- | security/fwtk/files/patch-az | 15 |
2 files changed, 23 insertions, 3 deletions
diff --git a/security/fwtk/Makefile b/security/fwtk/Makefile index 783d256e6103..0b7833ef91d7 100644 --- a/security/fwtk/Makefile +++ b/security/fwtk/Makefile @@ -4,7 +4,7 @@ # Date created: 15th June 1996 # Whom: gpalmer # -# $Id: Makefile,v 1.11 1998/04/18 08:57:16 obrien Exp $ +# $Id: Makefile,v 1.12 1998/12/31 22:15:37 obrien Exp $ # DISTNAME= fwtk2.1 @@ -24,12 +24,17 @@ CONFIGURE_SCRIPT= fixmake MAN3= auth.3 MAN5= netperm-table.5 MAN8= authmgr.8 authsrv.8 ftp-gw.8 http-gw.8 login-sh.8 netacl.8 \ - plug-gw.8 rlogin-gw.8 smap.8 smapd.8 tn-gw.8 x-gw.8 + plug-gw.8 rlogin-gw.8 smap.8 smapd.8 tn-gw.8 DOCS= sample-report.txt manpages.ps admin_guide.ps user_guide.ps \ overview.ps presentation.ps SBIN_BINS= authdump authload authmgr LIBEXEC_BINS= authsrv ftp-gw http-gw netacl plug-gw rlogin-gw smap smapd \ - tn-gw x-gw + tn-gw + +.if !defined(NO_X11) +LIBEXEC_BINS+= x-gw +MAN8+= x-gw.8 +.endif .include <bsd.port.pre.mk> diff --git a/security/fwtk/files/patch-az b/security/fwtk/files/patch-az new file mode 100644 index 000000000000..300906fb48ac --- /dev/null +++ b/security/fwtk/files/patch-az @@ -0,0 +1,15 @@ +--- Makefile.orig Wed Jun 2 05:12:56 1999 ++++ Makefile Wed Jun 2 05:18:17 1999 +@@ -22,7 +22,11 @@ + + + # directories to build executables in +-DIRS= smap smapd netacl plug-gw ftp-gw tn-gw rlogin-gw http-gw x-gw ++DIRS= smap smapd netacl plug-gw ftp-gw tn-gw rlogin-gw http-gw ++ ++.if !defined(NO_X11) ++DIRS+= x-gw ++.endif + + + all: |