diff options
author | asami <asami@FreeBSD.org> | 1996-11-13 12:41:39 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-11-13 12:41:39 +0000 |
commit | 042a5e832eac1dfef4595193d3fffd960ef53c1b (patch) | |
tree | 7ae602bbca92eda42ce423e98ed1c217b42a7352 /comms | |
parent | 3ed0aba637059650fffd2c7f54457a8e03245198 (diff) | |
download | FreeBSD-ports-042a5e832eac1dfef4595193d3fffd960ef53c1b.zip FreeBSD-ports-042a5e832eac1dfef4595193d3fffd960ef53c1b.tar.gz |
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 'comms')
-rw-r--r-- | comms/minicom/Makefile | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/comms/minicom/Makefile b/comms/minicom/Makefile index 1df1afa..15a76a5 100644 --- a/comms/minicom/Makefile +++ b/comms/minicom/Makefile @@ -3,7 +3,7 @@ # Date created: Fri Dec 01, 1995 # Whom: obrien@cs.ucdavis.edu # -# $Id: Makefile,v 1.2 1996/07/10 10:47:08 asami Exp $ +# $Id: Makefile,v 1.3 1996/11/03 06:54:45 obrien Exp $ # DISTNAME= minicom-1.75 @@ -18,6 +18,7 @@ RUN_DEPENDS= rz:${PORTSDIR}/comms/rzsz \ kermit:${PORTSDIR}/comms/kermit WRKSRC= ${WRKDIR}/${PKGNAME}/src +MAN1= minicom.1 runscript.1 ascii-xfr.1 .if !defined(BATCH) pre-install: @@ -25,10 +26,4 @@ pre-install: /bin/sh ${SCRIPTDIR}/create-dev-link .endif -post-install: - ${COMPRESS_MAN} \ - ${PREFIX}/man/minicom.1 \ - ${PREFIX}/man/runscript.1 \ - ${PREFIX}/man/ascii-xfr.1 - .include <bsd.port.mk> |