diff options
author | Martin Holzer <mholzer@gentoo.org> | 2004-03-01 19:04:11 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2004-03-01 19:04:11 +0000 |
commit | 0b09a4f67e2ed2c76455763db0d56fc86c14cd72 (patch) | |
tree | 39a9135e42272940d9fe81fe1b369dddb93f421f /dev-db/phpmyadmin/phpmyadmin-2.5.6.ebuild | |
parent | Version bumped. (Manifest recommit) (diff) | |
download | gentoo-2-0b09a4f67e2ed2c76455763db0d56fc86c14cd72.tar.gz gentoo-2-0b09a4f67e2ed2c76455763db0d56fc86c14cd72.tar.bz2 gentoo-2-0b09a4f67e2ed2c76455763db0d56fc86c14cd72.zip |
Version bumped.
Diffstat (limited to 'dev-db/phpmyadmin/phpmyadmin-2.5.6.ebuild')
-rw-r--r-- | dev-db/phpmyadmin/phpmyadmin-2.5.6.ebuild | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/dev-db/phpmyadmin/phpmyadmin-2.5.6.ebuild b/dev-db/phpmyadmin/phpmyadmin-2.5.6.ebuild new file mode 100644 index 000000000000..1e8d58dd8987 --- /dev/null +++ b/dev-db/phpmyadmin/phpmyadmin-2.5.6.ebuild @@ -0,0 +1,98 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/phpmyadmin/phpmyadmin-2.5.6.ebuild,v 1.1 2004/03/01 19:04:11 mholzer Exp $ + +inherit eutils +inherit webapp-apache + +MY_P=phpMyAdmin-${PV/_rc/-rc} +DESCRIPTION="Web-based administration for MySQL database in PHP" +HOMEPAGE="http://phpmyadmin.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2" +RESTRICT="nomirror" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~ppc ~hppa ~mips ~sparc ~x86 ~amd64" +DEPEND=">=net-www/apache-1.3 + >=dev-db/mysql-3.23.32 <dev-db/mysql-5.0 + >=dev-php/mod_php-4.1 + sys-apps/findutils" +S=${WORKDIR}/${MY_P} + +webapp-detect || NO_WEBSERVER=1 + +pkg_setup() { + webapp-pkg_setup "${NO_WEBSERVER}" + einfo "Installing into ${ROOT}${HTTPD_ROOT}." +} + +src_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/config.inc.php-${PV}.patch +} + +src_compile() { + local pmapass="${RANDOM}${RANDOM}${RANDOM}${RANDOM}" + mv config.inc.php ${T}/config.inc.php + sed -e "s/@pmapass@/${pmapass}/g" \ + ${T}/config.inc.php > config.inc.php + sed -e "s/@pmapass@/${pmapass}/g" \ + ${FILESDIR}/mysql-setup.sql.in-${PV} > ${T}/mysql-setup.sql +} + +src_install() { + webapp-mkdirs + + local DocumentRoot=${HTTPD_ROOT} + local destdir=${DocumentRoot}/phpmyadmin + local docs="CREDITS Documentation.txt RELEASE-DATE-* TODO" + + # Copy everything + mkdir -p ${D}${destdir} + cp -r . ${D}${destdir} + # Remove documentation files + for doc in ${docs} INSTALL; do + rm -f ${D}${destdir}/${doc} + done + # Remove .cvs* files and CVS directories + find ${D}${destdir} -name .cvs\* -or \( -type d -name CVS -prune \) | xargs rm -rf + # Fix permissions + find ${D}${destdir} -type d | xargs chmod 755 + find ${D}${destdir} -type f | xargs chmod 644 + + dodoc ${docs} ChangeLog LICENSE README + + dosym /etc/phpmyadmin/config.inc.php ${destdir}/config.inc.php + insinto /etc/phpmyadmin + insopts -g apache -m 640 + doins config.inc.php + doins ${T}/mysql-setup.sql + +} + +pkg_postinst() { + einfo + einfo "To complete installation, you must" + einfo "1. Update your configuration files:" + einfo " etc-update" + einfo "2. Update MySQL's grant tables and the pmadb database:" + einfo " ebuild /var/db/pkg/${CATEGORY}/${PF}/${PF}.ebuild config" + einfo "3. Reload MySQL:" + einfo " /etc/init.d/mysql restart" + einfo + einfo "If you are upgrading from an earlier version and are using phpMyAdmin's" + einfo "features for master/foreign tables be sure to read" + einfo " http://localhost/phpmyadmin/Documentation.html#col_com" + einfo "You will need to perform the ALTER TABLE step yourself." + einfo + einfo "Finally, point your browser to http://localhost/phpmyadmin/." + einfo +} + +pkg_config() { + einfo "This will execute the contents of ${ROOT}etc/phpmyadmin/mysql-setup.sql" + einfo "Type in your MySQL root password:" + mysql -u root -p < ${ROOT}etc/phpmyadmin/mysql-setup.sql || die + einfo "You need to reload MySQL for the changes to take effect" +} |