summaryrefslogtreecommitdiff
blob: 0c872ec09c68560c3cdec00a75e52af6d04de0ec (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit eutils

DESCRIPTION="an authenticating gateway"
HOMEPAGE="http://www.nufw.org/"
SRC_URI="http://www.nufw.org/download/${PN}/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="pam_nuauth pic prelude mysql postgres pam ldap gdbm ident unicode doc
debug"

DEPEND=">=dev-libs/glib-2
	net-firewall/iptables
	>=net-libs/gnutls-1.1
	dev-libs/libgcrypt
	>=dev-libs/cyrus-sasl-2
	pam_auth? ( sys-libs/pam )
	mysql? ( dev-db/mysql )
	postgres? ( dev-db/postgresql )
	ldap? ( >=net-nds/openldap-2 )
	gdbm? ( sys-libs/gdbm )
	ident? ( net-libs/libident )"
RDEPEND=""

src_unpack() {
	unpack ${A}
	cd "${S}"

	epatch "${FILESDIR}/${P}-configure.patch"
}

src_compile() {
	econf \
		$(use_enable pam_nuauth pam-nuauth) \
		$(use_with pic) \
		$(use_with prelude prelude-log) \
		$(use_with mysql mysql-log) \
		$(use_with postgres pgsql-log) \
		$(use_with pam system-auth) \
		$(use_with ldap) \
		$(use_with gdbm) \
		$(use_with indent) \
		$(use_with unicode utf8) \
		$(use_with debug) \
		--sysconfdir="/etc/nufw" \
		--localstatedir="/var" \
		|| die "econf failed"
	emake || die "emake failed"
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"

	newinitd ${FILESDIR}/nufw-init.d nufw
	newconfd ${FILESDIR}/nufw-conf.d nufw

	newinitd ${FILESDIR}/nuauth-init.d nuauth
	newconfd ${FILESDIR}/nuauth-conf.d nuauth

	insinto /etc/nufw
	doins conf/nuauth.conf
	keepdir /var/run/nuauth

	dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
	if use doc; then
		docinto doc
		dodoc doc/*
		docinto doc/modules
		dodoc doc/modules/*
		docinto scripts
		dodoc scripts/*
		docinto conf
		dodoc conf/*
	fi
}