diff options
author | Benedikt Boehm <hollow@gentoo.org> | 2005-02-14 17:14:50 +0000 |
---|---|---|
committer | Benedikt Boehm <hollow@gentoo.org> | 2005-02-14 17:14:50 +0000 |
commit | 0cdeaaea30c6e078cdb623f18346d72f6bde49ce (patch) | |
tree | 2618c32fe23c2f0e3db9d45b6583fd49011d37f8 /net-www/mod_bw/mod_bw-0.5_rc1.ebuild | |
parent | ~amd64 (diff) | |
download | historical-0cdeaaea30c6e078cdb623f18346d72f6bde49ce.tar.gz historical-0cdeaaea30c6e078cdb623f18346d72f6bde49ce.tar.bz2 historical-0cdeaaea30c6e078cdb623f18346d72f6bde49ce.zip |
initial ebuild for mod_bw
Package-Manager: portage-2.0.51.16
Diffstat (limited to 'net-www/mod_bw/mod_bw-0.5_rc1.ebuild')
-rw-r--r-- | net-www/mod_bw/mod_bw-0.5_rc1.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/net-www/mod_bw/mod_bw-0.5_rc1.ebuild b/net-www/mod_bw/mod_bw-0.5_rc1.ebuild new file mode 100644 index 000000000000..78ab8b5973f7 --- /dev/null +++ b/net-www/mod_bw/mod_bw-0.5_rc1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-www/mod_bw/mod_bw-0.5_rc1.ebuild,v 1.1 2005/02/14 17:14:50 hollow Exp $ + +inherit eutils apache-module + +MYP="bw_mod-${PV}" + +DESCRIPTION="Bandwidth Management Module for Apache 2.0" +HOMEPAGE="http://www.ivn.cl/apache/" +SRC_URI="http://www.ivn.cl/apache/${MYP/_rc/rc}.tgz" + +KEYWORDS="~x86" +DEPEND="" +LICENSE="Apache-1.1" +SLOT="1" +IUSE="" + +APXS2_ARGS="-c ${PN}.c" +APACHE2_MOD_CONF="11_${PN}" +APACHE2_MOD_DEFINE="BW" + +need_apache2 + +S=${WORKDIR}/${MYP/_rc*} + +src_unpack() { + unpack ${A} || die "unpack failed" + mv ${S}/{${MYP/_rc/rc}.c,${PN}.c} || die "cannot move source file" +} |