diff options
author | Tom William Payne <twp@gentoo.org> | 2004-03-01 20:43:58 +0000 |
---|---|---|
committer | Tom William Payne <twp@gentoo.org> | 2004-03-01 20:43:58 +0000 |
commit | d746ce1fba8782345a57357d465e1aaaf44509db (patch) | |
tree | 59c5b6af1162e6f6d1ce6746a2a8104566a6870a /dev-db | |
parent | Version bumped. Closes 43388 (diff) | |
download | gentoo-2-d746ce1fba8782345a57357d465e1aaaf44509db.tar.gz gentoo-2-d746ce1fba8782345a57357d465e1aaaf44509db.tar.bz2 gentoo-2-d746ce1fba8782345a57357d465e1aaaf44509db.zip |
Moved webapp-detect function call into pkg_setup and src_install.
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/phpmyadmin/files/digest-phpmyadmin-2.5.6_rc1-r1 | 1 | ||||
-rw-r--r-- | dev-db/phpmyadmin/phpmyadmin-2.5.6_rc1-r1.ebuild | 98 |
2 files changed, 99 insertions, 0 deletions
diff --git a/dev-db/phpmyadmin/files/digest-phpmyadmin-2.5.6_rc1-r1 b/dev-db/phpmyadmin/files/digest-phpmyadmin-2.5.6_rc1-r1 new file mode 100644 index 000000000000..36d80adab454 --- /dev/null +++ b/dev-db/phpmyadmin/files/digest-phpmyadmin-2.5.6_rc1-r1 @@ -0,0 +1 @@ +MD5 a1233c2068c230895fe389b8fcb72e29 phpMyAdmin-2.5.6-rc1.tar.bz2 1107008 diff --git a/dev-db/phpmyadmin/phpmyadmin-2.5.6_rc1-r1.ebuild b/dev-db/phpmyadmin/phpmyadmin-2.5.6_rc1-r1.ebuild new file mode 100644 index 000000000000..5e82b98b4c04 --- /dev/null +++ b/dev-db/phpmyadmin/phpmyadmin-2.5.6_rc1-r1.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_rc1-r1.ebuild,v 1.1 2004/03/01 20:43:58 twp 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} + +pkg_setup() { + webapp-detect || NO_WEBSERVER=1 + 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-detect || NO_WEBSERVER=1 + 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" +} |