689038080a
- huge cleanup of README, use PKG_DBDIR pkg_add -B to hint people how to properly install A::G and its deps in apache's chroot, instead of manually copying the deps/modules. - set EPOCH=0, since 1.0RC3 wasn't a proper version - provide an apache-gallery.conf @sample in conf/modules.sample, as other www ports do, instead of a VHost to copy/paste - add UNMESSAGE telling how to completely disable/remove A::G ok ajacoutot@
54 lines
1.4 KiB
Makefile
54 lines
1.4 KiB
Makefile
# $OpenBSD: Makefile,v 1.15 2012/03/10 10:55:27 landry Exp $
|
|
|
|
|
|
COMMENT= mod_perl Apache gallery handler
|
|
|
|
MODULES= cpan
|
|
DISTNAME= Apache-Gallery-1.0.2
|
|
EPOCH = 0
|
|
CATEGORIES= www
|
|
USE_GROFF = Yes
|
|
HOMEPAGE= http://www.apachegallery.dk/
|
|
MASTER_SITES = ${HOMEPAGE}/download/
|
|
|
|
# Artistic
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
RUN_DEPENDS= www/p5-URI \
|
|
graphics/p5-Image-Info \
|
|
graphics/p5-Image-Size>=3.1.1 \
|
|
textproc/p5-Text-Template \
|
|
graphics/p5-Image-Imlib2 \
|
|
www/mod_perl \
|
|
www/p5-libapreq>=1.0
|
|
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
REGRESS_DEPENDS= devel/p5-Test-Pod \
|
|
devel/p5-Test-MockObject
|
|
|
|
TEMPLATESDIR= ${PREFIX}/share/Apache-Gallery/templates
|
|
ICONSDIR= ${PREFIX}/share/Apache-Gallery/icons
|
|
DOCSDIR= ${PREFIX}/share/doc/Apache-Gallery
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${TEMPLATESDIR}
|
|
.for i in new default
|
|
${INSTALL_DATA_DIR} ${TEMPLATESDIR}/${i}
|
|
${INSTALL_DATA} ${WRKSRC}/templates/${i}/*.tpl ${TEMPLATESDIR}/${i}
|
|
${INSTALL_DATA} ${WRKSRC}/templates/${i}/gallery.css \
|
|
${TEMPLATESDIR}/${i}
|
|
.endfor
|
|
${INSTALL_DATA_DIR} ${ICONSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/htdocs/*.png ${ICONSDIR}
|
|
${INSTALL_DATA_DIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/{README,INSTALL} ${DOCSDIR}
|
|
|
|
${SUBST_CMD} -c ${FILESDIR}/apache-gallery.conf \
|
|
${DOCSDIR}/apache-gallery.conf.dist
|
|
chown ${SHAREOWN}:${SHAREGRP} ${DOCSDIR}/apache-gallery.conf.dist
|
|
|
|
.include <bsd.port.mk>
|