diff options
author | asami <asami@FreeBSD.org> | 1997-03-10 18:49:00 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1997-03-10 18:49:00 +0800 |
commit | fe570ecb3a1881124882d2444e30cb8629917177 (patch) | |
tree | ab38bf55e2f9364c45cc30d49e2bd5dca3d0c31c /net | |
parent | f81add8b912381471f9ae462faffae37d809475c (diff) | |
download | freebsd-ports-gnome-fe570ecb3a1881124882d2444e30cb8629917177.tar.gz freebsd-ports-gnome-fe570ecb3a1881124882d2444e30cb8629917177.tar.zst freebsd-ports-gnome-fe570ecb3a1881124882d2444e30cb8629917177.zip |
Fix this so it will package. Also, instead of making "PLIST" from
"PLIST.in", make "PLIST.tmp" from "PLIST". The difference is that we
can now do a grep on PLIST on the entire ports tree to find what the
scotty port installed.
Diffstat (limited to 'net')
-rw-r--r-- | net/scotty/Makefile | 11 | ||||
-rw-r--r-- | net/scotty3/Makefile | 11 |
2 files changed, 12 insertions, 10 deletions
diff --git a/net/scotty/Makefile b/net/scotty/Makefile index 29d91ef9bdf9..53cd44a5c804 100644 --- a/net/scotty/Makefile +++ b/net/scotty/Makefile @@ -3,7 +3,7 @@ # Date created: 18 Februar 1995 # Whom: Gennady Sorokopud <gena@netvision.net.il> # -# $Id: Makefile,v 1.15 1996/12/03 03:27:44 asami Exp $ +# $Id: Makefile,v 1.16 1997/03/04 22:34:21 phk Exp $ # DISTNAME= scotty-2.1.5 @@ -24,19 +24,20 @@ MAN8= ntping.8 straps.8 MANN= Tnm.n cmip.n dns.n gdmo.n http.n icmp.n ined.n job.n \ mib.n msqltcl.n netdb.n ntp.n rpc.n snmp.n sunrpc.n \ syslog.n udp.n +PLIST= ${PKGDIR}/PLIST.tmp pre-install: @cd ${WRKSRC};make sinstall @${CP} ${WRKSRC}/../tnm/ntping/ntping.8 ${WRKSRC}/../doc - @sed "s,@FREEBSD_VERSION@,$$(uname -m)-$$(uname)-$$(uname -r)," pkg/PLIST.in >/tmp/PLIST + @sed "s,@FREEBSD_VERSION@,$$(uname -m)-$$(uname)-$$(uname -r)," pkg/PLIST >/tmp/PLIST .if defined(NOMANCOMPRESS) - @sed "s,@GZIP@,," /tmp/PLIST >pkg/PLIST + @sed "s,@GZIP@,," /tmp/PLIST >pkg/PLIST.tmp .else - @sed "s,@GZIP@,.gz," /tmp/PLIST >pkg/PLIST + @sed "s,@GZIP@,.gz," /tmp/PLIST >pkg/PLIST.tmp .endif @${RM} /tmp/PLIST pre-clean: - @${RM} -f pkg/PLIST + @${RM} -f pkg/PLIST.tmp .include <bsd.port.mk> diff --git a/net/scotty3/Makefile b/net/scotty3/Makefile index 29d91ef9bdf9..53cd44a5c804 100644 --- a/net/scotty3/Makefile +++ b/net/scotty3/Makefile @@ -3,7 +3,7 @@ # Date created: 18 Februar 1995 # Whom: Gennady Sorokopud <gena@netvision.net.il> # -# $Id: Makefile,v 1.15 1996/12/03 03:27:44 asami Exp $ +# $Id: Makefile,v 1.16 1997/03/04 22:34:21 phk Exp $ # DISTNAME= scotty-2.1.5 @@ -24,19 +24,20 @@ MAN8= ntping.8 straps.8 MANN= Tnm.n cmip.n dns.n gdmo.n http.n icmp.n ined.n job.n \ mib.n msqltcl.n netdb.n ntp.n rpc.n snmp.n sunrpc.n \ syslog.n udp.n +PLIST= ${PKGDIR}/PLIST.tmp pre-install: @cd ${WRKSRC};make sinstall @${CP} ${WRKSRC}/../tnm/ntping/ntping.8 ${WRKSRC}/../doc - @sed "s,@FREEBSD_VERSION@,$$(uname -m)-$$(uname)-$$(uname -r)," pkg/PLIST.in >/tmp/PLIST + @sed "s,@FREEBSD_VERSION@,$$(uname -m)-$$(uname)-$$(uname -r)," pkg/PLIST >/tmp/PLIST .if defined(NOMANCOMPRESS) - @sed "s,@GZIP@,," /tmp/PLIST >pkg/PLIST + @sed "s,@GZIP@,," /tmp/PLIST >pkg/PLIST.tmp .else - @sed "s,@GZIP@,.gz," /tmp/PLIST >pkg/PLIST + @sed "s,@GZIP@,.gz," /tmp/PLIST >pkg/PLIST.tmp .endif @${RM} /tmp/PLIST pre-clean: - @${RM} -f pkg/PLIST + @${RM} -f pkg/PLIST.tmp .include <bsd.port.mk> |