blob: abc12a60d5782e3c53972f30f0c46227f823e480 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=0
IUSE=""
DESCRIPTION="High Level Firewall Language"
SRC_URI="ftp://ftp.hlfl.org/pub/hlfl/${P}.tar.gz"
HOMEPAGE="http://www.hlfl.org"
LICENSE="GPL-2"
KEYWORDS="~ppc sparc x86"
SLOT="0"
DEPEND=""
src_compile() {
sed -i -e 's:${datadir}/hlfl:${datadir}:' configure
econf --datadir=/usr/share/doc/${PF}
emake || die
}
src_install () {
dobin src/hlfl
doman doc/hlfl.1
insinto /usr/share/doc/${PF}
doins doc/services.hlfl
dodoc AUTHORS ChangeLog INSTALL NEWS README THANKS \
TODO doc/RoadMap doc/sample_1.hlfl doc/sample_2.hlfl \
doc/test.hlfl doc/syntax.txt doc/sample_3.hlfl doc/CodingStyle
}
|