diff options
author | asami <asami@FreeBSD.org> | 1996-11-27 19:53:23 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-11-27 19:53:23 +0800 |
commit | 4a14169f36199dc2721490f5a679ed0c97b0b25d (patch) | |
tree | 4b3ff81a1eba1147f6a063a4a4e0d43c995e4d86 /comms/mgetty+sendfax | |
parent | cc02cb923ac68918363a3eaf04cfc1a23ffe2a42 (diff) | |
download | freebsd-ports-graphics-4a14169f36199dc2721490f5a679ed0c97b0b25d.tar.gz freebsd-ports-graphics-4a14169f36199dc2721490f5a679ed0c97b0b25d.tar.zst freebsd-ports-graphics-4a14169f36199dc2721490f5a679ed0c97b0b25d.zip |
Ask questions only if BATCH is not defined. Consequently, delete
IS_INTERACTIVE and NO_PACKAGE.
Diffstat (limited to 'comms/mgetty+sendfax')
-rw-r--r-- | comms/mgetty+sendfax/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/comms/mgetty+sendfax/Makefile b/comms/mgetty+sendfax/Makefile index 1de7c16a019..523007501bf 100644 --- a/comms/mgetty+sendfax/Makefile +++ b/comms/mgetty+sendfax/Makefile @@ -3,7 +3,7 @@ # Date created: 21 September 1994 # Whom: jmz # -# $Id: Makefile,v 1.14 1996/11/22 08:19:50 swallace Exp $ +# $Id: Makefile,v 1.15 1996/11/22 11:03:01 asami Exp $ # DISTNAME= mgetty-0.99 @@ -13,8 +13,6 @@ DISTFILES= mgetty099-Aug07.tar.gz MAINTAINER= jmz@FreeBSD.org -NO_PACKAGE= yes # too many questions -IS_INTERACTIVE= yes MAKE_FLAGS= prefix=${PREFIX} -f MAN1= coverpg.1 fax.1 faxq.1 faxrm.1 faxrunq.1 faxspool.1 \ g3cat.1 g3topbm.1 pbmtog3.1 @@ -25,7 +23,9 @@ MAN8= sendfax.8 mgetty.8 callback.8 pre-install: @(cd ${WRKSRC}/doc; ${GMAKE} manpages) +.if !defined(BATCH) post-install: @(cd ${PKGDIR}; export PKG_PREFIX=${PREFIX}; /usr/bin/perl INSTALL _ POST-INSTALL) +.endif .include <bsd.port.mk> |