diff options
author | Zack Welch <zwelch@gentoo.org> | 2003-02-24 02:38:48 +0000 |
---|---|---|
committer | Zack Welch <zwelch@gentoo.org> | 2003-02-24 02:38:48 +0000 |
commit | b18394239b4a45a5eb01fa8c5aa72e983b54595d (patch) | |
tree | 52f782110dfb6085821393621337133707ea1efb /sys-apps/nettrom | |
parent | new package (keymasked) (diff) | |
download | gentoo-2-b18394239b4a45a5eb01fa8c5aa72e983b54595d.tar.gz gentoo-2-b18394239b4a45a5eb01fa8c5aa72e983b54595d.tar.bz2 gentoo-2-b18394239b4a45a5eb01fa8c5aa72e983b54595d.zip |
add nettrom ebuild, the netwinder bootloader
Diffstat (limited to 'sys-apps/nettrom')
-rw-r--r-- | sys-apps/nettrom/files/digest-nettrom-2.3.3 | 1 | ||||
-rw-r--r-- | sys-apps/nettrom/nettrom-2.3.3.ebuild | 28 |
2 files changed, 29 insertions, 0 deletions
diff --git a/sys-apps/nettrom/files/digest-nettrom-2.3.3 b/sys-apps/nettrom/files/digest-nettrom-2.3.3 new file mode 100644 index 000000000000..aae0508ab1f4 --- /dev/null +++ b/sys-apps/nettrom/files/digest-nettrom-2.3.3 @@ -0,0 +1 @@ +MD5 6568087193d353d9cae6917d3afc5f2e nettrom-2.3.3.tar.gz 806471 diff --git a/sys-apps/nettrom/nettrom-2.3.3.ebuild b/sys-apps/nettrom/nettrom-2.3.3.ebuild new file mode 100644 index 000000000000..1ad86df5b4a6 --- /dev/null +++ b/sys-apps/nettrom/nettrom-2.3.3.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/nettrom/nettrom-2.3.3.ebuild,v 1.1 2003/02/24 02:38:48 zwelch Exp $ + +DESCRIPTION="NetWinder ARM bootloader and utilities" +HOMEPAGE="http://www.netwinder.org/" +SRC_URI="http://gentoo.superlucidity.net/arm/netwinder/${P}.tar.gz" +LICENSE="as-is" +SLOT="0" + +# no one but arm wants this package - binaries included +KEYWORDS="arm -x86 -alpha -ppc -mips -hppa -sparc" + +IUSE="" +DEPEND="virtual/glibc" +#RDEPEND="" + +S=${WORKDIR}/${P} + +src_unpack() { + /bin/true +} + +src_install() { + cd ${D} + unpack ${P}.tar.gz +} + |