blob: 5012a93893aecbc52a0ae9134a388f8b344b56bb (
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
|
# 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.4.0.ebuild,v 1.2 2003/04/09 10:04:04 twp Exp $
inherit eutils
MY_PN=phpMyAdmin
S=${WORKDIR}/${MY_PN}-${PV}
DESCRIPTION="Web-based administration for MySQL database in php"
SRC_URI="mirror://sourceforge/${PN}/${MY_PN}-${PV}-php.tar.bz2"
HOMEPAGE="http://phpmyadmin.sourceforge.net/"
LICENSE="GPL-2"
SLOT="0"
# only known to work on x86... can people test on other platforms?
KEYWORDS="~x86 ~sparc ppc ~alpha"
DEPEND=">=net-www/apache-1.3.24-r1 >=dev-db/mysql-3.23.38 >=dev-php/mod_php-4.1.2-r5"
# FIX- Plz check if path of config file (/etc/apache2/conf/apache2.conf)
# is correct because i'm not using apache2 now, thanx - Quequero
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/phpmyadmin-config.patch
}
src_compile() {
local pmapass="${RANDOM}${RANDOM}${RANDOM}${RANDOM}"
mv config.inc.php config.inc.php.in
sed -e "s/@pmapass@/${pmapass}/g" config.inc.php.in > config.inc.php
sed -e "s/@pmapass@/${pmapass}/g" ${FILESDIR}/phpmyadmin-mysql-setup.sql.in > mysql-setup.sql
}
src_install () {
cd ${S}
local DocumentRoot="`grep '^DocumentRoot' /etc/apache/conf/apache.conf | cut -d\ -f2`"
[ -z "${DocumentRoot}" ] && DocumentRoot="/home/httpd/htdocs"
insinto ${DocumentRoot}/phpmyadmin
doins *.{php,html} ChangeLog
insinto ${DocumentRoot}/phpmyadmin/images
doins images/*.{gif,png}
insinto ${DocumentRoot}/phpmyadmin/scripts
doins scripts/*.sh
insinto ${DocumentRoot}/phpmyadmin/lang
doins lang/*.{php,sh}
insinto ${DocumentRoot}/phpmyadmin/libraries
doins libraries/*.{php,js}
insinto ${DocumentRoot}/phpmyadmin/libraries/auth
doins libraries/auth/*.php
dodoc ANNOUNCE.txt CREDITS ChangeLog TODO Documentation.{txt,html} \
INSTALL LICENSE RELEASE-DATE*
insinto /etc/phpmyadmin
doins config.inc.php mysql-setup.sql
dosym /etc/phpmyadmin/config.inc.php ${DocumentRoot}/phpmyadmin/config.inc.php
}
pkg_postinst() {
einfo
einfo "Run etc-update to update your configuration files if required, then run"
einfo " ebuild /var/db/pkg/${CATEGORY}/${PF}/${PF}.ebuild config"
einfo "to setup MySQL for phpMyAdmin"
einfo "Then point your browser to http://localhost/phpmyadmin/"
einfo
}
pkg_config() {
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"
}
|