blob: 30ea3b2eab704308bf2bc50a16372b0d68b16d0a (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit git-r3 systemd tmpfiles toolchain-funcs
DESCRIPTION="Policy routing daemon with failover and load-balancing"
HOMEPAGE="https://github.com/ncopa/pingu"
SRC_URI=""
EGIT_REPO_URI="https://github.com/ncopa/${PN}.git"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS=""
IUSE="debug doc"
RDEPEND="dev-libs/libev:="
DEPEND="${RDEPEND}
sys-kernel/linux-headers
virtual/pkgconfig
doc? ( app-text/asciidoc )"
# Fix QA with install into path /run/pingu must be created at runtime
PATCHES=( "${FILESDIR}"/"${PN}"-1.5-makefile.patch )
src_configure() {
./configure "$(use_enable debug)" "$(use_enable doc)" \
--prefix=/usr || die "configure failed"
}
src_compile() {
emake CC="$(tc-getCC)"
}
src_install() {
default
newtmpfiles "${FILESDIR}"/pingu.tmpfile pingu.conf
newinitd "${FILESDIR}"/pingu.initd pingu
newconfd "${FILESDIR}"/pingu.confd pingu
systemd_dounit "${FILESDIR}"/pingu.service
keepdir /var/lib/pingu
insinto /etc/pingu
newins pingu.conf pingu.conf.example
}
pkg_postinst() {
tmpfiles_process pingu.conf
}
|