You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.1 KiB
53 lines
1.1 KiB
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/sys-apps/dtc/dtc-1.3.0-r1.ebuild,v 1.2 2013/04/08 22:09:22 vapier Exp $
|
|
|
|
EAPI="4"
|
|
MY_P="${PN}-v${PV}"
|
|
|
|
inherit multilib toolchain-funcs eutils
|
|
if [[ ${PV} == "9999" ]] ; then
|
|
EGIT_REPO_URI="git://git.jdl.com/software/dtc.git"
|
|
inherit git-2
|
|
else
|
|
SRC_URI="http://www.jdl.com/software/${MY_P}.tgz"
|
|
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
|
|
fi
|
|
|
|
DESCRIPTION="Open Firmware device-trees compiler"
|
|
HOMEPAGE="http://git.jdl.com/gitweb/?p=dtc.git"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
IUSE="static-libs"
|
|
|
|
RDEPEND=""
|
|
DEPEND="sys-devel/flex
|
|
sys-devel/bison"
|
|
|
|
S=${WORKDIR}/${MY_P}
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${P}-fdtdump.patch #372895
|
|
sed -i \
|
|
-e '/^CFLAGS =/s:=:+=:' \
|
|
-e '/^CPPFLAGS =/s:=:+=:' \
|
|
-e 's:-Werror::' \
|
|
-e 's:-g -Os::' \
|
|
-e '/^PREFIX =/s:=.*:= /usr:' \
|
|
-e "/^LIBDIR =/s:=.*:= /usr/$(get_libdir):" \
|
|
Makefile || die
|
|
tc-export AR CC
|
|
export V=1
|
|
}
|
|
|
|
src_test() {
|
|
emake check
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install
|
|
use static-libs || find "${ED}" -name '*.a' -delete
|
|
dodoc Documentation/manual.txt
|
|
}
|