diff options
author | obrien <obrien@FreeBSD.org> | 1996-12-01 09:23:27 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1996-12-01 09:23:27 +0800 |
commit | 8efcf00b2e5836ef32baf7637535242a296a8c38 (patch) | |
tree | 6d6249f3f223daa0ca98c880b13d349c86a0942c /net/scotty3 | |
parent | 238c02c9d9fee5aee4bb8357a9efa521b3d1364e (diff) | |
download | freebsd-ports-gnome-8efcf00b2e5836ef32baf7637535242a296a8c38.tar.gz freebsd-ports-gnome-8efcf00b2e5836ef32baf7637535242a296a8c38.tar.zst freebsd-ports-gnome-8efcf00b2e5836ef32baf7637535242a296a8c38.zip |
General Makefile cleanup
Add MAINATERS
mkdir -p ==> ${MKDIR}
cp ==> ${CP}
install ==> ${INSTALL}/${INSTALL_*}
etc...
Diffstat (limited to 'net/scotty3')
-rw-r--r-- | net/scotty3/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/net/scotty3/Makefile b/net/scotty3/Makefile index 3496328fd9d0..4a6c120eaa93 100644 --- a/net/scotty3/Makefile +++ b/net/scotty3/Makefile @@ -3,13 +3,15 @@ # Date created: 18 Februar 1995 # Whom: Gennady Sorokopud <gena@netvision.net.il> # -# $Id: Makefile,v 1.12 1996/10/10 14:54:36 erich Exp $ +# $Id: Makefile,v 1.13 1996/11/18 11:36:20 asami Exp $ # DISTNAME= scotty-2.1.3 CATEGORIES= net MASTER_SITES= ftp://ftp.ibr.cs.tu-bs.de/pub/local/tkined/ +MAINTAINER= gena@netvision.net.il + LIB_DEPENDS= tk41\\.1\\.:${PORTSDIR}/x11/tk41 GNU_CONFIGURE= yes @@ -25,16 +27,16 @@ MANN= Tnm.n cmip.n dns.n gdmo.n http.n icmp.n ined.n job.n \ pre-install: @cd ${WRKSRC};make sinstall - @cp ${WRKSRC}/../tnm/ntping/ntping.8 ${WRKSRC}/../doc + @${CP} ${WRKSRC}/../tnm/ntping/ntping.8 ${WRKSRC}/../doc @sed "s,@FREEBSD_VERSION@,$$(uname -m)-$$(uname)-$$(uname -r)," pkg/PLIST.in >/tmp/PLIST .if defined(NOMANCOMPRESS) @sed "s,@GZIP@,," /tmp/PLIST >pkg/PLIST .else @sed "s,@GZIP@,.gz," /tmp/PLIST >pkg/PLIST .endif - @rm /tmp/PLIST + @{RM} /tmp/PLIST pre-clean: - @rm -f pkg/PLIST + @{RM} -f pkg/PLIST .include <bsd.port.mk> |