diff options
author | jlam <jlam@pkgsrc.org> | 2000-08-27 02:46:03 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2000-08-27 02:46:03 +0000 |
commit | 06f0a4c3c2051370b645889877b890871f653667 (patch) | |
tree | 1e6a3745241270729ad06096ce88aae00098df6e /textproc | |
parent | be7f4fdef3c6ab7b370c57cfd4aef4beb08ea983 (diff) | |
download | pkgsrc-06f0a4c3c2051370b645889877b890871f653667.tar.gz |
Use new PERL5 variable instead of ${LOCALBASE}/bin/perl.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/cdif/Makefile | 13 | ||||
-rw-r--r-- | textproc/texi2html/Makefile | 13 |
2 files changed, 13 insertions, 13 deletions
diff --git a/textproc/cdif/Makefile b/textproc/cdif/Makefile index e85bdbfe21c..2de2aac1254 100644 --- a/textproc/cdif/Makefile +++ b/textproc/cdif/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2000/03/16 14:08:38 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2000/08/27 02:46:07 jlam Exp $ # DISTNAME= cdif-1.15 @@ -8,19 +8,18 @@ EXTRACT_SUFX= # empty MAINTAINER= packages@netbsd.org -USE_PERL5= yes +USE_PERL5= # defined -NO_WRKSUBDIR= yes -NO_CONFIGURE= yes -NO_BUILD= yes +NO_WRKSUBDIR= # defined +NO_CONFIGURE= # defined +NO_BUILD= # defined do-extract: ${MKDIR} ${WRKSRC} ${CP} ${DISTDIR}/${DISTNAME} ${WRKSRC}/${DISTNAME}.dist -# assumes perl is in ${LOCALBASE}/bin/perl do-patch: - ${SED} -e '1s@/usr/local/bin/perl@${LOCALBASE}/bin/perl@' \ + ${SED} -e '1s@/usr/local/bin/perl@${PERL5}@' \ < ${WRKSRC}/${DISTNAME}.dist > ${WRKSRC}/${DISTNAME} do-install: diff --git a/textproc/texi2html/Makefile b/textproc/texi2html/Makefile index 852a27aa1bc..a986449491a 100644 --- a/textproc/texi2html/Makefile +++ b/textproc/texi2html/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 1999/04/01 14:07:56 agc Exp $ +# $NetBSD: Makefile,v 1.7 2000/08/27 02:46:07 jlam Exp $ # DISTNAME= texi2html @@ -10,17 +10,18 @@ EXTRACT_SUFX= .shar.Z MAINTAINER= tv@netbsd.org HOMEPAGE= http://wwwcn1.cern.ch/dci/texi2html/ -USE_PERL5= YES +USE_PERL5= # defined EXTRACT_CMD= ${GZCAT} ${DOWNLOADED_DISTFILE} | ${SH} -NO_WRKSUBDIR= yes -NO_CONFIGURE= yes +NO_WRKSUBDIR= # defined +NO_CONFIGURE= # defined do-build: cd ${WRKSRC}; \ - ${SED} -e s@/usr/local/bin/perl@${PREFIX}/bin/perl@ texi2html >texi2html.new; \ - ${SED} -e 1,/__END__/d texi2html >texi2html.1 + ${SED} -e s@/usr/local/bin/perl@${PERL5}@ \ + <texi2html >texi2html.new; \ + ${SED} -e 1,/__END__/d <texi2html >texi2html.1 do-install: ${INSTALL_SCRIPT} ${WRKSRC}/texi2html.new ${PREFIX}/bin/texi2html |