summaryrefslogtreecommitdiff
blob: a6ce57cb704e63c31c6680c2421b8abcdfc76d3e (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
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/zuul/zuul-1.1.2.ebuild,v 1.2 2004/02/23 13:05:17 mr_bones_ Exp $

HOSTNAME=`hostname`
DESCRIPTION="Zuul is yet another PHP front-end for mldonkey. It will allow full access to all the features of mldonkey including starting/viewing downloads, viewing uploads, viewing servers, and setting all the options."
HOMEPAGE="http://zuul.sourceforge.net"

# Handle RC versions
MY_PV="${PV/_/-}"
SRC_URI="mirror://sourceforge/zuul/${PN}-${MY_PV}.tar.gz"

SLOT="0"

LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~alpha"
IUSE=""
RDEPEND="virtual/php
		>=net-p2p/mldonkey-2.5"
DEPEND=""

S="${WORKDIR}/${PN}-${MY_PV}"

HTTPD_ROOT="`grep -s '^DocumentRoot' /etc/apache/conf/apache.conf | cut -d\  -f2`"
[ -z "${HTTPD_ROOT}" ] && HTTPD_ROOT="`grep -s '^DocumentRoot' /etc/apache2/conf/apache2.conf | cut -d\  -f2`"
[ -z "${HTTPD_ROOT}" ] && HTTPD_ROOT="/home/httpd/htdocs"
HTTPD_USER="apache"
HTTPD_GROUP="apache"


src_compile() {
	echo "Nothing to compile"
}

src_install() {
	cd ${S}
	dodir ${HTTPD_ROOT}/zuul
	cp -r * ${D}/${HTTPD_ROOT}/zuul
}

pkg_postinst() {
	einfo
	einfo "Installation complete."
	einfo
	einfo "You need to configure zuul by editing"
	einfo "${HTTPD_ROOT}/zuul/conf/config.php and"
	einfo "${HTTPD_ROOT}/zuul/bin/startup.sh."
	einfo
	einfo "http://$HOSTNAME/zuul"
	einfo
}