summaryrefslogtreecommitdiff
path: root/dev-db/phpmyadmin/phpmyadmin-5.2.1.ebuild
diff options
context:
space:
mode:
authorTomáš Mózes <hydrapolic@gmail.com>2023-02-08 19:55:41 +0000
committerSam James <sam@gentoo.org>2023-02-15 05:52:26 +0000
commit716e36f86dd7e81808fde4a7beb2b82fea42dff5 (patch)
tree7908b60625fc18e2152997adcb98f7f60974479f /dev-db/phpmyadmin/phpmyadmin-5.2.1.ebuild
parent5816e6d38fbae403461eb95d5aa51376897ec23d (diff)
downloadgentoo-716e36f86dd7e81808fde4a7beb2b82fea42dff5.tar.gz
gentoo-716e36f86dd7e81808fde4a7beb2b82fea42dff5.tar.bz2
gentoo-716e36f86dd7e81808fde4a7beb2b82fea42dff5.zip
dev-db/phpmyadmin: add 5.2.1
Closes: https://bugs.gentoo.org/893624 Signed-off-by: Tomáš Mózes <hydrapolic@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/29497 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-db/phpmyadmin/phpmyadmin-5.2.1.ebuild')
-rw-r--r--dev-db/phpmyadmin/phpmyadmin-5.2.1.ebuild60
1 files changed, 60 insertions, 0 deletions
diff --git a/dev-db/phpmyadmin/phpmyadmin-5.2.1.ebuild b/dev-db/phpmyadmin/phpmyadmin-5.2.1.ebuild
new file mode 100644
index 000000000000..582e38711c9d
--- /dev/null
+++ b/dev-db/phpmyadmin/phpmyadmin-5.2.1.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit 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"
+S="${WORKDIR}"/${MY_P}
+
+LICENSE="GPL-2"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos ~x64-macos"
+IUSE="setup"
+
+RDEPEND="
+ dev-lang/php[ctype,filter,json(+),session,ssl,unicode]
+ || (
+ dev-lang/php[mysqli]
+ dev-lang/php[mysql]
+ )
+ virtual/httpd-php:*
+"
+
+need_httpd_cgi
+
+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
+}