blob: ae84131b368d6afdba1fd87266aba4743273545b (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
EGIT_REPO_URI="git://git.fedorahosted.org/report.git"
EGIT_COMMIT="${PV}"
inherit git-2 autotools eutils
DESCRIPTION="Provides a single configurable problem/bug/issue reporting API."
HOMEPAGE="http://git.fedoraproject.org/git/?p=report.git;a=summary"
SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="app-arch/rpm
net-misc/curl"
RDEPEND="dev-libs/openssl
net-misc/curl
dev-libs/libxml2
>=app-misc/kogaion-version-1.2"
src_prepare() {
epatch "${FILESDIR}"/${P}-kogaion-config.patch
epatch "${FILESDIR}"/${P}-disable-rpm.patch
epatch "${FILESDIR}"/${P}-disable-Werror.patch
eautoreconf || die "cannot run eautoreconf"
}
src_configure() {
econf --prefix=/usr || die "configure failed"
# Create some kind of version file to suit the build system
mkdir -p "${S}"/python/report/plugins/RHEL-bugzilla/bugzillaCopy || die
touch "${S}"/python/report/plugins/RHEL-bugzilla/bugzillaCopy/VERSION || die
}
src_install() {
default
# remove Red Hat stuff
rm -rf "${D}"/python/report/plugins/{strata,RHEL-bugzilla} || die
}
|