public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/ulogd/
Date: Thu,  3 Nov 2022 06:15:16 +0000 (UTC)	[thread overview]
Message-ID: <1667456041.ddca10e3bb3d6aa8c35b846a0ff1c4d0f08b0c0e.sam@gentoo> (raw)

commit:     ddca10e3bb3d6aa8c35b846a0ff1c4d0f08b0c0e
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Nov  3 05:39:44 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Nov  3 06:14:01 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddca10e3

app-admin/ulogd: add 2.0.8

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-admin/ulogd/Manifest           |   1 +
 app-admin/ulogd/ulogd-2.0.8.ebuild | 141 +++++++++++++++++++++++++++++++++++++
 2 files changed, 142 insertions(+)

diff --git a/app-admin/ulogd/Manifest b/app-admin/ulogd/Manifest
index 04c8ace89f14..05b3b354d9ef 100644
--- a/app-admin/ulogd/Manifest
+++ b/app-admin/ulogd/Manifest
@@ -1 +1,2 @@
 DIST ulogd-2.0.7.tar.bz2 394573 BLAKE2B bec028a3b35038a8cc0f3f8b81b3e19addb66fce09e4ea0f3b2cd29b20cdb28025a576badd0765d9bb15f9d097799b6f55ff45058f8a838daa836c3fe878eef0 SHA512 1ad12bcf91bebe8bf8580de38693318cdabd17146f1f65acf714334885cf13adf5f783abdf2dd67474ef12f82d2cfb84dd4859439bc7af10a0df58e4c7e48b09
+DIST ulogd-2.0.8.tar.bz2 435434 BLAKE2B 8922a722d635b24dd8bed9bff9e96cbbdf1ac790defd3b205b6867f32d7abcd6dff1c37097305ed3ed627d66da1bdb1f7aa2a9fe7e29a2b2104959a986207478 SHA512 9f99f6f35bad5da4559d788dc3ba3dae17d4ae972737cae3313ecf68f08eaf5f55514fce6f30503437e4158fd30a06438b9249d5d20f6343964cbf690f87309d

diff --git a/app-admin/ulogd/ulogd-2.0.8.ebuild b/app-admin/ulogd/ulogd-2.0.8.ebuild
new file mode 100644
index 000000000000..6f0d9e6d4e89
--- /dev/null
+++ b/app-admin/ulogd/ulogd-2.0.8.ebuild
@@ -0,0 +1,141 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit flag-o-matic linux-info readme.gentoo-r1 systemd
+
+DESCRIPTION="A userspace logging daemon for netfilter/iptables related logging"
+HOMEPAGE="https://netfilter.org/projects/ulogd/index.html"
+SRC_URI="https://www.netfilter.org/projects/ulogd/files/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ia64 ~ppc ~x86"
+IUSE="dbi doc json mysql nfacct +nfct +nflog pcap postgres selinux sqlite ulog"
+
+DEPEND="
+	|| ( net-firewall/iptables net-firewall/nftables )
+	>=net-libs/libnfnetlink-1.0.1
+	dbi? ( dev-db/libdbi )
+	json? ( dev-libs/jansson:= )
+	nfacct? (
+		>=net-libs/libmnl-1.0.4
+		>=net-libs/libnetfilter_acct-1.0.3
+	)
+	nfct? ( >=net-libs/libnetfilter_conntrack-1.0.6 )
+	nflog? ( >=net-libs/libnetfilter_log-1.0.1 )
+	mysql? ( dev-db/mysql-connector-c:= )
+	pcap? ( net-libs/libpcap )
+	postgres? ( dev-db/postgresql:= )
+	sqlite? ( dev-db/sqlite:3 )
+"
+RDEPEND="
+	${DEPEND}
+	acct-user/ulogd
+	acct-group/ulogd
+	selinux? ( sec-policy/selinux-ulogd )
+"
+BDEPEND="
+	virtual/pkgconfig
+	doc? (
+		app-text/linuxdoc-tools
+		app-text/texlive-core
+		dev-texlive/texlive-fontsrecommended
+		virtual/latex-base
+	)
+"
+
+DISABLE_AUTOFORMATTING=1
+DOC_CONTENTS="
+	You must have at least one logging stack enabled to make ulogd work.
+	Please edit the example configuration located at '${EPREFIX}/etc/ulogd.conf'.
+"
+
+pkg_setup() {
+	linux-info_pkg_setup
+
+	if use nfacct && kernel_is lt 3 3 0; then
+		ewarn "NFACCT input plugin requires a kernel >= 3.3."
+	fi
+
+	if use ulog && kernel_is ge 3 17 0; then
+		ewarn "ULOG target has been removed in the 3.17 kernel release."
+		ewarn "Consider enabling NFACCT, NFCT, or NFLOG support instead."
+	fi
+}
+
+src_prepare() {
+	default
+
+	# Change default settings to:
+	# - keep log files in /var/log/ulogd instead of /var/log;
+	# - create sockets in /run instead of /tmp.
+	sed -i \
+		-e "s|var/log|var/log/${PN}|g" \
+		-e 's|tmp|run|g' \
+		ulogd.conf.in || die
+}
+
+src_configure() {
+	append-lfs-flags
+
+	local myeconfargs=(
+		$(use_enable dbi)
+		$(use_enable json)
+		$(use_enable nfacct)
+		$(use_enable nfct)
+		$(use_enable nflog)
+		$(use_enable mysql)
+		$(use_enable pcap)
+		$(use_enable postgres pgsql)
+		$(use_enable sqlite sqlite3)
+		$(use_enable ulog)
+	)
+
+	econf "${myeconfargs[@]}"
+}
+
+src_compile() {
+	default
+
+	if use doc; then
+		# Prevent access violations from bitmap font files generation.
+		export VARTEXFONTS="${T}/fonts"
+		emake -C doc
+	fi
+}
+
+src_install() {
+	use doc && HTML_DOCS=( doc/${PN}.html )
+
+	default
+
+	find "${ED}" -name '*.la' -delete || die
+
+	readme.gentoo_create_doc
+	doman ${PN}.8
+
+	use doc && dodoc doc/${PN}.{dvi,ps,txt}
+	use mysql && dodoc doc/mysql-*.sql
+	use postgres && dodoc doc/pgsql-*.sql
+	use sqlite && dodoc doc/sqlite3.table
+
+	insinto /etc
+	doins ${PN}.conf
+	fowners root:ulogd /etc/${PN}.conf
+	fperms 640 /etc/${PN}.conf
+
+	newinitd "${FILESDIR}/${PN}.init" ${PN}
+	systemd_dounit "${FILESDIR}/${PN}.service"
+
+	insinto /etc/logrotate.d
+	newins "${FILESDIR}/${PN}.logrotate" ${PN}
+
+	diropts -o ulogd -g ulogd
+	keepdir /var/log/ulogd
+}
+
+pkg_postinst() {
+	readme.gentoo_print_elog
+}


             reply	other threads:[~2022-11-03  6:15 UTC|newest]

