diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2003-07-27 11:14:50 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2003-07-27 11:14:50 +0000 |
commit | 1b923346ad3d84ef1f481ba93c4e02ef7efaeeae (patch) | |
tree | 403c702d30932a489accdf55cc0de6c68426e389 /sys-apps | |
parent | initial commit (diff) | |
download | historical-1b923346ad3d84ef1f481ba93c4e02ef7efaeeae.tar.gz historical-1b923346ad3d84ef1f481ba93c4e02ef7efaeeae.tar.bz2 historical-1b923346ad3d84ef1f481ba93c4e02ef7efaeeae.zip |
initial commit
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/genflags/Manifest | 4 | ||||
-rw-r--r-- | sys-apps/genflags/files/digest-genflags-0.94 | 2 | ||||
-rw-r--r-- | sys-apps/genflags/genflags-0.94.ebuild | 49 |
3 files changed, 53 insertions, 2 deletions
diff --git a/sys-apps/genflags/Manifest b/sys-apps/genflags/Manifest index 9abd03ab1abc..3ba4f8829f50 100644 --- a/sys-apps/genflags/Manifest +++ b/sys-apps/genflags/Manifest @@ -1,3 +1,3 @@ -MD5 fe6821d742eb905c46e1728533c5f923 ChangeLog 291 -MD5 a79e39e8ec0542cafc3f4784d74c4c72 genflags-0.94.ebuild 1107 +MD5 33d3a0fc58d4cd883d029007bb74fb39 ChangeLog 382 +MD5 b20dd43c1008f598c523c4c25dd6ebf3 genflags-0.94.ebuild 1209 MD5 3e806613bd44390b74e42b99ebc73ffb files/digest-genflags-0.94 141 diff --git a/sys-apps/genflags/files/digest-genflags-0.94 b/sys-apps/genflags/files/digest-genflags-0.94 new file mode 100644 index 000000000000..f9d29c66c453 --- /dev/null +++ b/sys-apps/genflags/files/digest-genflags-0.94 @@ -0,0 +1,2 @@ +MD5 0dba51b7f06d6a18e1a65f6fb0c7590d genflags-0.94-bin.tar.bz2 13426 +MD5 ce99ad3e46f0c545a18a7188843ee7c3 genflags-0.94-devel.tar.bz2 156611 diff --git a/sys-apps/genflags/genflags-0.94.ebuild b/sys-apps/genflags/genflags-0.94.ebuild new file mode 100644 index 000000000000..97333c551e9e --- /dev/null +++ b/sys-apps/genflags/genflags-0.94.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/genflags/genflags-0.94.ebuild,v 1.1 2003/07/27 11:14:47 robbat2 Exp $ + +DESCRIPTION="Gentoo CFLAGS generator" + +HOMEPAGE="http://www.gentoo.org/" + +SRC_URI="mirror://gentoo/${P}-bin.tar.bz2 + mirror://gentoo/${P}-devel.tar.bz2 + http://dev.gentoo.org/~robbat2/genflags/${P}-bin.tar.bz2 + http://dev.gentoo.org/~robbat2/genflags/${P}-devel.tar.bz2" + +LICENSE="OSL" + +SLOT="0" + +KEYWORDS="~x86 ~amd64 ~arm ~hppa ~ppc ~mips ~sparc ~alpha" +# should also work on : ia64 m68k cris s390 sh + +IUSE="" + +# This is all explictly specified as might want this in early stages +DEPEND="app-shells/bash + || ( sys-apps/coreutils ( sys-apps/sh-utils sys-apps/textutils ) ) + sys-apps/findutils + sys-apps/grep + sys-apps/sed + sys-apps/util-linux" + +S=${WORKDIR}/${P} + +src_compile() { + einfo "No compiling needed!" +} + +src_install() { + for i in bin/* ; do + dosbin ${i} + done + for i in LICENSE README docs/* ; do + dodoc ${i} + done + cp -r data ${D}/usr/share/genflags + + # At this time, don't install these dirs: + # old rawdata extra scripts testoutput testscripts + +} |