summaryrefslogtreecommitdiff
path: root/comms/mgetty+sendfax/Makefile
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1996-11-27 11:53:23 +0000
committerSatoshi Asami <asami@FreeBSD.org>1996-11-27 11:53:23 +0000
commit817588a8af2527f718ee5db1c0bf65e0f57dff8d (patch)
tree330de98659148c0936669debec317103e242f000 /comms/mgetty+sendfax/Makefile
parentMore freebsd tuning (diff)
Ask questions only if BATCH is not defined. Consequently, delete
IS_INTERACTIVE and NO_PACKAGE.
Notes
Notes: svn path=/head/; revision=4702
Diffstat (limited to 'comms/mgetty+sendfax/Makefile')
-rw-r--r--comms/mgetty+sendfax/Makefile6
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>