forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deltarpm-3.6_pre20110223-r1.ebuild
51 lines (38 loc) · 1.11 KB
/
deltarpm-3.6_pre20110223-r1.ebuild
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
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit eutils toolchain-funcs python-single-r1
SNAPSHOT="20110223"
DESCRIPTION="tools to create and apply deltarpms"
HOMEPAGE="http://gitorious.org/deltarpm/deltarpm"
SRC_URI="http://pkgs.fedoraproject.org/repo/pkgs/${PN}/${PN}-git-${SNAPSHOT}.tar.bz2/70f8884be63614ca7c3fc888cf20ebc8/${PN}-git-${SNAPSHOT}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="python"
RDEPEND="sys-libs/zlib
app-arch/xz-utils
app-arch/bzip2
<app-arch/rpm-5
python? ( ${PYTHON_DEPS} )"
DEPEND=${RDEPEND}
REQUIRED_USE=${PYTHON_REQUIRED_USE}
S="${WORKDIR}/${PN}-git-${SNAPSHOT}"
pkg_setup() {
use python && python-single-r1_pkg_setup
}
src_prepare() {
sed -i \
-e '/^prefix/s:/local::' \
-e '/^mandir/s:/man:/share/man:' \
Makefile || die
epatch "${FILESDIR}/3.6_pre20110223-build.patch"
}
src_compile() {
emake -j1 CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)"
if use python; then
emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)" python
fi
}