diff options
author | Sascha Schwabbauer <cybersystem@gentoo.org> | 2003-04-05 19:20:22 +0000 |
---|---|---|
committer | Sascha Schwabbauer <cybersystem@gentoo.org> | 2003-04-05 19:20:22 +0000 |
commit | 67a4efc65ac77ff1bf85080dd1d39cafca95c7a5 (patch) | |
tree | 512198bd0a26ce2fe7072bd69494e9b5af17d47c /net-firewall | |
parent | fixed digest (diff) | |
download | historical-67a4efc65ac77ff1bf85080dd1d39cafca95c7a5.tar.gz historical-67a4efc65ac77ff1bf85080dd1d39cafca95c7a5.tar.bz2 historical-67a4efc65ac77ff1bf85080dd1d39cafca95c7a5.zip |
new ebuild.. see bug #18808
Diffstat (limited to 'net-firewall')
-rw-r--r-- | net-firewall/firehol/ChangeLog | 10 | ||||
-rw-r--r-- | net-firewall/firehol/files/digest-firehol-1.91 | 1 | ||||
-rw-r--r-- | net-firewall/firehol/firehol-1.91.ebuild | 34 |
3 files changed, 45 insertions, 0 deletions
diff --git a/net-firewall/firehol/ChangeLog b/net-firewall/firehol/ChangeLog new file mode 100644 index 000000000000..a4f1bbc836d3 --- /dev/null +++ b/net-firewall/firehol/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for net-firewall/firehol +# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-firewall/firehol/ChangeLog,v 1.1 2003/04/05 19:20:22 cybersystem Exp $ + +*firehol-1.91 (05 April 2003) + + 05 April 2003; Sascha Schwabbauer <cybersystem@gentoo.org> ChangeLog, firehol-1.91.ebuild, files/digest-firehol-1.91 : + + Initial commit, made by Maik Schreiber <blizzy@blizzy.de> in bug #18808 + diff --git a/net-firewall/firehol/files/digest-firehol-1.91 b/net-firewall/firehol/files/digest-firehol-1.91 new file mode 100644 index 000000000000..31bffc7d9124 --- /dev/null +++ b/net-firewall/firehol/files/digest-firehol-1.91 @@ -0,0 +1 @@ +MD5 378d573523433e5245dd17d919bab656 firehol-1.91.tar.bz2 72500 diff --git a/net-firewall/firehol/firehol-1.91.ebuild b/net-firewall/firehol/firehol-1.91.ebuild new file mode 100644 index 000000000000..05c054faa256 --- /dev/null +++ b/net-firewall/firehol/firehol-1.91.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-firewall/firehol/firehol-1.91.ebuild,v 1.1 2003/04/05 19:20:22 cybersystem Exp $ + +DESCRIPTION="iptables firewall generator" +HOMEPAGE="http://firehol.sourceforge.net" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" + +RDEPEND="net-firewall/iptables" + +src_compile() { + mv firehol.sh firehol.sh.orig + sed <firehol.sh.orig >firehol.sh \ + -e 's|/etc/firehol.conf|/etc/firehol/firehol.conf|' +} + +src_install() { + newsbin firehol.sh firehol + dodir /etc/firehol /etc/firehol/examples + insinto /etc/firehol/examples + doins examples/* + dodoc ChangeLog COPYING README TODO + dohtml doc/*.html doc/*.css + docinto scripts + dodoc get-iana.sh doc/create_services.sh +} + +pkg_postinst() { + einfo "The default path to firehol's configuration file is /etc/firehol/firehol.conf" + einfo "See /etc/firehol/examples for configuration examples." +} |