diff options
author | edwin <edwin@FreeBSD.org> | 2002-11-04 22:57:37 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2002-11-04 22:57:37 +0000 |
commit | 64a5e0f37f47ca9274d3cc6633ed687cc7dc23ca (patch) | |
tree | 664d2ba6932861fa84d22c638a1035a3fcd6a962 /converters/recode | |
parent | 8d98f5042d9d3f5d1c76b52d1826c997af60472d (diff) | |
download | FreeBSD-ports-64a5e0f37f47ca9274d3cc6633ed687cc7dc23ca.zip FreeBSD-ports-64a5e0f37f47ca9274d3cc6633ed687cc7dc23ca.tar.gz |
Half of these ones missed yesterday while converting to USE_REINPLACE.
The other half needs perl to build.
Noticed on bento and others (full mailbox :-)
Diffstat (limited to 'converters/recode')
-rw-r--r-- | converters/recode/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/converters/recode/Makefile b/converters/recode/Makefile index 719d415..b23d1e9 100644 --- a/converters/recode/Makefile +++ b/converters/recode/Makefile @@ -17,6 +17,7 @@ MAINTAINER= demon@FreeBSD.org LIB_DEPENDS= intl.4:${PORTSDIR}/devel/gettext USE_LIBTOOL= yes +USE_REINPLACE= yes INSTALLS_SHLIB= yes CONFIGURE_ARGS= --without-included-gettext CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ @@ -35,7 +36,7 @@ remove-info-files: post-patch: patch-po-files patch-makeinfo patch-po-files: - @${PERL} -pi -e '\ + @${REINPLACE_CMD} -e '\ if (/Project-Id-Version/) { \ s/3\.[45](r|\.[0-9])?/3.6/; \ s/: (Free )?recode/: GNU recode/; \ @@ -43,7 +44,7 @@ patch-po-files: ' ${WRKSRC}/i18n/*.po patch-makeinfo: - @${PERL} -pi.fbsd -e 's|\@MAKEINFO\@|\@MAKEINFO\@ --no-split|g' \ + @${REINPLACE_CMD} -e 's|\@MAKEINFO\@|\@MAKEINFO\@ --no-split|g' \ ${WRKSRC}/doc/Makefile.in .include <bsd.port.mk> |