summaryrefslogtreecommitdiff
blob: 1264d04dd5489fd9078a33eb0e9825a44c78be88 (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
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

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="${APXS}" || die "configure failed"
	emake || die "make failed"
}

src_install() {
	AP_INCLUDEDIR=$(${APXS} -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