diff options
author | Matti Bickel <mabi@gentoo.org> | 2010-04-30 21:41:43 +0000 |
---|---|---|
committer | Matti Bickel <mabi@gentoo.org> | 2010-04-30 21:41:43 +0000 |
commit | 9c6fc05b5344495ed29096ec63c2e2cdab0111c3 (patch) | |
tree | 7b1e3979e927619c78321bc60a054fc32234a40d /dev-db/phpmyadmin | |
parent | Fix documentation build if RSpec is not present. (diff) | |
download | gentoo-2-9c6fc05b5344495ed29096ec63c2e2cdab0111c3.tar.gz gentoo-2-9c6fc05b5344495ed29096ec63c2e2cdab0111c3.tar.bz2 gentoo-2-9c6fc05b5344495ed29096ec63c2e2cdab0111c3.zip |
version bump from the php-experimental overlay
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'dev-db/phpmyadmin')
-rw-r--r-- | dev-db/phpmyadmin/ChangeLog | 10 | ||||
-rw-r--r-- | dev-db/phpmyadmin/phpmyadmin-3.3.2.ebuild | 57 |
2 files changed, 65 insertions, 2 deletions
diff --git a/dev-db/phpmyadmin/ChangeLog b/dev-db/phpmyadmin/ChangeLog index ab84a775d3d1..8e14c18dc59e 100644 --- a/dev-db/phpmyadmin/ChangeLog +++ b/dev-db/phpmyadmin/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-db/phpmyadmin -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/phpmyadmin/ChangeLog,v 1.379 2009/11/21 18:56:02 nixnut Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/phpmyadmin/ChangeLog,v 1.380 2010/04/30 21:41:43 mabi Exp $ + +*phpmyadmin-3.3.2 (30 Apr 2010) + + 30 Apr 2010; <mabi@gentoo.org> +phpmyadmin-3.3.2.ebuild: + version bump from the php-experimental overlay (thanks to Tsisaruk V + <tsisaruk.v@gmail.com>) 21 Nov 2009; nixnut <nixnut@gentoo.org> phpmyadmin-2.11.9.6.ebuild, phpmyadmin-3.2.2.1.ebuild: diff --git a/dev-db/phpmyadmin/phpmyadmin-3.3.2.ebuild b/dev-db/phpmyadmin/phpmyadmin-3.3.2.ebuild new file mode 100644 index 000000000000..e18cb2828c2f --- /dev/null +++ b/dev-db/phpmyadmin/phpmyadmin-3.3.2.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/phpmyadmin/phpmyadmin-3.3.2.ebuild,v 1.1 2010/04/30 21:41:43 mabi Exp $ + +EAPI="2" + +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.bz2" + +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="" + +RDEPEND=">=virtual/mysql-5.0" +RDEPEND=" + dev-lang/php[crypt,ctype,filter,session,unicode] + || ( + <dev-lang/php-5.3[spl,pcre] + >=dev-lang/php-5.3 + ) + || ( + 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 CREDITS Documentation.txt INSTALL README RELEASE-DATE-${MY_PV} TODO ChangeLog || die + 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-3.1.txt + webapp_hook_script "${FILESDIR}"/reconfig-2.8 + webapp_src_install +} |