summaryrefslogtreecommitdiff
blob: 56b8ceb6a124f7ad3ead2d9cd622b65f40d3e9d1 (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
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/mod_ftpd/mod_ftpd-0.13.0.ebuild,v 1.4 2005/12/26 06:29:34 josejx Exp $

inherit eutils apache-module

DESCRIPTION="Apache2 protocol module which provides an FTP server"
HOMEPAGE="http://www.outoforder.cc/projects/apache/mod_ftpd/"
SRC_URI="http://www.outoforder.cc/downloads/${PN}/${P}.tar.bz2"

LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~ppc x86"
IUSE="dbi gdbm"

DEPEND="gdbm? ( >=sys-libs/gdbm-1.8.0-r5 )"

APACHE2_EXECFILES="providers/*/.libs/*.so"
APACHE2_MOD_CONF="45_${PN}"
APACHE2_MOD_DEFINE="FTPD"

DOCFILES="docs/manual.html AUTHORS ChangeLog NOTICE README TODO"

need_apache2

src_compile() {
	local providers="default fail"

	use gdbm && providers="dbm ${providers}"
	use dbi && providers="dbi ${providers}"

	econf --with-apxs=${APXS2} \
		--enable-providers="${providers}" || die "econf failed"
	emake || die "emake failed"
}