1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-09 06:51:44 +00:00
freebsd-ports/www/coppermine/Makefile
Brooks Davis 8924156e6b Add Coppermine Photo Gallery 1.2.1
Coppermine Photo Gallery is a picture gallery script. Users can upload
pictures with a web browser (thumbnails are created on the fly), rate
pictures, add comments and send e-cards. The admins can manage the
galleries and batch add pictures that have been uploaded on the server
by FTP.

Approved by:	krion (mentor)
2004-05-08 00:29:54 +00:00

84 lines
2.4 KiB
Makefile

# Ports collection makefile for: coppermine
# Date created: 05 April 2004
# Whom: Brooks Davis <brooks@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= coppermine
PORTVERSION= 1.2.1
CATEGORIES= www
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
DISTNAME= cpg${PORTVERSION}
MAINTAINER= brooks@FreeBSD.org
COMMENT= Coppermine is a web picture gallery script
USE_PHP= yes
WANT_PHP_MOD= yes
USE_ZIP= yes
PKGMESSAGE= ${WRKDIR}/pkg-message
NO_BUILD= yes
WRKSRC= ${WRKDIR}/${DISTNAME}_standalone
DOCFILES= CHANGELOG
EXCEPTFILES= ${DOCFILES} doc/COPYING
CPIOARGS= --quiet -pdum -R
PLIST_SUB= CPGDIR=${CPGDIR}
pre-fetch:
.if !defined(CPGDIR)
@${ECHO_MSG} ""
@${ECHO_MSG} "Define CPGDIR to override default of 'www/coppermine'."
@${ECHO_MSG} ""
@${ECHO_MSG} "You must either install PHP with GD support or ImageMagick."
@${ECHO_MSG} ""
.endif
pre-patch:
@${SED} -e 's|%%PREFIX%%|${PREFIX}|g' \
-e 's|%%CPGDIR%%|${CPGDIR}|g' \
${.CURDIR}/pkg-message > ${PKGMESSAGE}
CPGDIR?= www/coppermine
WWWOWN?= www
WWWGRP?= www
do-install:
@${MKDIR} -m 0755 ${PREFIX}/${CPGDIR}
@cd ${WRKSRC} && \
${FIND} . -name \*.orig ${EXCEPTFILES:S/^/-o -name /} -o -print | \
${CPIO} ${CPIOARGS} ${WWWOWN}:${WWWGRP} ${PREFIX}/${CPGDIR}
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
@cd ${WRKSRC} && ${INSTALL_DATA} ${DOCFILES} ${DOCSDIR}
.endif
post-install:
@${CAT} ${PKGMESSAGE}
########################################################################
# The following targets are for the port maintainer. Use are your own #
# risk, no user-serviceable parts inside. #
########################################################################
# Assuming the port is installed cleanly (i.e. it's unconfigured)
# build a pkg-plist file.
build-plist:
${FIND} ${DOCSDIR} -type f | \
${SED} -e 's|${DOCSDIR}|%%PORTDOCS%%%%DOCSDIR%%|' | \
${SORT} > pkg-plist
${FIND} ${PREFIX}/${CPGDIR}/* -type f | \
${SED} -e 's|${PREFIX}/${CPGDIR}|%%CPGDIR%%|' | \
${SORT} >> pkg-plist
${FIND} ${PREFIX}/${CPGDIR}/* -type d | \
${SED} -e 's|${PREFIX}/${CPGDIR}|@dirrm %%CPGDIR%%|' | \
${SORT} -r >> pkg-plist
${FIND} ${DOCSDIR} -type d | \
${SED} -e 's|${DOCSDIR}|%%PORTDOCS%%@dirrm %%DOCSDIR%%|' | \
${SORT} -r >> pkg-plist
${ECHO} "@unexec rmdir %D/%%CPGDIR%% 2>/dev/null || true" \
>> pkg-plist
.include <bsd.port.mk>