summaryrefslogtreecommitdiff
blob: e3fa8796ba40787c54162cb972255eb86d4418c2 (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
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit autotools flag-o-matic systemd toolchain-funcs

DESCRIPTION="Standard log daemons"
HOMEPAGE="https://github.com/troglobit/sysklogd"
SRC_URI="https://github.com/troglobit/sysklogd/releases/download/v$(ver_cut 1-2)/${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE="klogd logrotate systemd"
RESTRICT="test"

DEPEND=""
RDEPEND=""

DOCS=( ChangeLog.md README.md )

PATCHES=(
	${FILESDIR}/${PN}-2.0-optional_logger.patch
)

pkg_setup() {
	append-lfs-flags
	tc-export CC
}

src_prepare() {
	default
	eautoreconf
}

src_configure() {
	local myeconfargs=(
		# we have logger from sys-apps/util-linux
		#--without-logger
		$(use_with klogd)
		$(use_with systemd systemd $(systemd_get_systemunitdir))
	)
	econf "${myeconfargs[@]}"
}

src_install() {
	default

	insinto /etc
	doins syslog.conf
	keepdir /etc/syslog.d

	find "${ED}" -type f \( -name "*.a" -o -name "*.la" \) -delete || die

	newinitd "${FILESDIR}"/sysklogd.rc8 sysklogd
	newconfd "${FILESDIR}"/sysklogd.confd sysklogd
}