You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.1 KiB
65 lines
1.1 KiB
# 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"
|
|
}
|