diff options
author | Renat Lumpau <rl03@gentoo.org> | 2006-03-15 16:37:10 +0000 |
---|---|---|
committer | Renat Lumpau <rl03@gentoo.org> | 2006-03-15 16:37:10 +0000 |
commit | 67c607386a4a8d34584ae0fde6234bfd7e6ca362 (patch) | |
tree | 947f53487f21f4e7851d289e269e8f971471640e /www-apps/gallery/gallery-2.0.4.ebuild | |
parent | Stable on ppc64; bug #126052 (diff) | |
download | gentoo-2-67c607386a4a8d34584ae0fde6234bfd7e6ca362.tar.gz gentoo-2-67c607386a4a8d34584ae0fde6234bfd7e6ca362.tar.bz2 gentoo-2-67c607386a4a8d34584ae0fde6234bfd7e6ca362.zip |
Vbump wrt security bugs #125830 and #124614.
(Portage version: 2.1_pre4-r1)
Diffstat (limited to 'www-apps/gallery/gallery-2.0.4.ebuild')
-rw-r--r-- | www-apps/gallery/gallery-2.0.4.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/www-apps/gallery/gallery-2.0.4.ebuild b/www-apps/gallery/gallery-2.0.4.ebuild new file mode 100644 index 000000000000..91653cd8883c --- /dev/null +++ b/www-apps/gallery/gallery-2.0.4.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/gallery-2.0.4.ebuild,v 1.1 2006/03/15 16:37:10 rl03 Exp $ + +inherit webapp eutils + +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-0.4.9_p20051216 ) + 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_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/FfmpegToolkit.class.patch # bug 118162 +} + +src_install() { + webapp_src_preinst + + cp -R * ${D}/${MY_HTDOCSDIR} + dohtml README.html + + webapp_postinst_txt en ${FILESDIR}/postinstall-en2.txt + webapp_src_install +} |