blob: a4f80e253c2081a9dd680e3ac5537d6b9bf3ca1c (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="4"
inherit multilib toolchain-funcs eutils
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/dtc/dtc.git"
inherit git-2
else
SRC_URI="mirror://kernel/software/utils/${PN}/${P}.tar.xz"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
fi
DESCRIPTION="Open Firmware device tree compiler"
HOMEPAGE="http://devicetree.org/Device_Tree_Compiler"
LICENSE="GPL-2"
SLOT="0"
IUSE="static-libs"
RDEPEND=""
DEPEND="app-arch/xz-utils
sys-devel/flex
sys-devel/bison"
src_prepare() {
epatch "${FILESDIR}"/${P}-missing-syms.patch
epatch "${FILESDIR}"/${P}-echo-n.patch
sed -i \
-e '/^CFLAGS =/s:=:+=:' \
-e '/^CPPFLAGS =/s:=:+=:' \
-e 's:-Werror::' \
-e 's:-g -Os::' \
-e "/^PREFIX =/s:=.*:= ${EPREFIX}/usr:" \
-e "/^LIBDIR =/s:=.*:= \$(PREFIX)/$(get_libdir):" \
Makefile || die
tc-export AR CC
export V=1
}
src_test() {
# Enable parallel tests.
emake check
}
src_install() {
default
use static-libs || find "${ED}" -name '*.a' -delete
dodoc Documentation/manual.txt
}
|