diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-10-26 02:22:03 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-10-26 02:22:03 +0000 |
commit | ab6632d02e366ed6bc078af9dbce0b95b63b4f2d (patch) | |
tree | 1095200bcb7abbb7e51dd31d8635a030e1cd2888 /dev-embedded/u-boot-tools/u-boot-tools-2008.10.ebuild | |
parent | Update loop-aes support #242874 by Fabio Coatti and Lars (Polynomial-C). (diff) | |
download | historical-ab6632d02e366ed6bc078af9dbce0b95b63b4f2d.tar.gz historical-ab6632d02e366ed6bc078af9dbce0b95b63b4f2d.tar.bz2 historical-ab6632d02e366ed6bc078af9dbce0b95b63b4f2d.zip |
Version bump.
Package-Manager: portage-2.2_rc12/cvs/Linux 2.6.26.2 x86_64
Diffstat (limited to 'dev-embedded/u-boot-tools/u-boot-tools-2008.10.ebuild')
-rw-r--r-- | dev-embedded/u-boot-tools/u-boot-tools-2008.10.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/dev-embedded/u-boot-tools/u-boot-tools-2008.10.ebuild b/dev-embedded/u-boot-tools/u-boot-tools-2008.10.ebuild new file mode 100644 index 000000000000..ad96795310a4 --- /dev/null +++ b/dev-embedded/u-boot-tools/u-boot-tools-2008.10.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-embedded/u-boot-tools/u-boot-tools-2008.10.ebuild,v 1.1 2008/10/26 02:22:03 vapier Exp $ + +MY_P="u-boot-${PV}" + +DESCRIPTION="utilities for working with Das U-Boot" +HOMEPAGE="http://www.denx.de/wiki/U-Boot/WebHome" +SRC_URI="ftp://ftp.denx.de/pub/u-boot/${MY_P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~arm ~amd64 ~x86" +IUSE="" + +DEPEND="" + +S=${WORKDIR}/${MY_P} + +src_compile() { + touch include/config.{h,mk} + emake HOSTSTRIP=echo BIN_FILES="bmp_logo gen_eth_addr img2srec mkimage" tools || die + emake HOSTSTRIP=echo -C tools/easylogo || die + emake env || die +} + +src_install() { + cd tools + dobin bmp_logo gen_eth_addr img2srec mkimage || die + dobin easylogo/easylogo || die + dobin env/fw_printenv || die + dosym fw_printenv /usr/bin/fw_setenv || die + insinto /etc + doins env/fw_env.config || die +} |