blob: 690fc4b9a06ac77bd77fdd41440f4d55af63ee7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
# Copyright 1999-2003 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.5_p1.ebuild,v 1.1 2004/01/07 19:22:45 mholzer Exp $
inherit eutils
inherit webapp-apache
MY_P=phpMyAdmin-${PV/_p/-pl}
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 ~arm ~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"
}
|