diff options
author | asami <asami@FreeBSD.org> | 1996-11-13 20:41:39 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-11-13 20:41:39 +0800 |
commit | 042a5e832eac1dfef4595193d3fffd960ef53c1b (patch) | |
tree | 7ae602bbca92eda42ce423e98ed1c217b42a7352 /net | |
parent | 3ed0aba637059650fffd2c7f54457a8e03245198 (diff) | |
download | freebsd-ports-gnome-042a5e832eac1dfef4595193d3fffd960ef53c1b.tar.gz freebsd-ports-gnome-042a5e832eac1dfef4595193d3fffd960ef53c1b.tar.zst freebsd-ports-gnome-042a5e832eac1dfef4595193d3fffd960ef53c1b.zip |
Fix Makefiles to work with new bsd.port.mk. Mostly just replacing
${COMPRESS_MAN} so they will at least work. I will come back later
and get rid of all the .if !defined(NOMANCOMPRESS) stuff.
Diffstat (limited to 'net')
-rw-r--r-- | net/rdist6/Makefile | 8 | ||||
-rw-r--r-- | net/telnetx/Makefile | 7 |
2 files changed, 6 insertions, 9 deletions
diff --git a/net/rdist6/Makefile b/net/rdist6/Makefile index 7c8d6d119dc2..f922d518dcca 100644 --- a/net/rdist6/Makefile +++ b/net/rdist6/Makefile @@ -3,7 +3,7 @@ # Date created: 19 August 1995 # Whom: peter # -# $Id: Makefile,v 1.7 1996/09/21 05:12:01 peter Exp $ +# $Id: Makefile,v 1.8 1996/09/21 05:29:51 peter Exp $ # DISTNAME= rdist-6.1.3 @@ -18,13 +18,11 @@ RDIST_NAME= rdist6 INSTALL_TARGET= install install.man MAKE_ENV+= BUILD_OPT="${CFLAGS}" BUILD_CLIENT=${RDIST_NAME} +MAN1= ${RDIST_NAME}.1 +MAN8= rdistd.8 post-install: strip ${PREFIX}/bin/${RDIST_NAME} strip ${PREFIX}/bin/rdistd -.if !defined(NOMANCOMPRESS) - gzip -9nf ${PREFIX}/man/man1/${RDIST_NAME}.1 - gzip -9nf ${PREFIX}/man/man8/rdistd.8 -.endif .include <bsd.port.mk> diff --git a/net/telnetx/Makefile b/net/telnetx/Makefile index c144d8f739dd..502b82272748 100644 --- a/net/telnetx/Makefile +++ b/net/telnetx/Makefile @@ -3,7 +3,7 @@ # Date created: 22 Sep 1996 # Whom: Masafumi NAKANE <max@FreeBSD.ORG> # -# $Id: Makefile,v 1.1.1.1 1996/09/25 20:36:31 max Exp $ +# $Id: Makefile,v 1.2 1996/11/05 04:14:42 max Exp $ # DISTNAME= telnetx+transit.src.940401 @@ -18,14 +18,13 @@ RUN_DEPENDS= rz:${PORTSDIR}/comms/rzsz RUN_DEPENDS+= bp:${PORTSDIR}/comms/bpl+ RUN_DEPENDS+= kermit:${PORTSDIR}/comms/kermit/ -WRKSRC= ${WRKDIR}/telnetx - +WRKSRC= ${WRKDIR}/telnetx +MAN1= telnetx.1 ALL_TARGET= bsdi do-install: ${INSTALL_PROGRAM} ${WRKSRC}/telnet/telnet ${PREFIX}/bin/telnetx ${INSTALL_PROGRAM} ${WRKSRC}/transit/transit ${PREFIX}/bin/transit ${INSTALL_MAN} ${WRKSRC}/telnet/telnet.1 ${PREFIX}/man/man1/telnetx.1 - ${COMPRESS_MAN} ${PREFIX}/man/man1/telnetx.1 .include <bsd.port.mk> |