summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeinrich Wendel <lanius@gentoo.org>2003-10-24 16:10:43 +0000
committerHeinrich Wendel <lanius@gentoo.org>2003-10-24 16:10:43 +0000
commitc500947caf8f52f3398b4e67bcfe311afc50220c (patch)
tree53b2b37c841d95e00adfa9517e3fedb50e8aa69b /net-misc/hlfl
parentVersion bumped. (diff)
downloadhistorical-c500947caf8f52f3398b4e67bcfe311afc50220c.tar.gz
historical-c500947caf8f52f3398b4e67bcfe311afc50220c.tar.bz2
historical-c500947caf8f52f3398b4e67bcfe311afc50220c.zip
fix
Diffstat (limited to 'net-misc/hlfl')
-rw-r--r--net-misc/hlfl/ChangeLog5
-rw-r--r--net-misc/hlfl/Manifest4
-rw-r--r--net-misc/hlfl/hlfl-0.60.1.ebuild21
3 files changed, 19 insertions, 11 deletions
diff --git a/net-misc/hlfl/ChangeLog b/net-misc/hlfl/ChangeLog
index 002330edb59b..ccfbccd8915a 100644
--- a/net-misc/hlfl/ChangeLog
+++ b/net-misc/hlfl/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/hlfl
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/hlfl/ChangeLog,v 1.6 2003/10/11 15:52:04 lanius Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/hlfl/ChangeLog,v 1.7 2003/10/24 16:10:38 lanius Exp $
+
+ 24 Oct 2003; Heinrich Wendel <lanius@gentoo.org> hlfl-0.60.1.ebuild:
+ fixed too many cleanups ;D
*hlfl-0.60.1 (11 Oct 2003)
diff --git a/net-misc/hlfl/Manifest b/net-misc/hlfl/Manifest
index dc9827a3236c..a35f659a93b1 100644
--- a/net-misc/hlfl/Manifest
+++ b/net-misc/hlfl/Manifest
@@ -1,5 +1,5 @@
-MD5 67a8dc2f46d4d5b6437aca0bed8899dd ChangeLog 657
+MD5 b00a853394ecb09d0048f2b4d3b0d277 ChangeLog 758
MD5 8c97bec3073684ea4541c336cb15ddbf hlfl-0.60.0.ebuild 997
-MD5 0794bbc4fa1af73a558212510adeb676 hlfl-0.60.1.ebuild 679
+MD5 75692e383dcb3e3147361cc2e2102d63 hlfl-0.60.1.ebuild 795
MD5 85c7bdf892da0766dbbd2a8dbbfd3441 files/digest-hlfl-0.60.0 62
MD5 ea807ce19430965d2608a6b01cbbe3b4 files/digest-hlfl-0.60.1 63
diff --git a/net-misc/hlfl/hlfl-0.60.1.ebuild b/net-misc/hlfl/hlfl-0.60.1.ebuild
index 78b57e82019d..13e9b9e6b146 100644
--- a/net-misc/hlfl/hlfl-0.60.1.ebuild
+++ b/net-misc/hlfl/hlfl-0.60.1.ebuild
@@ -1,8 +1,7 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/hlfl/hlfl-0.60.1.ebuild,v 1.1 2003/10/11 15:52:04 lanius Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/hlfl/hlfl-0.60.1.ebuild,v 1.2 2003/10/24 16:10:38 lanius Exp $
-S=${WORKDIR}/${P}
DESCRIPTION="High Level Firewall Language"
SRC_URI="ftp://ftp.hlfl.org/pub/hlfl/${P}.tar.gz"
HOMEPAGE="http://www.hlfl.org"
@@ -12,12 +11,18 @@ SLOT="0"
DEPEND="virtual/glibc"
+src_compile() {
+ econf --datadir=/usr/share/doc/${P} || die "./configure failed"
+ emake || die
+}
+
src_install () {
- einstall
+ dobin src/hlfl
+ doman doc/hlfl.1
+ insinto /usr/share/doc/${P}
+ doins doc/services.hlfl /usr/share/doc/${P}
- dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README THANKS TODO
- cd doc
- dodoc CodingStyle sample_1.hlfl sample_2.hlfl sample_3.hlfl \
- services.hlfl syntax.txt test.hlfl RoadMap TODO
- rm -f ${D}/usr/share/*
+ dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README THANKS \
+ TODO doc/RoadMap doc/sample_1.hlfl doc/sample_2.hlfl \
+ doc/test.hlfl doc/syntax.txt
}