diff options
author | Don Seiler <rizzo@gentoo.org> | 2003-11-19 00:24:25 +0000 |
---|---|---|
committer | Don Seiler <rizzo@gentoo.org> | 2003-11-19 00:24:25 +0000 |
commit | ba007f15b2a2dbd9adcc72df09bc8303ad7651dd (patch) | |
tree | c788c8f5672eb5d481b89be496ca40de7c94743b /net-p2p/zuul/zuul-1.2.0.ebuild | |
parent | Version bump (diff) | |
download | historical-ba007f15b2a2dbd9adcc72df09bc8303ad7651dd.tar.gz historical-ba007f15b2a2dbd9adcc72df09bc8303ad7651dd.tar.bz2 historical-ba007f15b2a2dbd9adcc72df09bc8303ad7651dd.zip |
Version bump
Diffstat (limited to 'net-p2p/zuul/zuul-1.2.0.ebuild')
-rw-r--r-- | net-p2p/zuul/zuul-1.2.0.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/net-p2p/zuul/zuul-1.2.0.ebuild b/net-p2p/zuul/zuul-1.2.0.ebuild new file mode 100644 index 000000000000..225655d00e50 --- /dev/null +++ b/net-p2p/zuul/zuul-1.2.0.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# Maintainer: Don Seiler <rizzo@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-p2p/zuul/zuul-1.2.0.ebuild,v 1.1 2003/11/19 00:24:22 rizzo Exp $ + +inherit webapp-apache + +DESCRIPTION="Zuul is yet another PHP front-end for mldonkey." +HOMEPAGE="http://zuul.sourceforge.net" +SRC_URI="mirror://sourceforge/zuul/${P}.tar.gz" +RESTRICT="nomirror" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86 ~ppc ~sparc ~alpha" +DEPEND="" +RDEPEND="virtual/php + >=net-p2p/mldonkey-2.5" +IUSE="" + +webapp-detect || NO_WEBSERVER=1 + +pkg_setup() { + webapp-pkg_setup "${NO_WEBSERVER}" + einfo "Installing for ${WEBAPP_SERVER}" +} + +src_install() { + dodir "${HTTPD_ROOT}/zuul" + cp -a * "${D}/${HTTPD_ROOT}/zuul" + dodoc ${S}/docs/* + + chown -R "${HTTPD_USER}.${HTTPD_GROUP}" "${D}/${HTTPD_ROOT}/zuul" +} + +pkg_postinst() { + einfo + einfo "Installation complete." + einfo + einfo "You may 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 +} |