diff options
author | edwin <edwin@FreeBSD.org> | 2003-02-12 20:48:05 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-02-12 20:48:05 +0000 |
commit | 3677c0eb4c3afb3405663049be65ca0289773c0e (patch) | |
tree | 61b4c431dc7e1739431f11b5e1bac0cc0a6dc234 | |
parent | 16b181f5844fa5ad8e226f909f96e90a4938d958 (diff) | |
download | FreeBSD-ports-3677c0eb4c3afb3405663049be65ca0289773c0e.zip FreeBSD-ports-3677c0eb4c3afb3405663049be65ca0289773c0e.tar.gz |
www/p5-Apache-Gallery misuses TEMPLATES, breaks readme target
PR: ports/48192
Submitted by: Bruce A. Mah <bmah@packetdesign.com>
Reviewed by: erwin@lansing.dk
-rw-r--r-- | www/p5-Apache-Gallery/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/p5-Apache-Gallery/Makefile b/www/p5-Apache-Gallery/Makefile index e2864fb..bb94eb2 100644 --- a/www/p5-Apache-Gallery/Makefile +++ b/www/p5-Apache-Gallery/Makefile @@ -32,7 +32,7 @@ PERL_CONFIGURE= yes MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} MAN3= Apache::Gallery.3 -TEMPLATES= directory.tpl error.tpl index.tpl info.tpl layout.tpl \ +TEMPLATEFILES= directory.tpl error.tpl index.tpl info.tpl layout.tpl \ movie.tpl navpicture.tpl orig.tpl picture.tpl scale.tpl \ showpicture.tpl ICONS= folder.png video-avi.png video-asf.png video-mov.png \ @@ -44,7 +44,7 @@ post-configure: post-install: .if !defined(NOPORTDOCS) ${MKDIR} ${PREFIX}/share/Apache-Gallery/templates -.for f in ${TEMPLATES} +.for f in ${TEMPLATEFILES} ${INSTALL_DATA} ${WRKSRC}/templates/${f} \ ${PREFIX}/share/Apache-Gallery/templates/ .endfor |