blob: 8bd522cc78b809a75bef3800cd69fa65cb0e24d7 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_depends/mod_depends-0.7.0_p200702041.ebuild,v 1.2 2007/09/23 16:00:47 nixnut Exp $
inherit eutils apache-module
DESCRIPTION="An apache helper module for handling dependencies properly."
SRC_URI="http://upstream.rm-rf.in/${PN}/${P}.tar.bz2"
HOMEPAGE="http://www.outoforder.cc/projects/apache/mod_depends/"
SLOT="0"
LICENSE="Apache-2.0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
APACHE2_MOD_CONF="0.7/09_${PN}"
APACHE2_MOD_DEFINE="DEPENDS"
need_apache2
src_compile() {
econf --with-apxs="${APXS2}" || die "configure failed"
emake || die "make failed"
}
src_install() {
AP_INCLUDEDIR=$(${APXS2} -q INCLUDEDIR)
insinto ${AP_INCLUDEDIR}
doins include/mod_depends.h || die
mv -v src/.libs/{lib,}mod_depends.so
apache-module_src_install
}
# vim:ts=4
|