diff options
author | Thomas Andrejak <thomas.andrejak@gmail.com> | 2019-11-07 02:39:20 +0100 |
---|---|---|
committer | Göktürk Yüksek <gokturk@gentoo.org> | 2019-12-24 16:54:37 -0500 |
commit | ac8111e4b45dd4d4b2aca7c1fc05bb2daa4fa8be (patch) | |
tree | b88e7d26fbfd0524900841833041fdee484fa4f9 /net-analyzer/prelude-lml/prelude-lml-5.1.0.ebuild | |
parent | net-analyzer/prelude-correlator: Bump version 5.1 (diff) | |
download | gentoo-ac8111e4b45dd4d4b2aca7c1fc05bb2daa4fa8be.tar.gz gentoo-ac8111e4b45dd4d4b2aca7c1fc05bb2daa4fa8be.tar.bz2 gentoo-ac8111e4b45dd4d4b2aca7c1fc05bb2daa4fa8be.zip |
net-analyzer/prelude-lml: Bump version 5.1
Signed-off-by: Göktürk Yüksek <gokturk@gentoo.org>
Diffstat (limited to 'net-analyzer/prelude-lml/prelude-lml-5.1.0.ebuild')
-rw-r--r-- | net-analyzer/prelude-lml/prelude-lml-5.1.0.ebuild | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/net-analyzer/prelude-lml/prelude-lml-5.1.0.ebuild b/net-analyzer/prelude-lml/prelude-lml-5.1.0.ebuild new file mode 100644 index 000000000000..2d2d40b4db58 --- /dev/null +++ b/net-analyzer/prelude-lml/prelude-lml-5.1.0.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools systemd + +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.1.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} + + find "${D}" -name '*.la' -delete || die + + systemd_dounit "${FILESDIR}/${PN}.service" + systemd_newtmpfilesd "${FILESDIR}/${PN}.run" "${PN}.conf" + + newinitd "${FILESDIR}/${PN}.initd" "${PN}" +} |