Thread overview: 45+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-03  6:15 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-11-04  0:07 [gentoo-commits] repo/gentoo:master commit in: app-admin/ulogd/ Sam James
2021-09-25 19:08 Sam James
2021-05-03 20:59 Andreas Sturmlechner
2021-04-26 19:22 Sam James
2021-04-26 19:15 Sam James
2021-04-26 19:11 Sam James
2021-03-26 15:55 Sam James
2021-03-26 15:55 Sam James
2018-10-05 21:39 Andreas Sturmlechner
2018-10-05 21:39 Andreas Sturmlechner
2018-07-28  8:53 Michał Górny
2018-06-27 21:54 Sergei Trofimovich
2018-06-25 23:20 Thomas Deutschmann
2018-06-25  9:53 Jason Zaman
2018-04-30  0:02 Anthony G. Basile
2017-01-04 17:46 David Seifert
2017-01-02  9:59 Patrice Clement
2016-12-21 10:30 Thomas Deutschmann
2016-12-21  9:57 Tobias Klausmann
2016-10-18 12:31 Patrice Clement
2016-10-18 12:31 Patrice Clement
2016-08-30 16:29 Patrice Clement
2016-08-30 16:29 Patrice Clement
2016-06-27  0:52 Göktürk Yüksek
2016-06-27  0:52 Göktürk Yüksek
2016-06-27  0:52 Göktürk Yüksek
2016-05-09 12:22 Ian Delaney
2016-04-16  8:40 Patrice Clement
2016-04-04  9:00 Ian Delaney
2016-03-10  8:12 Patrice Clement
2016-03-05 11:39 Patrice Clement
2016-01-23 17:50 Patrice Clement
2015-12-26 10:36 Agostino Sarubbo
2015-12-25 15:13 Agostino Sarubbo
2015-11-26 10:07 Patrice Clement
2015-11-23 15:18 Patrice Clement
2015-11-06  7:21 Michał Górny
2015-10-31  9:36 Ian Delaney
2015-09-28  7:55 Patrice Clement
2015-09-27 18:10 Patrice Clement
2015-09-27 18:10 Patrice Clement
2015-09-25 14:13 Agostino Sarubbo
2015-09-24 10:36 Agostino Sarubbo
2015-09-09 22:56 Manuel Rüger

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1667456041.ddca10e3bb3d6aa8c35b846a0ff1c4d0f08b0c0e.sam@gentoo \
    --to=sam@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox