diff options
author | Heinrich Wendel <lanius@gentoo.org> | 2003-10-24 16:10:43 +0000 |
---|---|---|
committer | Heinrich Wendel <lanius@gentoo.org> | 2003-10-24 16:10:43 +0000 |
commit | c500947caf8f52f3398b4e67bcfe311afc50220c (patch) | |
tree | 53b2b37c841d95e00adfa9517e3fedb50e8aa69b /net-misc/hlfl/hlfl-0.60.1.ebuild | |
parent | Version bumped. (diff) | |
download | historical-c500947caf8f52f3398b4e67bcfe311afc50220c.tar.gz historical-c500947caf8f52f3398b4e67bcfe311afc50220c.tar.bz2 historical-c500947caf8f52f3398b4e67bcfe311afc50220c.zip |
fix
Diffstat (limited to 'net-misc/hlfl/hlfl-0.60.1.ebuild')
-rw-r--r-- | net-misc/hlfl/hlfl-0.60.1.ebuild | 21 |
1 files changed, 13 insertions, 8 deletions
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 } |