blob: 03f871570a8c6e795053b3a6424c555d257ba604 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/mysqltool/mysqltool-0.95-r1.ebuild,v 1.7 2002/11/14 18:47:07 vapier Exp $
inherit perl-module
S=${WORKDIR}/MysqlTool-${PV}
DESCRIPTION="Web interface for managing one or more mysql server installations"
SRC_URI="http://www.dajoba.com/projects/mysqltool/MysqlTool-${PV}.tar.gz"
HOMEPAGE="http://www.dajoba.com/projects/mysqltool/"
DEPEND="virtual/glibc sys-devel/perl"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 sparc64"
RDEPEND="${DEPEND} >=net-www/apache-1.3.24-r1 >=dev-db/mysql-3.23.38
dev-perl/CGI dev-perl/DBI dev-perl/DBD-mysql dev-perl/Crypt-Blowfish"
APACHE_ROOT="`grep '^DocumentRoot' /etc/apache/conf/apache.conf | cut -d\ -f2`"
[ -z "${APACHE_ROOT}" ] && APACHE_ROOT="/home/httpd/htdocs"
src_install() {
eval `perl '-V:installarchlib'`
mkdir -p ${D}/$installarchlib
cp ${S}/Makefile ${S}/Makefile.orig
cat ${S}/Makefile | sed -e "s!INSTALLMAN1DIR = /usr/share/man/man1!INSTALLMAN1DIR = ${D}/usr/share/man/man1!" -e "s!INSTALLMAN3DIR = /usr/share/man/man3!INSTALLMAN3DIR = ${D}/usr/share/man/man3!" > ${S}/Makefile.gentoo
mv ${S}/Makefile.gentoo ${S}/Makefile
make install || die
dodoc COPYING Changes MANIFEST README Upgrade
# the cgi and images..
dodir ${APACHE_ROOT}/mysqltool
cp -a htdocs/* ${D}${APACHE_ROOT}/mysqltool
rm ${D}${APACHE_ROOT}/mysqltool/mysqltool.conf
# the config file..
insinto /etc/apache/conf/addon-modules
doins htdocs/mysqltool.conf
fowners apache.apache /etc/apache/conf/addon-modules/mysqltool.conf
fperms 0600 /etc/apache/conf/addon-modules/mysqltool.conf
# now fix its location in the main cgi..
cp ${D}${APACHE_ROOT}/mysqltool/index.cgi \
${D}${APACHE_ROOT}/mysqltool/index.cgi.orig
sed -e "s:^\(require\).*:\1 '/etc/apache/conf/addon-modules/mysqltool.conf';:" \
${D}${APACHE_ROOT}/mysqltool/index.cgi.orig > \
${D}${APACHE_ROOT}/mysqltool/index.cgi
rm ${D}${APACHE_ROOT}/mysqltool/index.cgi.orig
}
|