diff options
author | Vance M. Allen <vma_gentoo@vmacs.us> | 2018-04-22 13:24:38 -0600 |
---|---|---|
committer | Vance M. Allen <vma_gentoo@vmacs.us> | 2018-04-22 13:24:38 -0600 |
commit | d49871cae1942cb294386810a1dace8d64d5f01c (patch) | |
tree | c364903f9fa24a4cc4a519108476a4b696e13321 /dev-db/phpmyadmin/phpmyadmin-4.6.6.ebuild | |
parent | Masking mysql-8.0 until issues resolved (diff) | |
download | vmacs-d49871cae1942cb294386810a1dace8d64d5f01c.tar.gz vmacs-d49871cae1942cb294386810a1dace8d64d5f01c.tar.bz2 vmacs-d49871cae1942cb294386810a1dace8d64d5f01c.zip |
Removing EOL version of phpMyAdmin, adding support for phpMyAdmin-4.8.0.1
Diffstat (limited to 'dev-db/phpmyadmin/phpmyadmin-4.6.6.ebuild')
-rw-r--r-- | dev-db/phpmyadmin/phpmyadmin-4.6.6.ebuild | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/dev-db/phpmyadmin/phpmyadmin-4.6.6.ebuild b/dev-db/phpmyadmin/phpmyadmin-4.6.6.ebuild deleted file mode 100644 index a71a2b3..0000000 --- a/dev-db/phpmyadmin/phpmyadmin-4.6.6.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" - -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 ~x86-fbsd ~ppc-macos ~x64-macos ~x86-macos" -IUSE="setup" - -RDEPEND=" - dev-lang/php[crypt,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 || die - 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 -} |