summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Krier <cedk@gentoo.org>2007-12-23 12:06:56 +0000
committerCédric Krier <cedk@gentoo.org>2007-12-23 12:06:56 +0000
commit41e116ea03bef9a5c8a7f11ba6bf6c36631e32d7 (patch)
tree00822d93603ad16b081afcbc35b68e3bba686bf9 /net-firewall
parentVersion bump (diff)
downloadgentoo-2-41e116ea03bef9a5c8a7f11ba6bf6c36631e32d7.tar.gz
gentoo-2-41e116ea03bef9a5c8a7f11ba6bf6c36631e32d7.tar.bz2
gentoo-2-41e116ea03bef9a5c8a7f11ba6bf6c36631e32d7.zip
Clean old
(Portage version: 2.1.3.19)
Diffstat (limited to 'net-firewall')
-rw-r--r--net-firewall/nufw/ChangeLog5
-rw-r--r--net-firewall/nufw/files/digest-nufw-2.2.73
-rw-r--r--net-firewall/nufw/nufw-2.2.7.ebuild103
3 files changed, 4 insertions, 107 deletions
diff --git a/net-firewall/nufw/ChangeLog b/net-firewall/nufw/ChangeLog
index 32fe8e65a37c..d8906e9918a9 100644
--- a/net-firewall/nufw/ChangeLog
+++ b/net-firewall/nufw/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-firewall/nufw
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/nufw/ChangeLog,v 1.22 2007/12/23 12:05:44 cedk Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-firewall/nufw/ChangeLog,v 1.23 2007/12/23 12:06:56 cedk Exp $
+
+ 23 Dec 2007; Cédric Krier <cedk@gentoo.org> -nufw-2.2.7.ebuild:
+ Clean old
*nufw-2.2.10 (23 Dec 2007)
diff --git a/net-firewall/nufw/files/digest-nufw-2.2.7 b/net-firewall/nufw/files/digest-nufw-2.2.7
deleted file mode 100644
index a4a4173b614b..000000000000
--- a/net-firewall/nufw/files/digest-nufw-2.2.7
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 3f51aac3fe5a03ac2793f43e9376b9c3 nufw-2.2.7.tar.bz2 793735
-RMD160 f80930ddc8979c860106c5505d7712ba1e157250 nufw-2.2.7.tar.bz2 793735
-SHA256 2bd4599b37c726843986d35dbcc72d469cd26e1ae061bca5a99e7fc7ed96577d nufw-2.2.7.tar.bz2 793735
diff --git a/net-firewall/nufw/nufw-2.2.7.ebuild b/net-firewall/nufw/nufw-2.2.7.ebuild
deleted file mode 100644
index ad9987ac8b37..000000000000
--- a/net-firewall/nufw/nufw-2.2.7.ebuild
+++ /dev/null
@@ -1,103 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-firewall/nufw/nufw-2.2.7.ebuild,v 1.2 2007/12/23 11:47:24 cedk Exp $
-
-inherit autotools ssl-cert eutils
-
-DESCRIPTION="An enterprise grade authenticating firewall based on netfilter"
-HOMEPAGE="http://www.nufw.org/"
-SRC_URI="http://www.nufw.org/download/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86"
-IUSE="debug ldap mysql pam pam_nuauth plaintext postgres prelude \
-unicode nfqueue nfconntrack static syslog test"
-
-DEPEND=">=dev-libs/glib-2
- dev-libs/libgcrypt
- >=dev-libs/cyrus-sasl-2
- net-firewall/iptables
- >=net-libs/gnutls-1.1
- ldap? ( >=net-nds/openldap-2 )
- mysql? ( virtual/mysql )
- pam? ( sys-libs/pam )
- pam_nuauth? ( sys-libs/pam )
- postgres? ( dev-db/postgresql )
- nfqueue? ( net-libs/libnfnetlink
- net-libs/libnetfilter_queue )
- nfconntrack? ( net-libs/libnetfilter_conntrack )"
-RDEPEND=${DEPEND}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- sed -i \
- -e 's:^#\(nuauth_tls_key="/etc/nufw/\)nuauth-key.pem:\1nuauth.key:' \
- -e 's:^#\(nuauth_tls_cert="/etc/nufw/\)nuauth-cert.pem:\1nuauth.pem:' \
- conf/nuauth.conf || die "sed failed"
- epatch "$FILESDIR"/${PN}-2.2.6-auth_mysql.patch
- sed -i 's:^gcc.*dummy_client.*:libtool --mode=link gcc -o dummy_client dummy_client.c -I../ ../libnuclient.la || exit;:' \
- src/clients/lib/tests/build_dummy_client.sh || die "sed failed"
-
- # This tests requre inl_tests to be installed. We don't have it now in our
- # tree so we disable them for now... for more information see tests/README
- use test && sed -i "s:\(^TESTS=test_all.py\):#\1:" tests/Makefile.am
-
- eautoreconf
-}
-
-src_compile() {
- econf \
- --with-shared \
- $(use_enable static) \
- $(use_enable pam_nuauth pam-nuauth) \
- $(use_with prelude prelude-log) \
- $(use_with mysql mysql-log) \
- $(use_with mysql mysql-auth) \
- $(use_with postgres pgsql-log) \
- $(use_with syslog syslog-log) \
- $(use_with plaintext plaintext-auth) \
- --with-mark-group \
- $(use_with pam system-auth) \
- $(use_with ldap) \
- $(use_with nfqueue) \
- $(use_with nfconntrack) \
- $(use_with unicode utf8) \
- $(use_enable debug) \
- --sysconfdir="/etc/nufw" \
- --localstatedir="/var" \
- || die "econf failed"
- emake || die "emake failed"
-}
-
-src_test() {
- ewarn "Some tests are skiped! If you wish to run them read tests/README and"
- ewarn "do that manually."
- ebeep 5
- make check
-}
-
-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 NEWS README TODO
- docinto scripts
- dodoc scripts/{clean_conntrack.pl,nuaclgen,nutop,README,ulog_rotate_daily.sh,ulog_rotate_weekly.sh}
- docinto conf
- dodoc conf/*.{nufw,schema,conf,dump,xml}
-}
-
-pkg_postinst() {
- docert nufw nuauth
-}