mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
37 lines
884 B
Makefile
37 lines
884 B
Makefile
# New ports collection makefile for: zenphoto
|
|
# Date created: 27 December 2007
|
|
# Whom: Philippe Audeoud <jadawin@tuxaco.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= zenphoto
|
|
PORTVERSION= 1.2.2
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.zenphoto.org/files/
|
|
|
|
MAINTAINER= jadawin@FreeBSD.org
|
|
COMMENT= A simpler web photo gallery
|
|
|
|
USE_PHP= mysql gd session mbstring
|
|
WANT_PHP_WEB= yes
|
|
|
|
NO_BUILD= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
PKGDEINSTALL= ${WRKDIR}/pkg-deinstall
|
|
PKGMESSAGE= ${WRKDIR}/pkg-message
|
|
SUB_FILES= pkg-message pkg-deinstall
|
|
SUB_LIST= PORTNAME=${PORTNAME} \
|
|
WWWDIR=${WWWDIR}
|
|
|
|
do-install:
|
|
${MKDIR} ${WWWDIR}
|
|
@(cd ${WRKSRC} && ${COPYTREE_SHARE} \* ${WWWDIR} \
|
|
"! -name README.html ! -name License.txt")
|
|
${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}
|
|
${CHMOD} 644 ${WWWDIR}/zp-core/images/*
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|