summaryrefslogtreecommitdiffstats
path: root/www/gallery2
diff options
context:
space:
mode:
authorlawrance <lawrance@FreeBSD.org>2006-02-08 16:03:05 +0000
committerlawrance <lawrance@FreeBSD.org>2006-02-08 16:03:05 +0000
commit14f7efdeac6c74d0a076c473437b047a4dc1f498 (patch)
tree6bf2a03cb1dd635eb49604a08aa656bcac9d7f34 /www/gallery2
parent3f7697884c01fa622c79361214644866841b5a22 (diff)
downloadFreeBSD-ports-14f7efdeac6c74d0a076c473437b047a4dc1f498.zip
FreeBSD-ports-14f7efdeac6c74d0a076c473437b047a4dc1f498.tar.gz
Fix pkg-plist.
Allow PostgreSQL to be used instead of MySQL (from Brian.Johnson at stellent.com). Add missing php-gd dependency when WITH_GD is specified. PR: ports/92825 Submitted by: Alex Varju <freebsd-ports@varju.ca> (maintainer)
Diffstat (limited to 'www/gallery2')
-rw-r--r--www/gallery2/Makefile40
-rw-r--r--www/gallery2/pkg-plist4
2 files changed, 27 insertions, 17 deletions
diff --git a/www/gallery2/Makefile b/www/gallery2/Makefile
index fc90679..eb49ec6 100644
--- a/www/gallery2/Makefile
+++ b/www/gallery2/Makefile
@@ -16,7 +16,7 @@ DIST_SUBDIR= gallery2
MAINTAINER= freebsd-ports@varju.ca
COMMENT= Gallery is a web based photo album written using PHP
-USE_PHP= pcre session mysql
+USE_PHP= pcre session
WANT_PHP_WEB= yes
WRKSRC= ${WRKDIR}/${DIST_SUBDIR}
@@ -29,29 +29,39 @@ GALLERY2DIR?= www/data/gallery2
WWWOWN?= www
WWWGRP?= www
-OPTIONS= NETPBM "Enable netpbm support" on \
- IMAGEMAGICK "Enable imagemagick support" on \
- JHEAD "Enable jhead support" on \
- UNZIP "Enable unzip support" on \
- GD "Enable gd support" off \
- DCRAW "Enable dcraw support" off \
- FFMPEG "Enable ffmpeg support" off
+# Note that USE_PHP must be set before bsd.port.pre.mk is included, so
+# OPTIONS can't be used right now without making portlint angry
+#OPTIONS= NETPBM "Enable netpbm support" on \
+# IMAGEMAGICK "Enable imagemagick support" on \
+# PGSQL "Use PostgreSQL instead of MySQL" off \
+# JHEAD "Enable jhead support" on \
+# UNZIP "Enable unzip support" on \
+# GD "Enable gd support" off \
+# DCRAW "Enable dcraw support" off \
+# FFMPEG "Enable ffmpeg support" off
+
+.if defined(WITH_PGSQL)
+USE_PHP+= pgsql
+.else
+USE_PHP+= mysql
+.endif
+.if defined(WITH_GD)
+USE_PHP+= gd
+RUN_DEPENDS+= pngtogd:${PORTSDIR}/graphics/gd
+.endif
.include <bsd.port.pre.mk>
-.if defined(WITH_NETPBM)
+.if !defined(WITHOUT_NETPBM)
RUN_DEPENDS+= giftopnm:${PORTSDIR}/graphics/netpbm
.endif
-.if defined(WITH_IMAGEMAGICK)
+.if !defined(WITHOUT_IMAGEMAGICK)
RUN_DEPENDS+= convert:${PORTSDIR}/graphics/ImageMagick
.endif
-.if defined(WITH_GD)
-RUN_DEPENDS+= pngtogd:${PORTSDIR}/graphics/gd
-.endif
-.if defined(WITH_JHEAD)
+.if !defined(WITHOUT_JHEAD)
RUN_DEPENDS+= jhead:${PORTSDIR}/graphics/jhead
.endif
-.if defined(WITH_UNZIP)
+.if !defined(WITHOUT_UNZIP)
RUN_DEPENDS+= unzip:${PORTSDIR}/archivers/unzip
.endif
.if defined(WITH_FFMPEG)
diff --git a/www/gallery2/pkg-plist b/www/gallery2/pkg-plist
index ee97b04..ccec1ab 100644
--- a/www/gallery2/pkg-plist
+++ b/www/gallery2/pkg-plist
@@ -5624,7 +5624,7 @@
@dirrm %%GALLERY2DIR%%/install/locale/bg_BG
@dirrm %%GALLERY2DIR%%/install/locale
@dirrm %%GALLERY2DIR%%/install/images
-@dirrmtry %%GALLERYDIR%%/install
+@dirrmtry %%GALLERY2DIR%%/install
@dirrm %%GALLERY2DIR%%/images
@dirrm %%GALLERY2DIR%%/docs
-@dirrmtry %%GALLERYDIR%%
+@dirrmtry %%GALLERY2DIR%%
OpenPOWER on IntegriCloud