diff options
author | Scott Mace <smace@FreeBSD.org> | 1998-06-04 16:12:39 +0000 |
---|---|---|
committer | Scott Mace <smace@FreeBSD.org> | 1998-06-04 16:12:39 +0000 |
commit | e215e79f1b3a011988d13e3c57547243a4176a9d (patch) | |
tree | ee3efea50b7e4d115f3063958213896b051ef6cd /news/trn/Makefile | |
parent | Change "man/ja_JP.EUC" to "man/ja". (diff) |
Allow trn to build non-interactively
Cleanup pre-configure script -- from elm port
Change lib search path from /usr/lib to /usr/lib/aout
make install will no longer leave trn.old bogon
Diffstat (limited to 'news/trn/Makefile')
-rw-r--r-- | news/trn/Makefile | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/news/trn/Makefile b/news/trn/Makefile index 8391a69cdf69..94fb551e925c 100644 --- a/news/trn/Makefile +++ b/news/trn/Makefile @@ -3,21 +3,33 @@ # Date created: 21 October 1994 # Whom: smace # -# $Id: Makefile,v 1.12 1996/12/08 01:45:12 max Exp $ +# $Id: Makefile,v 1.13 1997/04/27 00:24:32 asami Exp $ # DISTNAME= trn-3.6 CATEGORIES= news MASTER_SITES= ftp://ftp.uu.net/networking/news/readers/trn/ +MAINTAINER= smace@FreeBSD.ORG + RUN_DEPENDS= munpack:${PORTSDIR}/converters/mpack -NO_PACKAGE= "Too many questions" -IS_INTERACTIVE= yes +WRKSRC= $(WRKDIR)/trn-3.6 MAN1= trn.1 Pnews.1 Rnmail.1 newsetup.1 newsgroups.1 -pre-configure: - @echo "===> Running pre-configure target for ${DISTNAME}" - @sh ${SCRIPTDIR}/preconf ${PORTSDIR} ${.CURDIR} ${WRKSRC} +HAS_CONFIGURE= Yes +CONFIGURE_SCRIPT= Configure +CONFIGURE_ENV= PREFIX="$(PREFIX)" +CONFIGURE_ARGS= -S + +post-install: +.if !defined(BATCH) + @${ECHO} "" + @${ECHO} "############################################################################" + @${ECHO} "# Please edit lines 48 through 69 in ${PREFIX}/bin/Pnews #" + @${ECHO} "# to customize news posting for your site. #" + @${ECHO} "# Remember to set the NNTPSERVER environment variable to your news server. #" + @${ECHO} "############################################################################" +.endif .include <bsd.port.mk> |