summaryrefslogtreecommitdiff
path: root/graphics/jalbum/Makefile
diff options
context:
space:
mode:
authorHerve Quiroz <hq@FreeBSD.org>2005-03-20 22:09:52 +0000
committerHerve Quiroz <hq@FreeBSD.org>2005-03-20 22:09:52 +0000
commit62264e96143cb700d885b808f9c4fb6b90029b71 (patch)
treee25c1b81c5e99ecd14c3eb27eee2a13bc3aa1ace /graphics/jalbum/Makefile
parentUpdate to the 20050319 snapshot of GCC 4.0.0. (diff)
This photo gallery software makes web albums of your digital images.
JAlbum aims to be the easiest to use and most powerful tool in this category - and free! JAlbum is written after numerous disappointments with existing photo gallery software. With JAlbum you have full control of the look of the generated album, not just color theme and basic layout, still making an album is just a matter of drag and drop + a button click if you prefer to use one of the many existing looks. JAlbum will process your images, make index pages and slide show pages and even upload the final album to the Internet for your friends to see. No extra software is needed to view the albums, -just your web browser. Unlike "server side" album scripts, JAlbum albums can be served from a plain web server without scripting support. You can also share your albums on CD-ROM. WWW: http://jalbum.net/ PR: 79051 Submitted by: Tim Bishop <tim@bishnet.net>
Notes
Notes: svn path=/head/; revision=131798
Diffstat (limited to 'graphics/jalbum/Makefile')
-rw-r--r--graphics/jalbum/Makefile36
1 files changed, 36 insertions, 0 deletions
diff --git a/graphics/jalbum/Makefile b/graphics/jalbum/Makefile
new file mode 100644
index 000000000000..37b50b9eba5b
--- /dev/null
+++ b/graphics/jalbum/Makefile
@@ -0,0 +1,36 @@
+# New ports collection makefile for: jalbum
+# Date created: 20 March 2005
+# Whom: Tim Bishop <tim@bishnet.net>
+#
+# $FreeBSD$
+#
+
+PORTNAME= jalbum
+PORTVERSION= 1.5
+CATEGORIES= graphics java
+MASTER_SITES= ftp://ftp.i-scream.org/pub/jalbum.net/download/ \
+ http://www.i-scream.org/pub/jalbum.net/download/
+DISTNAME= JAlbum-${PORTVERSION}
+
+MAINTAINER= tim@bishnet.net
+COMMENT= Web photo album generator
+
+RUN_DEPENDS= java:${PORTSDIR}/java/javavmwrapper
+
+WRKSRC= ${WRKDIR}/JAlbum
+
+USE_ZIP= yes
+NO_BUILD= yes
+
+USE_JAVA= yes
+JAVA_VERSION= 1.3+
+DATADIR= ${JAVASHAREDIR}/${PORTNAME}
+
+SUB_FILES= jalbum.sh
+
+do-install:
+ ${MKDIR} ${DATADIR}
+ cd ${WRKSRC} && ${TAR} -cf - * | ${TAR} -xf - -C ${DATADIR}
+ ${INSTALL_SCRIPT} ${WRKDIR}/jalbum.sh ${PREFIX}/bin/jalbum
+
+.include <bsd.port.mk>