diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1996-11-27 11:53:23 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1996-11-27 11:53:23 +0000 |
commit | 817588a8af2527f718ee5db1c0bf65e0f57dff8d (patch) | |
tree | 330de98659148c0936669debec317103e242f000 | |
parent | 9999a2fb1fb7c2966ac5db4c17a37c3749152667 (diff) | |
download | ports-817588a8af2527f718ee5db1c0bf65e0f57dff8d.tar.gz ports-817588a8af2527f718ee5db1c0bf65e0f57dff8d.zip |
Ask questions only if BATCH is not defined. Consequently, delete
IS_INTERACTIVE and NO_PACKAGE.
Notes
Notes:
svn path=/head/; revision=4702
-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 1de7c16a0196..523007501bf9 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> |