blob: d5056255f736ec27654c64bd263e3aafa6289589 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
# New ports collection makefile for: gallery3
# Date created: 16 June 2009
# Whom: Bo-Yi Wu <appleboy.tw@gmail.com>
#
# $FreeBSD$
#
PORTNAME= gallery3
PORTVERSION= 3.0
PORTREVISION= 5
CATEGORIES= www
MASTER_SITES= SF/gallery/${PORTNAME}/${PORTVERSION}-rc-2
DISTNAME= gallery-${PORTVERSION}-rc-2
MAINTAINER= appleboy.tw@gmail.com
COMMENT= Web based photo album organizer written in PHP
USE_ZIP= yes
USE_PHP= pcre session filter xml iconv spl simplexml json mysql
WANT_PHP_WEB= yes
WRKSRC= ${WRKDIR}/${PORTNAME}
NO_BUILD= yes
SUB_FILES= pkg-message
OPTIONS= NETPBM "Enable netpbm support" off \
IMAGEMAGICK "Enable imagemagick support" on \
GRAPHMAGICK "Enable graphicsmagick support" off \
JHEAD "Enable jhead support" on \
GD "Enable gd support" off \
DCRAW "Enable dcraw support" off \
FFMPEG "Enable ffmpeg support" off \
NLS "Enable National Language Support" on
.include <bsd.port.pre.mk>
.if defined(WITH_GD)
USE_PHP+= gd
RUN_DEPENDS+= pngtogd:${PORTSDIR}/graphics/gd
.endif
.if defined(WITH_NLS)
USE_PHP+= gettext
USE_GETTEXT= yes # Pet portlint
.endif
.if defined(WITH_NETPBM)
RUN_DEPENDS+= giftopnm:${PORTSDIR}/graphics/netpbm
.endif
.if defined(WITH_GRAPHMAGICK)
RUN_DEPENDS+= gm:${PORTSDIR}/graphics/GraphicsMagick
.endif
.if defined(WITH_IMAGEMAGICK)
RUN_DEPENDS+= convert:${PORTSDIR}/graphics/ImageMagick
.endif
.if defined(WITH_JHEAD)
RUN_DEPENDS+= jhead:${PORTSDIR}/graphics/jhead
.endif
.if defined(WITH_UNZIP)
RUN_DEPENDS+= unzip:${PORTSDIR}/archivers/unzip
.endif
.if defined(WITH_FFMPEG)
LIB_DEPENDS+= avcodec.1:${PORTSDIR}/multimedia/ffmpeg
.endif
.if defined(WITH_DCRAW)
RUN_DEPENDS+= dcraw:${PORTSDIR}/graphics/dcraw
.endif
.if defined(GALLERY3DIR)
# Continue to support legacy GALLERY3DIR variable
WWWDIR= ${GALLERY3DIR}
.endif
do-install:
@cd ${WRKSRC}/&&${COPYTREE_SHARE} . ${WWWDIR}/
@ ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}/
@${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}' >> ${TMPPLIST}
.if !defined(BATCH)
@ ${CAT} ${PKGMESSAGE}
.endif
.include <bsd.port.post.mk>
|