diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-10-17 21:39:35 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-10-17 21:39:35 +0000 |
commit | ee095b822bbcc5db6a0e2abbfe7d960a885dfe9b (patch) | |
tree | 2b282b1243afbe86f0da894413d084d673a286eb /sys-apps/dtc/dtc-9999.ebuild | |
parent | Remove some old versions and bump the latest. (diff) | |
download | gentoo-2-ee095b822bbcc5db6a0e2abbfe7d960a885dfe9b.tar.gz gentoo-2-ee095b822bbcc5db6a0e2abbfe7d960a885dfe9b.tar.bz2 gentoo-2-ee095b822bbcc5db6a0e2abbfe7d960a885dfe9b.zip |
Add a live git ebuild.
(Portage version: 2.2.0_alpha65/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps/dtc/dtc-9999.ebuild')
-rw-r--r-- | sys-apps/dtc/dtc-9999.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/sys-apps/dtc/dtc-9999.ebuild b/sys-apps/dtc/dtc-9999.ebuild new file mode 100644 index 000000000000..e6e7c231fa17 --- /dev/null +++ b/sys-apps/dtc/dtc-9999.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/dtc/dtc-9999.ebuild,v 1.1 2011/10/17 21:39:35 vapier Exp $ + +EAPI="4" +MY_P="${PN}-v${PV}" + +inherit multilib toolchain-funcs +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() { + 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 "${D}" -name '*.a' -delete + dodoc Documentation/manual.txt +} |