diff options
author | Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> | 2015-04-23 02:42:37 +0000 |
---|---|---|
committer | Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> | 2015-04-23 02:42:37 +0000 |
commit | e9c95f576e99aeadf305b9e9cdb2ff333485b87e (patch) | |
tree | 5ec6e1fd33140ae9c676f999eb42030b9fc8629f /dev-db/phpmyadmin/phpmyadmin-4.4.3.ebuild | |
parent | Add better descriptions for lzma and zlib. (diff) | |
download | gentoo-2-e9c95f576e99aeadf305b9e9cdb2ff333485b87e.tar.gz gentoo-2-e9c95f576e99aeadf305b9e9cdb2ff333485b87e.tar.bz2 gentoo-2-e9c95f576e99aeadf305b9e9cdb2ff333485b87e.zip |
Version bump to release 4.4.3.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key BB0E6E98)
Diffstat (limited to 'dev-db/phpmyadmin/phpmyadmin-4.4.3.ebuild')
-rw-r--r-- | dev-db/phpmyadmin/phpmyadmin-4.4.3.ebuild | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/dev-db/phpmyadmin/phpmyadmin-4.4.3.ebuild b/dev-db/phpmyadmin/phpmyadmin-4.4.3.ebuild new file mode 100644 index 000000000000..2c239a31ea12 --- /dev/null +++ b/dev-db/phpmyadmin/phpmyadmin-4.4.3.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/phpmyadmin/phpmyadmin-4.4.3.ebuild,v 1.1 2015/04/23 02:42:37 jmbsvicetto Exp $ + +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 +} |