diff options
author | hoek <hoek@FreeBSD.org> | 1998-08-16 18:56:32 +0000 |
---|---|---|
committer | hoek <hoek@FreeBSD.org> | 1998-08-16 18:56:32 +0000 |
commit | 4949686b89b821389ce0f0a8efcf962c55506c18 (patch) | |
tree | 73e565758f4e3d4bb2cf5675e4122ae217ba0d44 /news/inn/Makefile | |
parent | 649b12cdff8f2851395b946162241bc696adead6 (diff) | |
download | FreeBSD-ports-4949686b89b821389ce0f0a8efcf962c55506c18.zip FreeBSD-ports-4949686b89b821389ce0f0a8efcf962c55506c18.tar.gz |
Work with perl5.
Submitted by: Don Croyle <croyle@gelemna.ft-wayne.in.us> (ports/7627)
Diffstat (limited to 'news/inn/Makefile')
-rw-r--r-- | news/inn/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/news/inn/Makefile b/news/inn/Makefile index 47e69ec..31f1991 100644 --- a/news/inn/Makefile +++ b/news/inn/Makefile @@ -3,14 +3,13 @@ # Date created: 20 Oct 1994 (1.4), 18 Dec 1996 (1.5.1) # Whom: torstenb # -# $Id: Makefile,v 1.26 1998/02/10 06:05:23 andreas Exp $ +# $Id: Makefile,v 1.27 1998/02/11 17:58:27 andreas Exp $ # DISTNAME= inn-1.7.2 CATEGORIES= news MASTER_SITES= ftp://ftp.isc.org/isc/inn/ - MAINTAINER= torstenb@FreeBSD.ORG # If you want PGP verification of control messages set PGPVERIFY to "DO" @@ -22,7 +21,9 @@ PGPVERIFY?= DONT USE_TCL?= DONT USE_PERL5?= DONT -SCRIPTS_ENV+= PGPVERIFY=${PGPVERIFY} USE_TCL=${USE_TCL} USE_PERL5=${USE_PERL5} +SCRIPTS_ENV= PGPVERIFY=${PGPVERIFY} USE_TCL=${USE_TCL} \ + USE_PERL5=${USE_PERL5} PERL_VERSION=${PERL_VERSION} + NO_PACKAGE= "Too many compile-time options" MAN1= convdate.1 getlist.1 grephistory.1 inews.1 innconfval.1 installit.1 \ @@ -69,7 +70,7 @@ post-install: ${MKDIR} ${PREFIX}/news/locks chown news.news ${PREFIX}/news/locks chmod 0755 ${PREFIX}/news/locks - sed <${FILESDIR}/innd.sh >${PREFIX}/etc/rc.d/innd.sh \ + ${SED} <${FILESDIR}/innd.sh >${PREFIX}/etc/rc.d/innd.sh \ s+!!PREFIX!!+${PREFIX}+g && chmod +x ${PREFIX}/etc/rc.d/innd.sh .include <bsd.port.mk> |