blob: 554623ae66068e27a4744fef70e6d57d2a5a6c6e (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools systemd tmpfiles
DESCRIPTION="The prelude log analyzer"
HOMEPAGE="https://www.prelude-siem.org"
SRC_URI="https://www.prelude-siem.org/pkg/src/${PV}/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="icu ssl"
RDEPEND="dev-libs/libpcre
>=dev-libs/libprelude-5.2.0
<dev-libs/libprelude-6
icu? ( dev-libs/icu:= )
ssl? ( net-libs/gnutls:= )"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
PATCHES=(
"${FILESDIR}/${PN}-3.1.0-run.patch"
"${FILESDIR}/${PN}-3.0.0-conf.patch"
)
src_prepare() {
default
eautoreconf
}
src_configure() {
local myconf=(
--localstatedir="${EPREFIX}/var"
$(use_with ssl libgnutls-prefix)
)
econf "${myconf[@]}"
}
src_install() {
default
rm -rv "${ED}/run" || die "rm failed"
keepdir /var/${PN}
keepdir /var/spool/prelude/prelude-lml
find "${D}" -name '*.la' -delete || die
systemd_dounit "${FILESDIR}/${PN}.service"
newtmpfiles "${FILESDIR}/${PN}.run" "${PN}.conf"
newinitd "${FILESDIR}/${PN}.initd" "${PN}"
}
pkg_postinst() {
tmpfiles_process "${PN}.conf"
}
|