diff options
author | obrien <obrien@FreeBSD.org> | 1999-06-23 14:26:55 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1999-06-23 14:26:55 +0800 |
commit | 09f9baef1d588c93977b552dab671bed914b9989 (patch) | |
tree | 2dafa53e8ab205c9fb303dc8c460ec23b472aeca /security | |
parent | 0cad6540b166ffda5c3fafa71d31452d0b65934e (diff) | |
download | freebsd-ports-gnome-09f9baef1d588c93977b552dab671bed914b9989.tar.gz freebsd-ports-gnome-09f9baef1d588c93977b552dab671bed914b9989.tar.zst freebsd-ports-gnome-09f9baef1d588c93977b552dab671bed914b9989.zip |
Obey "NO_X11".
Submitted by: Phil Homewood <philh@mincom.com>
Diffstat (limited to 'security')
-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: |