blob: 031b9a6f4d1474408b7bd03522b77a92e66cba2a (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="5"
PYTHON_COMPAT=( python2_7 )
inherit eutils autotools python-single-r1 toolchain-funcs
DESCRIPTION="Satyr is a collection of low-level algorithms for program failure processing"
HOMEPAGE="https://github.com/abrt/satyr"
SRC_URI="https://fedorahosted.org/released/abrt/satyr-${PV}.tar.xz"
LICENSE="GPL-2+"
SLOT="0"
IUSE=""
KEYWORDS="~amd64 ~x86"
RDEPEND="${PYTHON_DEPS}
app-arch/rpm
>=dev-libs/elfutils-0.158"
DEPEND="${RDEPEND} virtual/pkgconfig"
src_prepare() {
epatch "${FILESDIR}/satyr-0.13-elfutils-0.158.patch"
default
}
src_configure() {
econf --disable-python-manpage --disable-static
}
|