summaryrefslogtreecommitdiff
path: root/dev-db/phpmyadmin/phpmyadmin-4.0.10.10.ebuild
diff options
context:
space:
mode:
authorJorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto@gentoo.org>2015-09-01 20:19:11 +0000
committerJorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto@gentoo.org>2015-09-01 20:19:11 +0000
commit1ca4d35c7ee61cfe99af117f3a99c0c862e8ec4c (patch)
tree13a15968291bbd3452c26b3d24b35eb290c6214e /dev-db/phpmyadmin/phpmyadmin-4.0.10.10.ebuild
parent3ac6faae1393bac67c0f1447a69374dca557aa2b (diff)
downloadgentoo-1ca4d35c7ee61cfe99af117f3a99c0c862e8ec4c.tar.gz
gentoo-1ca4d35c7ee61cfe99af117f3a99c0c862e8ec4c.tar.bz2
gentoo-1ca4d35c7ee61cfe99af117f3a99c0c862e8ec4c.zip
Drop old versions, add new 4.4.14 release and first 4.5 beta.
Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto@gentoo.org>
Diffstat (limited to 'dev-db/phpmyadmin/phpmyadmin-4.0.10.10.ebuild')
-rw-r--r--dev-db/phpmyadmin/phpmyadmin-4.0.10.10.ebuild61
1 files changed, 0 insertions, 61 deletions
diff --git a/dev-db/phpmyadmin/phpmyadmin-4.0.10.10.ebuild b/dev-db/phpmyadmin/phpmyadmin-4.0.10.10.ebuild
deleted file mode 100644
index 41f2d33b9989..000000000000
--- a/dev-db/phpmyadmin/phpmyadmin-4.0.10.10.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-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.xz"
-
-LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~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]
- )
-"
-
-need_httpd_cgi
-need_php_httpd
-
-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
-}