diff options
author | Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto@gentoo.org> | 2020-10-14 16:01:24 +0000 |
---|---|---|
committer | Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto@gentoo.org> | 2020-10-14 16:01:24 +0000 |
commit | db9b00696f52941c510bfa1e068038df67f7f7c5 (patch) | |
tree | 33e6c1aac6a4098b789b3945ff38bf0543d14cc6 /dev-db/phpmyadmin/phpmyadmin-5.0.3.ebuild | |
parent | www-apps/drupal: Add 8.9.7 and 9.0.7 releases. (diff) | |
download | jmbsvicetto-db9b00696f52941c510bfa1e068038df67f7f7c5.tar.gz jmbsvicetto-db9b00696f52941c510bfa1e068038df67f7f7c5.tar.bz2 jmbsvicetto-db9b00696f52941c510bfa1e068038df67f7f7c5.zip |
dev-db/phpmyadmin: Security bump (4.9.6, 5.0.3).
CVE-2020-{26934,26935}
Bug: https://bugs.gentoo.org/747805
Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto@gentoo.org>
Diffstat (limited to 'dev-db/phpmyadmin/phpmyadmin-5.0.3.ebuild')
-rw-r--r-- | dev-db/phpmyadmin/phpmyadmin-5.0.3.ebuild | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/dev-db/phpmyadmin/phpmyadmin-5.0.3.ebuild b/dev-db/phpmyadmin/phpmyadmin-5.0.3.ebuild new file mode 100644 index 0000000..bcfb741 --- /dev/null +++ b/dev-db/phpmyadmin/phpmyadmin-5.0.3.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit eutils webapp + +MY_PV=${PV/_/-} +MY_PN="phpMyAdmin" +MY_P="${MY_PN}-${MY_PV}-all-languages" + +DESCRIPTION="Web-based administration for MySQL database in PHP" +HOMEPAGE="https://www.phpmyadmin.net/" +SRC_URI="https://files.phpmyadmin.net/${MY_PN}/${MY_PV}/${MY_P}.tar.xz" + +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos ~x64-macos ~x86-macos" +IUSE="setup" + +RDEPEND=" + >=dev-lang/php-7.1[ctype,filter,json,session,unicode] + || ( + dev-lang/php[mysqli] + dev-lang/php[mysql] + ) + virtual/httpd-php:* +" + +need_httpd_cgi + +S="${WORKDIR}"/${MY_P} + +pkg_setup() { + webapp_pkg_setup +} + +src_install() { + webapp_src_preinst + + dodoc README RELEASE-DATE-${MY_PV} ChangeLog + rm -f LICENSE README* RELEASE-DATE-${MY_PV} + + if ! use setup; then + rm -rf setup || die "Cannot remove setup utility" + elog "The phpMyAdmin setup utility has been removed." + elog "It is a regular target of various exploits. If you need it, set USE=setup." + 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#${EPREFIX}}" + doins -r . + + webapp_configfile "${MY_HTDOCSDIR#${EPREFIX}}"/libraries/config.default.php + webapp_serverowned "${MY_HTDOCSDIR#${EPREFIX}}"/libraries/config.default.php + + webapp_postinst_txt en "${FILESDIR}"/postinstall-en-3.1.txt + webapp_src_install +} |