diff options
author | gpalmer <gpalmer@FreeBSD.org> | 1996-09-19 17:58:47 +0800 |
---|---|---|
committer | gpalmer <gpalmer@FreeBSD.org> | 1996-09-19 17:58:47 +0800 |
commit | 0bcaf7a8d42fd6086fc3111bf542d4828ce05c92 (patch) | |
tree | a163bfe42fe0b5710d7926a727e2fb7d8cf21d9f /security | |
parent | 39742ca6ee8736f3b1da6ab271da1f1fa39cb1d6 (diff) | |
download | freebsd-ports-gnome-0bcaf7a8d42fd6086fc3111bf542d4828ce05c92.tar.gz freebsd-ports-gnome-0bcaf7a8d42fd6086fc3111bf542d4828ce05c92.tar.zst freebsd-ports-gnome-0bcaf7a8d42fd6086fc3111bf542d4828ce05c92.zip |
From the README:
TIS has recently instituted a registration policy for access to the freely
available toolkit. We have added this additional step to ensure that you
are aware that, while this software is freely available, it is licensed and
copyrighted software.
so add a dummy fetch: target to tell people to read their licence and
obtain the source manually, and what to do with it when you have it.
Diffstat (limited to 'security')
-rw-r--r-- | security/fwtk/Makefile | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/security/fwtk/Makefile b/security/fwtk/Makefile index aea00eac5888..3bf56f923057 100644 --- a/security/fwtk/Makefile +++ b/security/fwtk/Makefile @@ -3,13 +3,11 @@ # Date created: 15th June 1996 # Whom: gpalmer # -# $Id: Makefile,v 1.2 1996/06/16 15:30:04 markm Exp $ +# $Id: Makefile,v 1.3 1996/06/20 12:39:36 adam Exp $ # DISTNAME= fwtk-1.3 CATEGORIES+= security net -MASTER_SITES= ftp://ftp.tis.com/pub/firewalls/toolkit/ -DISTFILES= fwtk-v1.3.tar.Z fwtk-doc-only.tar.Z MAINTAINER= gpalmer@FreeBSD.ORG @@ -31,6 +29,15 @@ SBIN_BINS= authdump authload authmgr LIBEXEC_BINS= authsrv ftp-gw http-gw netacl plug-gw rlogin-gw smap smapd \ tn-gw x-gw +fetch: + @if [ ! -f ${DISTDIR}/fwtk-v1.3.tar.Z ]; then \ + 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 "fwtk-v1.3.tar.Z and fwtk-doc-only.tar.Z in the directory"; \ + echo "${DISTDIR} and run make again"; \ + exit 1;\ + fi + post-install: ( cd ${PREFIX}/libexec ; strip ${SBIN_BINS} ${LIBEXEC_BINS} ) ( cd ${PREFIX}/libexec ; mv ${SBIN_BINS} ../sbin ) |