pkgsrc/www/p5-Apache-Gallery/Makefile
grant 908e765695 since perl is now built with threads on most platforms, the perl archlib
module directory has changed (eg. "darwin-2level" vs.
"darwin-thread-multi-2level").

binary packages of perl modules need to be distinguishable between
being built against threaded perl and unthreaded perl, so bump the
PKGREVISION of all perl module packages and introduce
BUILDLINK_RECOMMENDED for perl as perl>=5.8.5nb5 so the correct
dependencies are registered and the binary packages are distinct.

addresses PR pkg/28619 from H. Todd Fujinaka.
2004-12-20 11:30:55 +00:00

105 lines
3 KiB
Makefile

# $NetBSD: Makefile,v 1.21 2004/12/20 11:31:12 grant Exp $
#
DISTNAME= Apache-Gallery-0.7
PKGNAME= p5-${DISTNAME}
PKGREVISION= 9
SVR4_PKGNAME= p5aga
CATEGORIES= www graphics perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Apache/}
MAINTAINER= kim@tac.nyc.ny.us
HOMEPAGE= http://apachegallery.dk/
COMMENT= Perl5/Apache module for handling image directories
DEPENDS+= p5-CGI>=2.93:../../www/p5-CGI
DEPENDS+= p5-URI>=1.23:../../www/p5-URI
DEPENDS+= p5-Image-Imlib2-[0-9]*:../../graphics/p5-Image-Imlib2
DEPENDS+= p5-Image-Info>=1.15:../../graphics/p5-Image-Info
DEPENDS+= p5-Image-Size-[0-9]*:../../graphics/p5-Image-Size
DEPENDS+= p5-CGI-FastTemplate-[0-9]*:../../www/p5-CGI-FastTemplate
DEPENDS+= p5-libapreq{,2}-[0-9]*:../../www/${LIBAPREQ}
USE_BUILDLINK3= YES
USE_PKGINSTALL= YES
USE_X11= YES
USE_PERL5= run
PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/Apache/Gallery/.packlist
.include "../../mk/bsd.prefs.mk"
PKG_SYSCONFSUBDIR?= httpd
MESSAGE_SUBST+= PKG_SYSCONFDIR=${PKG_SYSCONFDIR}
.if defined(PKG_APACHE_DEFAULT) && (${PKG_APACHE_DEFAULT} == "apache2")
LIBAPREQ= p5-libapreq2
.else
LIBAPREQ= p5-libapreq
.endif
AG= ag
AG_DOCDIR= ${PREFIX}/share/doc/${AG}
AG_EGDIR= ${PREFIX}/share/examples/${AG}
AG_SHAREDIR= ${PREFIX}/share/${AG}
FILES_SUBST+= AG=${AG}
FILES_SUBST+= AG_SHAREDIR=${AG_SHAREDIR}
FILES_SUBST+= LDFLAGS=${LDFLAGS:Q}
MESSAGE_SUBST+= AG=${AG}
MESSAGE_SUBST+= AG_DOCDIR=${AG_DOCDIR}
MESSAGE_SUBST+= AG_SHAREDIR=${AG_SHAREDIR}
PLIST_SUBST+= AG=${AG}
PLIST_SUBST+= AG_DOCDIR=${AG_DOCDIR:S,${PREFIX}/,,}
PLIST_SUBST+= AG_EGDIR=${AG_EGDIR:S,${PREFIX}/,,}
PLIST_SUBST+= AG_SHAREDIR=${AG_SHAREDIR:S,${PREFIX}/,,}
CONF_FILES= ${AG_EGDIR}/${AG}.conf ${PKG_SYSCONFDIR}/${AG}.conf
post-patch:
@cd ${WRKSRC}/lib/Apache && \
${CP} -p Gallery.pm Gallery.pm.orig && \
${SED} ${FILES_SUBST_SED} Gallery.pm.orig > Gallery.pm && \
${RM} -f Gallery.pm.orig
@${MV} -f ${WRKSRC}/templates/default/gallery.css \
${WRKSRC}/htdocs/gallery-default.css
@${MV} -f ${WRKSRC}/templates/new/gallery.css \
${WRKSRC}/htdocs/gallery-new.css
post-build:
@for j in default new; \
do \
cd ${WRKSRC}/templates/$$j && \
for i in *.tpl; \
do \
${CP} -p $$i $$i.orig && \
${SED} -e "s,/icons/,/${AG}/," \
-e "s,/gallery.css,/${AG}/gallery-$$j.css," \
$$i.orig > $$i; \
${RM} -f $$i.orig; \
done; \
done
@${SED} ${FILES_SUBST_SED} ${FILESDIR}/ag.conf > ${WRKDIR}/${AG}.conf
post-install:
${INSTALL_DATA_DIR} ${AG_SHAREDIR}
@set +x; \
for i in htdocs templates; \
do \
${INSTALL_DATA_DIR} ${AG_SHAREDIR}/$$i; \
cd ${WRKSRC}/$$i && ${PAX} -rw . ${AG_SHAREDIR}/$$i; \
done; \
${INSTALL_DATA_DIR} ${AG_DOCDIR}; \
for i in Changes INSTALL LICENSE README UPGRADE; \
do \
${INSTALL_DATA} ${WRKSRC}/$$i ${AG_DOCDIR}; \
done
${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${AG_SHAREDIR}; \
${INSTALL_DATA_DIR} ${AG_EGDIR}
${INSTALL_DATA} ${WRKDIR}/${AG}.conf ${AG_EGDIR}
.include "../../graphics/imlib2/buildlink3.mk"
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"