diff options
author | 2011-09-15 14:55:28 +0000 | |
---|---|---|
committer | 2011-09-15 14:55:28 +0000 | |
commit | c88c2bdfad58c9b39aab1b2a4d76599af794120e (patch) | |
tree | 4ef7ca7774f4658379dd52cb7652ce15ffa041bd /dev-db | |
parent | keepdir /var/lib/udisks wrt #383091 by Marcin Mirosław (diff) | |
download | gentoo-2-c88c2bdfad58c9b39aab1b2a4d76599af794120e.tar.gz gentoo-2-c88c2bdfad58c9b39aab1b2a4d76599af794120e.tar.bz2 gentoo-2-c88c2bdfad58c9b39aab1b2a4d76599af794120e.zip |
Version bump for security bug 383107, fixing input sanitation flaws.
(Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/phpmyadmin/ChangeLog | 7 | ||||
-rw-r--r-- | dev-db/phpmyadmin/phpmyadmin-3.4.5.ebuild | 64 |
2 files changed, 70 insertions, 1 deletions
diff --git a/dev-db/phpmyadmin/ChangeLog b/dev-db/phpmyadmin/ChangeLog index 6c9905c5dc8b..aa151531b5dd 100644 --- a/dev-db/phpmyadmin/ChangeLog +++ b/dev-db/phpmyadmin/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-db/phpmyadmin # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/phpmyadmin/ChangeLog,v 1.446 2011/09/03 18:45:44 a3li Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/phpmyadmin/ChangeLog,v 1.447 2011/09/15 14:55:28 a3li Exp $ + +*phpmyadmin-3.4.5 (15 Sep 2011) + + 15 Sep 2011; Alex Legler <a3li@gentoo.org> +phpmyadmin-3.4.5.ebuild: + Version bump for security bug 383107, fixing input sanitation flaws. 03 Sep 2011; Alex Legler <a3li@gentoo.org> -phpmyadmin-3.4.3.2.ebuild: Removing vunlerable ebuild diff --git a/dev-db/phpmyadmin/phpmyadmin-3.4.5.ebuild b/dev-db/phpmyadmin/phpmyadmin-3.4.5.ebuild new file mode 100644 index 000000000000..566f75b1a0cb --- /dev/null +++ b/dev-db/phpmyadmin/phpmyadmin-3.4.5.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/phpmyadmin/phpmyadmin-3.4.5.ebuild,v 1.1 2011/09/15 14:55:28 a3li Exp $ + +EAPI="2" + +inherit eutils webapp depend.php + +MY_PV=${PV/_/-} +MY_P="phpMyAdmin-${MY_PV}-all-languages" + +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 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="+setup" + +RDEPEND=" + dev-lang/php[crypt,ctype,filter,json,session,unicode] + || ( + <dev-lang/php-5.3[spl,pcre] + >=dev-lang/php-5.3 + ) + || ( + dev-lang/php[mysqli] + dev-lang/php[mysql] + ) +" + +need_httpd_cgi +need_php_httpd + +S="${WORKDIR}"/${MY_P} + +pkg_setup() { + webapp_pkg_setup +} + +src_install() { + webapp_src_preinst + + dodoc CREDITS Documentation.txt INSTALL README RELEASE-DATE-${MY_PV} TODO ChangeLog || die + rm -f LICENSE CREDITS INSTALL README* RELEASE-DATE-${MY_PV} TODO + + if ! use setup; then + rm -rf setup || die "Cannot remove setup utility" + elog "The phpmyadmin setup utility has been removed." + else + elog "You should consider disabling the setup USE flag" + elog "to exclude the setup utility if you don't use it." + elog "It regularly is the target of various exploits." + fi + + 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-3.1.txt + webapp_src_install +} |