diff options
author | Cédric Krier <cedk@gentoo.org> | 2007-08-24 18:42:03 +0000 |
---|---|---|
committer | Cédric Krier <cedk@gentoo.org> | 2007-08-24 18:42:03 +0000 |
commit | 1ed210aedd9bb0a7b5cbdaf6c14329d937efb800 (patch) | |
tree | cc065e7c0f15a45df0535eb722749acac3068f4e /net-firewall/nufw | |
parent | Version bump (diff) | |
download | gentoo-2-1ed210aedd9bb0a7b5cbdaf6c14329d937efb800.tar.gz gentoo-2-1ed210aedd9bb0a7b5cbdaf6c14329d937efb800.tar.bz2 gentoo-2-1ed210aedd9bb0a7b5cbdaf6c14329d937efb800.zip |
Remove old ebuild
(Portage version: 2.1.2.11)
Diffstat (limited to 'net-firewall/nufw')
-rw-r--r-- | net-firewall/nufw/ChangeLog | 5 | ||||
-rw-r--r-- | net-firewall/nufw/files/digest-nufw-2.1.1 | 3 | ||||
-rw-r--r-- | net-firewall/nufw/nufw-2.1.1.ebuild | 85 |
3 files changed, 4 insertions, 89 deletions
diff --git a/net-firewall/nufw/ChangeLog b/net-firewall/nufw/ChangeLog index 0d958099717f..b74b7efd8b91 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.13 2007/08/24 18:38:50 cedk Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/nufw/ChangeLog,v 1.14 2007/08/24 18:42:02 cedk Exp $ + + 24 Aug 2007; Cédric Krier <cedk@gentoo.org> -nufw-2.1.1.ebuild: + Remove old ebuild *nufw-2.2.4 (24 Aug 2007) diff --git a/net-firewall/nufw/files/digest-nufw-2.1.1 b/net-firewall/nufw/files/digest-nufw-2.1.1 deleted file mode 100644 index 77c052033079..000000000000 --- a/net-firewall/nufw/files/digest-nufw-2.1.1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 d1f1620955993564e582e780cab166e4 nufw-2.1.1.tar.bz2 728051 -RMD160 45312e0a508aaeebf4f9ddd8112dda22c1865030 nufw-2.1.1.tar.bz2 728051 -SHA256 5b28b09a27f8d71b3b5cd185f3e881afeb91128d7a9854381b86889a3153134c nufw-2.1.1.tar.bz2 728051 diff --git a/net-firewall/nufw/nufw-2.1.1.ebuild b/net-firewall/nufw/nufw-2.1.1.ebuild deleted file mode 100644 index 3088651d5d23..000000000000 --- a/net-firewall/nufw/nufw-2.1.1.ebuild +++ /dev/null @@ -1,85 +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.1.1.ebuild,v 1.2 2007/01/06 15:22:47 cedk Exp $ - -inherit ssl-cert - -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 pic plaintext postgres prelude \ -unicode nfqueue nfconntrack static syslog" - -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-key.pem/nuauth.key/" \ - -e "s/nuauth-cert.pem/nuauth.pem/" \ - conf/nuauth.conf || die "sed failed" -} - -src_compile() { - econf \ - --with-shared \ - $(use_enable static) \ - $(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 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_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 - docert nufw - docert nuauth - keepdir /var/run/nuauth - - dodoc AUTHORS ChangeLog NEWS README TODO - docinto scripts - dodoc scripts/* - docinto conf - dodoc conf/*.{nufw,schema,conf,dump,xml} -} |