forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scratchbox2-2.0-r1.ebuild
61 lines (46 loc) · 1.41 KB
/
scratchbox2-2.0-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
52
53
54
55
56
57
58
59
60
61
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="2"
inherit autotools eutils multilib toolchain-funcs
MY_PN="${PN/cratch}"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="A cross-compilation toolkit designed to make embedded Linux application development easier"
HOMEPAGE="https://www.freedesktop.org/wiki/Software/sbox2"
SRC_URI="https://cgit.freedesktop.org/${MY_PN}/snapshot/${MY_P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=">=dev-lang/lua-5.1.4"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"
src_prepare() {
epatch "${FILESDIR}/${P}-glibc-2.10.patch"
epatch "${FILESDIR}/${P}-gentoo.patch"
# bug 296552
epatch "${FILESDIR}/${P}-use-system-lua.patch"
# bug 296550
epatch "${FILESDIR}/${P}-as-needed.patch"
sed -e "s/^\(CC = \).*/\1$(tc-getCC)/" \
-e "s/^\(CXX = \).*/\1$(tc-getCXX)/" \
-e "s/^\(LD = \).*/\1$(tc-getLD)/" \
-i Makefile || die "sed Makefile failed"
eautoreconf
}
src_compile() {
emake prefix="${D}/usr" || die "emake failed"
}
src_install() {
emake prefix="${D}/usr" install || die "emake install failed"
# List all the multilib libdirs
local libdirs=
for libdir in $(get_all_libdirs); do
libdirs="${libdirs}:/usr/${libdir}/libsb2"
done
cat <<-EOF > "${T}/55scratchbox2"
LDPATH=${libdirs:1}
EOF
doenvd "${T}/55scratchbox2" || die "doenvd failed"
dodoc AUTHORS README TODO || die "dodoc failed"
}