diff options
author | arved <arved@FreeBSD.org> | 2007-03-23 19:09:54 +0800 |
---|---|---|
committer | arved <arved@FreeBSD.org> | 2007-03-23 19:09:54 +0800 |
commit | bc889e50a753cbedb6b6ee2993b9ab19ab5572ce (patch) | |
tree | d719cc5dc0ff8555771d223ff292b699685ba955 | |
parent | 637bcad69a84753c1aad316f9d35484674683d64 (diff) | |
download | freebsd-ports-gnome-bc889e50a753cbedb6b6ee2993b9ab19ab5572ce.tar.gz freebsd-ports-gnome-bc889e50a753cbedb6b6ee2993b9ab19ab5572ce.tar.zst freebsd-ports-gnome-bc889e50a753cbedb6b6ee2993b9ab19ab5572ce.zip |
Add a missing RUN_DEPENDS
portlint while here
Reported by: Claudius Herder <claudius_herder@ambtec.de>
-rw-r--r-- | www/llgal/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/www/llgal/Makefile b/www/llgal/Makefile index 90829862ef09..ccb2dbb25bf3 100644 --- a/www/llgal/Makefile +++ b/www/llgal/Makefile @@ -6,6 +6,7 @@ PORTNAME= llgal PORTVERSION= 0.13.10 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://download.gna.org/llgal/ @@ -19,7 +20,8 @@ BUILD_DEPENDS= ${SITE_PERL}/Image/Size.pm:${PORTSDIR}/graphics/p5-Image-Size \ RUN_DEPENDS= ${SITE_PERL}/Image/Size.pm:${PORTSDIR}/graphics/p5-Image-Size \ ${SITE_PERL}/URI.pm:${PORTSDIR}/net/p5-URI \ ${SITE_PERL}/${PERL_ARCH}/Locale/gettext.pm:${PORTSDIR}/devel/p5-Locale-gettext \ - ${SITE_PERL}/Image/ExifTool.pm:${PORTSDIR}/graphics/p5-Image-ExifTool + ${SITE_PERL}/Image/ExifTool.pm:${PORTSDIR}/graphics/p5-Image-ExifTool \ + convert:${PORTSDIR}/graphics/ImageMagick USE_BZIP2= yes USE_PERL5= yes @@ -29,7 +31,7 @@ USE_GETTEXT= yes .include <bsd.port.pre.mk> post-configure: - sed -e "s,@VERSION@,${PORTVERSION}," < ${WRKSRC}/lib/Makefile.PL.in > ${WRKSRC}/lib/Makefile.PL + ${SED} -e "s,@VERSION@,${PORTVERSION}," < ${WRKSRC}/lib/Makefile.PL.in > ${WRKSRC}/lib/Makefile.PL cd ${WRKSRC}/lib; ${PERL} Makefile.PL ${PERL5} -pi -e 's/ doc_(perl|site|\$$\(INSTALLDIRS\))_install//' ${WRKSRC}/lib/Makefile |