diff options
author | Don Seiler <rizzo@gentoo.org> | 2003-07-16 19:27:47 +0000 |
---|---|---|
committer | Don Seiler <rizzo@gentoo.org> | 2003-07-16 19:27:47 +0000 |
commit | cc201178753ffef6f9ddd4b999d432c5e93b247f (patch) | |
tree | 8626bceef6d6ed0674b4a385cbe318a3b5f9701c /net-p2p/zuul | |
parent | fixed bug 24306 (diff) | |
download | gentoo-2-cc201178753ffef6f9ddd4b999d432c5e93b247f.tar.gz gentoo-2-cc201178753ffef6f9ddd4b999d432c5e93b247f.tar.bz2 gentoo-2-cc201178753ffef6f9ddd4b999d432c5e93b247f.zip |
Initial import
Diffstat (limited to 'net-p2p/zuul')
-rw-r--r-- | net-p2p/zuul/ChangeLog | 9 | ||||
-rw-r--r-- | net-p2p/zuul/Manifest | 3 | ||||
-rw-r--r-- | net-p2p/zuul/files/digest-zuul-1.0.0 | 1 | ||||
-rw-r--r-- | net-p2p/zuul/zuul-1.0.0.ebuild | 51 |
4 files changed, 64 insertions, 0 deletions
diff --git a/net-p2p/zuul/ChangeLog b/net-p2p/zuul/ChangeLog new file mode 100644 index 000000000000..251c0f9995c8 --- /dev/null +++ b/net-p2p/zuul/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for net-p2p/zuul +# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header $ + +*zuul-1.0.0 (16 Jul 2003) + + 16 Jul 2003; Don Seiler <rizzo@gentoo.org>; zuul-1.0.0.ebuild: + Initial import. Submitted by me + diff --git a/net-p2p/zuul/Manifest b/net-p2p/zuul/Manifest new file mode 100644 index 000000000000..8e5a383cbd94 --- /dev/null +++ b/net-p2p/zuul/Manifest @@ -0,0 +1,3 @@ +MD5 a5be004b07960f8fe456220dbf022309 zuul-1.0.0.ebuild 1358 +MD5 0c45fd223edb3d1b63045143dad0ed13 ChangeLog 248 +MD5 79aebd3adca669a7baa793ff03748417 files/digest-zuul-1.0.0 61 diff --git a/net-p2p/zuul/files/digest-zuul-1.0.0 b/net-p2p/zuul/files/digest-zuul-1.0.0 new file mode 100644 index 000000000000..7d40b85c2ebc --- /dev/null +++ b/net-p2p/zuul/files/digest-zuul-1.0.0 @@ -0,0 +1 @@ +MD5 23ea0e3761559bf2340493b7c668ebe5 zuul-1.0.0.tar.gz 26771 diff --git a/net-p2p/zuul/zuul-1.0.0.ebuild b/net-p2p/zuul/zuul-1.0.0.ebuild new file mode 100644 index 000000000000..550a93c3fc58 --- /dev/null +++ b/net-p2p/zuul/zuul-1.0.0.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header $ + +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 ~sparc ~alpha" +IUSE="" +RDEPEND="virtual/php + >=net-p2p/mldonkey-2.5" +DEPEND="" + +S="${WORKDIR}/${PN}-${MY_PV}" + +HTTPD_ROOT="`grep '^DocumentRoot' /etc/apache/conf/apache.conf | cut -d\ -f2`" +[ -z "${HTTPD_ROOT}" ] && HTTPD_ROOT="`grep '^DocumentRoot' /etc/apache2/conf/apache.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 +} |