summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGunnar Wrobel <wrobel@gentoo.org>2008-06-24 11:06:49 +0000
committerGunnar Wrobel <wrobel@gentoo.org>2008-06-24 11:06:49 +0000
commit6b296bd387bda4052dedd444a49b7c5d6dba3338 (patch)
treefd8db7fb731cff73d1711e8936557741d6aa2f14 /www-apps
parentupdated the changelog (diff)
downloadgentoo-2-6b296bd387bda4052dedd444a49b7c5d6dba3338.tar.gz
gentoo-2-6b296bd387bda4052dedd444a49b7c5d6dba3338.tar.bz2
gentoo-2-6b296bd387bda4052dedd444a49b7c5d6dba3338.zip
Removed vulnerable gallery-2.2.4 (sec issue #226059).
(Portage version: 2.1.4.4)
Diffstat (limited to 'www-apps')
-rw-r--r--www-apps/gallery/ChangeLog5
-rw-r--r--www-apps/gallery/gallery-2.2.4.ebuild71
2 files changed, 4 insertions, 72 deletions
diff --git a/www-apps/gallery/ChangeLog b/www-apps/gallery/ChangeLog
index ba13da84d979..41f030bc0e93 100644
--- a/www-apps/gallery/ChangeLog
+++ b/www-apps/gallery/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for www-apps/gallery
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v 1.144 2008/06/23 20:05:18 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/ChangeLog,v 1.145 2008/06/24 11:06:49 wrobel Exp $
+
+ 24 Jun 2008; wrobel@gentoo.org -gallery-2.2.4.ebuild:
+ Removed vulnerable gallery-2.2.4 (sec issue #226059).
23 Jun 2008; Tobias Scherbaum <dertobi123@gentoo.org>
gallery-2.2.5.ebuild:
diff --git a/www-apps/gallery/gallery-2.2.4.ebuild b/www-apps/gallery/gallery-2.2.4.ebuild
deleted file mode 100644
index a26b4d08f282..000000000000
--- a/www-apps/gallery/gallery-2.2.4.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/gallery-2.2.4.ebuild,v 1.10 2008/02/22 15:50:50 hollow Exp $
-
-inherit webapp eutils depend.php confutils
-
-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 ppc64 sparc x86"
-IUSE="ffmpeg gd imagemagick mysql netpbm postgres raw unzip zip"
-
-RDEPEND="media-libs/jpeg
- raw? ( >=media-gfx/dcraw-8.03 )
- ffmpeg? ( >=media-video/ffmpeg-0.4.9_p20051216 )
- imagemagick? ( >=media-gfx/imagemagick-5.4.9.1-r1 )
- netpbm? ( >=media-libs/netpbm-9.12 >=media-gfx/jhead-2.2 )
- unzip? ( app-arch/unzip )
- zip? ( app-arch/zip )"
-
-S="${WORKDIR}"/${PN}2
-
-need_httpd_cgi
-need_php_httpd
-
-pkg_setup() {
- webapp_pkg_setup
- confutils_require_any gd imagemagick netpbm
- confutils_require_any mysql postgres
-
- local php_flags="pcre session"
- use mysql && php_flags="${php_flags} mysql"
- use postgres && php_flags="${php_flags} postgres"
-
- if ! PHPCHECKNODIE="yes" require_php_with_use ${php_flags} || \
- ( use gd && ! PHPCHECKNODIE="yes" require_php_with_any_use gd gd-external ) ; then
- eerror
- eerror "${PHP_PKG} needs to be re-installed with all of the following USE flags enabled:"
- eerror
- eerror "${php_flags}"
- eerror
- use gd && eerror "as well as with either gd or gd-external USE flag enabled."
- die "Re-install ${PHP_PKG}."
- fi
-}
-
-src_install() {
- webapp_src_preinst
-
- dohtml README.html
- rm README.html LICENSE MANIFEST
-
- insinto "${MY_HTDOCSDIR}"
- doins -r .
-
- webapp_postinst_txt en "${FILESDIR}"/postinstall-en2.txt
- webapp_src_install
-}
-
-pkg_postinst() {
- elog "You are strongly encouraged to back up your database"
- elog "and the g2data directory, as upgrading to 2.2 will make"
- elog "irreversible changes to both."
- elog
- elog "g2data dir: cp -Rf /path/to/g2data/ /path/to/backup"
- elog "mysql: mysqldump --opt -u username -h hostname -p database > /path/to/backup.sql"
- elog "postgres: pg_dump -h hostname --format=t database > /path/to/backup.sql"
- webapp_pkg_postinst
-}