blob: e4a2318836bc7c730148d7d6e25752eb91f900f1 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Provides a library for logging service-related events"
SRC_URI="https://downloads.sourceforge.net/linux-diag/${P}.tar.gz"
HOMEPAGE="http://linux-diag.sourceforge.net/servicelog/"
SLOT="0"
LICENSE="LGPL-2.1+"
KEYWORDS="ppc ppc64"
IUSE="static-libs"
RESTRICT="test" # bug 801235
DEPEND="
dev-db/sqlite:=
sys-libs/librtas
"
RDEPEND="
${DEPEND}
virtual/logger
"
DOCS=( ChangeLog )
src_configure() {
econf $(use_enable static-libs static)
}
src_install() {
default
find "${D}" -name '*.la' -delete || die
}
|