diff options
Diffstat (limited to 'dev-db/phpmyadmin/phpmyadmin-2.11.6.ebuild')
-rw-r--r-- | dev-db/phpmyadmin/phpmyadmin-2.11.6.ebuild | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/dev-db/phpmyadmin/phpmyadmin-2.11.6.ebuild b/dev-db/phpmyadmin/phpmyadmin-2.11.6.ebuild new file mode 100644 index 000000000000..bc2c53917626 --- /dev/null +++ b/dev-db/phpmyadmin/phpmyadmin-2.11.6.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/phpmyadmin/phpmyadmin-2.11.6.ebuild,v 1.1 2008/05/02 20:02:43 wrobel Exp $ + +inherit eutils webapp depend.php + +MY_PV=${PV/_/-} +MY_P="phpMyAdmin-${MY_PV}-all-languages-utf-8-only" + +DESCRIPTION="Web-based administration for MySQL database in PHP" +HOMEPAGE="http://www.phpmyadmin.net/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2" + +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="" + +need_httpd_cgi +need_php_httpd + +S="${WORKDIR}"/${MY_P} + +pkg_setup() { + webapp_pkg_setup + + if ! PHPCHECKNODIE="yes" require_php_with_use crypt ctype pcre session unicode \ + || ! PHPCHECKNODIE="yes" require_php_with_any_use mysql mysqli ; then + eerror + eerror "${PHP_PKG} needs to be re-installed with all of the following" + eerror "USE flags enabled:" + eerror + eerror "ctype pcre session unicode" + eerror + eerror "as well as any of the following USE flags enabled:" + eerror + eerror "mysql or mysqli if using dev-lang/php-5" + eerror "mysql if using dev-lang/php-4" + eerror + die "Re-install ${PHP_PKG}" + fi +} + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${PN}-2.11.5-custom-cert.patch +} + +src_install() { + webapp_src_preinst + + dodoc CREDITS Documentation.txt INSTALL README RELEASE-DATE-${MY_PV} TODO ChangeLog + rm -f LICENSE CREDITS INSTALL README RELEASE-DATE-${MY_PV} TODO + + insinto "${MY_HTDOCSDIR}" + doins -r . + + webapp_configfile "${MY_HTDOCSDIR}"/libraries/config.default.php + webapp_serverowned "${MY_HTDOCSDIR}"/libraries/config.default.php + + webapp_postinst_txt en "${FILESDIR}"/postinstall-en-2.8.0.txt + webapp_hook_script "${FILESDIR}"/reconfig-2.8 + webapp_src_install +} |