diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-11-10 01:52:23 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-11-10 01:52:23 +0000 |
commit | 22970b977097e80ee03935d44d4546c171eecc36 (patch) | |
tree | 16957affd2e3e5ad5e04634c0ef3fd125c2cab58 /sys-apps/dtc/dtc-1.3.0-r1.ebuild | |
parent | Version bump; a patch is needed for a test failure with USE=-dane. (diff) | |
download | gentoo-2-22970b977097e80ee03935d44d4546c171eecc36.tar.gz gentoo-2-22970b977097e80ee03935d44d4546c171eecc36.tar.bz2 gentoo-2-22970b977097e80ee03935d44d4546c171eecc36.zip |
Backport fix from upstream for renaming ftdump to fdtdump #372895 by dacook.
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
Diffstat (limited to 'sys-apps/dtc/dtc-1.3.0-r1.ebuild')
-rw-r--r-- | sys-apps/dtc/dtc-1.3.0-r1.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/sys-apps/dtc/dtc-1.3.0-r1.ebuild b/sys-apps/dtc/dtc-1.3.0-r1.ebuild new file mode 100644 index 000000000000..67b33ab8f794 --- /dev/null +++ b/sys-apps/dtc/dtc-1.3.0-r1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2012 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.1 2012/11/10 01:52:23 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 ~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 +} |