diff options
Diffstat (limited to 'www-apps/gallery/gallery-2.0.2.ebuild')
-rw-r--r-- | www-apps/gallery/gallery-2.0.2.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/www-apps/gallery/gallery-2.0.2.ebuild b/www-apps/gallery/gallery-2.0.2.ebuild new file mode 100644 index 000000000000..49e835a8fd8c --- /dev/null +++ b/www-apps/gallery/gallery-2.0.2.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/gallery-2.0.2.ebuild,v 1.1 2005/11/30 01:45:47 rl03 Exp $ + +inherit webapp + +DESCRIPTION="Web based (PHP Script) photo album viewer/creator" +HOMEPAGE="http://gallery.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}-full.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86" +IUSE="ffmpeg gd imagemagick netpbm mysql postgres" + +RDEPEND="virtual/httpd-php + >=media-gfx/jhead-2.2 + app-arch/unzip + media-libs/jpeg + ffmpeg? ( media-video/ffmpeg ) + gd? ( >=media-libs/gd-2 ) + netpbm? ( >=media-libs/netpbm-9.12 ) + imagemagick? ( >=media-gfx/imagemagick-5.4.9.1-r1 ) + mysql? ( dev-db/mysql ) + postgres? ( >=dev-db/postgresql-7 ) +" + +S=${WORKDIR}/${PN}2 + +src_install() { + webapp_src_preinst + + cp -R * ${D}/${MY_HTDOCSDIR} + dohtml README.html + + webapp_postinst_txt en ${FILESDIR}/postinstall-en2.txt + webapp_src_install +} |