diff options
author | Gunnar Wrobel <wrobel@gentoo.org> | 2008-10-02 04:13:30 +0000 |
---|---|---|
committer | Gunnar Wrobel <wrobel@gentoo.org> | 2008-10-02 04:13:30 +0000 |
commit | a8105b29c29b8714c3deae6f2f6aadbeb8ee56f4 (patch) | |
tree | 4f3561b723c8362cb8b539734fd1d6e6eab54e8e /dev-db | |
parent | Disable src_test -- there is no actual test #239071 by Alexis Ballier. (diff) | |
download | gentoo-2-a8105b29c29b8714c3deae6f2f6aadbeb8ee56f4.tar.gz gentoo-2-a8105b29c29b8714c3deae6f2f6aadbeb8ee56f4.tar.bz2 gentoo-2-a8105b29c29b8714c3deae6f2f6aadbeb8ee56f4.zip |
Removed insecure phpmyadmin-2.11.9.1 (sec issue #238592).
(Portage version: 2.1.4.4)
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/phpmyadmin/ChangeLog | 5 | ||||
-rw-r--r-- | dev-db/phpmyadmin/phpmyadmin-2.11.9.1.ebuild | 63 |
2 files changed, 4 insertions, 64 deletions
diff --git a/dev-db/phpmyadmin/ChangeLog b/dev-db/phpmyadmin/ChangeLog index c1f2f0e687a6..fcef5a00823b 100644 --- a/dev-db/phpmyadmin/ChangeLog +++ b/dev-db/phpmyadmin/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-db/phpmyadmin # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/phpmyadmin/ChangeLog,v 1.337 2008/10/01 17:53:17 dertobi123 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/phpmyadmin/ChangeLog,v 1.338 2008/10/02 04:13:30 wrobel Exp $ + + 02 Oct 2008; wrobel@gentoo.org -phpmyadmin-2.11.9.1.ebuild: + Removed insecure phpmyadmin-2.11.9.1 (sec issue #238592). 01 Oct 2008; Tobias Scherbaum <dertobi123@gentoo.org> phpmyadmin-2.11.9.2.ebuild: diff --git a/dev-db/phpmyadmin/phpmyadmin-2.11.9.1.ebuild b/dev-db/phpmyadmin/phpmyadmin-2.11.9.1.ebuild deleted file mode 100644 index 13efd7d5a82e..000000000000 --- a/dev-db/phpmyadmin/phpmyadmin-2.11.9.1.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/phpmyadmin/phpmyadmin-2.11.9.1.ebuild,v 1.6 2008/09/23 18:57:42 keytoaster Exp $ - -inherit eutils webapp depend.php - -MY_PV=${PV/_/-} -MY_P="phpMyAdmin-${MY_PV}-all-languages-utf-8-only" - -DESCRIPTION="Web-based administration for MySQL database in PHP" -HOMEPAGE="http://www.phpmyadmin.net/" -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2" - -LICENSE="GPL-2" -KEYWORDS="alpha amd64 hppa ppc ppc64 sparc x86 ~x86-fbsd" -IUSE="" - -need_httpd_cgi -need_php_httpd - -S="${WORKDIR}"/${MY_P} - -pkg_setup() { - webapp_pkg_setup - - if ! PHPCHECKNODIE="yes" require_php_with_use crypt ctype pcre session unicode \ - || ! PHPCHECKNODIE="yes" require_php_with_any_use mysql mysqli ; then - eerror - eerror "${PHP_PKG} needs to be re-installed with all of the following" - eerror "USE flags enabled:" - eerror - eerror "ctype pcre session unicode" - eerror - eerror "as well as any of the following USE flags enabled:" - eerror - eerror "mysql or mysqli if using dev-lang/php-5" - eerror - die "Re-install ${PHP_PKG}" - fi -} - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${PN}-2.11.5-custom-cert.patch -} - -src_install() { - webapp_src_preinst - - dodoc CREDITS Documentation.txt INSTALL README RELEASE-DATE-${MY_PV} TODO ChangeLog - rm -f LICENSE CREDITS INSTALL README RELEASE-DATE-${MY_PV} TODO - - insinto "${MY_HTDOCSDIR}" - doins -r . - - webapp_configfile "${MY_HTDOCSDIR}"/libraries/config.default.php - webapp_serverowned "${MY_HTDOCSDIR}"/libraries/config.default.php - - webapp_postinst_txt en "${FILESDIR}"/postinstall-en-2.8.0.txt - webapp_hook_script "${FILESDIR}"/reconfig-2.8 - webapp_src_install -} |