diff options
author | marcus <marcus@FreeBSD.org> | 2007-02-25 03:26:25 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2007-02-25 03:26:25 +0800 |
commit | 9903cc05e1768be9a203224c94c95638478188d8 (patch) | |
tree | f4334ca485128d1941f09ac12daa9777515ef2a4 /textproc/intltool/Makefile | |
parent | e4dd07591b26b6465ac7de91cd78cdc1dd693526 (diff) | |
download | freebsd-ports-gnome-9903cc05e1768be9a203224c94c95638478188d8.tar.gz freebsd-ports-gnome-9903cc05e1768be9a203224c94c95638478188d8.tar.zst freebsd-ports-gnome-9903cc05e1768be9a203224c94c95638478188d8.zip |
Update to 0.35.5, and retire support for Perl < 5.6.
Diffstat (limited to 'textproc/intltool/Makefile')
-rw-r--r-- | textproc/intltool/Makefile | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/textproc/intltool/Makefile b/textproc/intltool/Makefile index 76d0b5f64519..d44a73f3f3f0 100644 --- a/textproc/intltool/Makefile +++ b/textproc/intltool/Makefile @@ -6,7 +6,7 @@ # PORTNAME= intltool -PORTVERSION= 0.35.4 +PORTVERSION= 0.35.5 CATEGORIES= textproc gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME}/0.35 @@ -31,13 +31,14 @@ MAN8= intltool-extract.8 intltool-merge.8 intltool-prepare.8 \ CONFLICTS= xml-i18n-tools-[0-9]* +.include <bsd.port.pre.mk> + +.if ${PERL_LEVEL} < 500600 +IGNORE= requires Perl 5.6 or higher +.endif + post-patch: @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} \ -E -e '/^mkinstalldirs[[:space:]]*=/s^/\.\.^^g' -post-install: - ${MKDIR} ${PREFIX}/share/intltool/XML/Parser/Style - ${INSTALL_DATA} ${FILESDIR}/OrigTree.pm \ - ${PREFIX}/share/intltool/XML/Parser/Style - -.include <bsd.port.mk> +.include <bsd.port.post.mk> |