diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-10-15 11:53:18 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-10-15 11:53:18 +0000 |
commit | 6bc217d39843e359e01ed03499f2c4277cfc860d (patch) | |
tree | d06f7b72f430f3812a5176569a40aed09fa0d67d /www/gallery3/Makefile | |
parent | d5c5a08f0c62c8ee5bf8ff1e9bc9d2b1a06bcb96 (diff) | |
download | ports-6bc217d39843e359e01ed03499f2c4277cfc860d.tar.gz ports-6bc217d39843e359e01ed03499f2c4277cfc860d.zip |
Notes
Diffstat (limited to 'www/gallery3/Makefile')
-rw-r--r-- | www/gallery3/Makefile | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/www/gallery3/Makefile b/www/gallery3/Makefile new file mode 100644 index 000000000000..c95d1a367664 --- /dev/null +++ b/www/gallery3/Makefile @@ -0,0 +1,52 @@ +# New ports collection makefile for: gallery +# Date created: 09 Sep 2001 +# Whom: Jamie Hermans <jamie@hermans.ca> +# +# $FreeBSD$ +# + +PORTNAME= gallery +PORTVERSION= 1.2 +CATEGORIES= www +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= jamie@hermans.ca + +RUN_DEPENDS= ${LOCALBASE}/share/netpbm:${PORTSDIR}/graphics/netpbm + +WRKSRC= ${WRKDIR}/${PORTNAME} +NO_BUILD= yes + +post-extract: + cd ${WRKDIR}; \ + ${FETCH_CMD} http://www.sentex.net/~mwandel/jhead/jhead + +do-install: + ${MKDIR} -v ${PREFIX}/www/data + cd ${WRKDIR}; \ + ${INSTALL_PROGRAM} jhead ${PREFIX}/bin + cd ${WRKDIR}; \ + ${CP} -R gallery ${PREFIX}/www/data + +post-install: + @${ECHO} "" + @${ECHO} "*****************************************************************" + @${ECHO} "" + @${ECHO} " Please consider adding the following 3 lines to your httpd.conf" + @${ECHO} "" + @${ECHO} " <Directory /usr/local/www/data/gallery>" + @${ECHO} " AllowOverride Options FileInfo" + @${ECHO} " </Directory>" + @${ECHO} "" + @${ECHO} " Then restart apache: 'apachectl restart'" + @${ECHO} "" + @${ECHO} "*****************************************************************" + @${ECHO} "" + @${ECHO} " Please visit 'http://{host.domain}/gallery/' in a" + @${ECHO} " web-browser and follow the configuration instructions." + @${ECHO} "" + @${ECHO} "*****************************************************************" + @${ECHO} "" + +.include <bsd.port.mk> |