blob: 5c1ecfad27b4ed3620fa1f6c0b6920e649a26dc6 (
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python3_{5,6} )
inherit autotools python-r1 user
DESCRIPTION="Generic library for reporting software bugs"
HOMEPAGE="https://github.com/abrt/libreport"
SRC_URI="https://github.com/abrt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="+gtk python"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
COMMON_DEPEND="${PYTHON_DEPS}
app-admin/augeas
>=dev-libs/glib-2.43:2
dev-libs/satyr
dev-libs/json-c:=
dev-libs/libtar
dev-libs/libxml2:2
dev-libs/newt:=
dev-libs/xmlrpc-c:=
net-libs/libproxy:=
net-misc/curl:=[ssl]
sys-apps/dbus
sys-apps/systemd
gtk? ( >=x11-libs/gtk+-3.3.12:3 )
python? ( ${PYTHON_DEPS} )
x11-misc/xdg-utils
"
RDEPEND="${COMMON_DEPEND}"
DEPEND="${COMMON_DEPEND}
app-text/asciidoc
app-text/xmlto
>=dev-util/intltool-0.3.50
>=sys-devel/gettext-0.17
virtual/pkgconfig
"
# Tests require python-meh, which is highly redhat-specific.
RESTRICT="test"
pkg_setup() {
enewgroup abrt
enewuser abrt -1 -1 -1 abrt
}
src_prepare() {
default
./gen-version || die # Needed to be run before autoreconf
eautoreconf
use python && python_copy_sources
}
src_configure() {
local myargs=(
--localstatedir="${EPREFIX}/var"
--without-bugzilla
# Fixes "syntax error in VERSION script" and we aren't supporting Python2 anyway
--without-python2
$(usex python "--with-python3" "--without-python3")
)
if use python; then
python_foreach_impl run_in_build_dir \
econf "${myargs[@]}"
else
econf "${myargs[@]}"
fi
}
src_compile() {
use python && python_foreach_impl run_in_build_dir default
}
src_install() {
use python && python_foreach_impl run_in_build_dir default
# Need to set correct ownership for use by app-admin/abrt
diropts -o abrt -g abrt
keepdir /var/spool/abrt
find "${D}" -name '*.la' -exec rm -f {} + || die
}
|