diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-04-27 07:31:04 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-04-27 07:31:04 +0000 |
commit | 8d10a2a1e5f2154ca4cd8234e94e353d43bcab6f (patch) | |
tree | 9227a0a9cdf6b2b78a2a3af3147c197d13688de9 /dev-util | |
parent | Added ~amd64 to KEYWORDS. (diff) | |
download | historical-8d10a2a1e5f2154ca4cd8234e94e353d43bcab6f.tar.gz historical-8d10a2a1e5f2154ca4cd8234e94e353d43bcab6f.tar.bz2 historical-8d10a2a1e5f2154ca4cd8234e94e353d43bcab6f.zip |
add arm KEYWORD
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/catalyst/catalyst-1.0.6.ebuild | 4 | ||||
-rw-r--r-- | dev-util/catalyst/catalyst-1.0.7.ebuild | 10 | ||||
-rw-r--r-- | dev-util/ccache/ccache-2.3.ebuild | 25 |
3 files changed, 16 insertions, 23 deletions
diff --git a/dev-util/catalyst/catalyst-1.0.6.ebuild b/dev-util/catalyst/catalyst-1.0.6.ebuild index 01d2e8e8bbcd..8577d88dfa06 100644 --- a/dev-util/catalyst/catalyst-1.0.6.ebuild +++ b/dev-util/catalyst/catalyst-1.0.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/catalyst/catalyst-1.0.6.ebuild,v 1.1 2004/04/12 20:04:31 zhen Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/catalyst/catalyst-1.0.6.ebuild,v 1.2 2004/04/27 07:31:04 vapier Exp $ DESCRIPTION="Gentoo Linux official release metatool" HOMEPAGE="http://www.gentoo.org/proj/en/releng/catalyst" @@ -8,7 +8,7 @@ SRC_URI="http://dev.gentoo.org/~zhen/catalyst/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~x86 ~amd64 sparc ~ppc ~alpha ~mips" +KEYWORDS="~x86 ~ppc sparc ~mips ~alpha arm ~amd64" IUSE="doc" DEPEND="" diff --git a/dev-util/catalyst/catalyst-1.0.7.ebuild b/dev-util/catalyst/catalyst-1.0.7.ebuild index e9bc52f10e48..2de360cccff0 100644 --- a/dev-util/catalyst/catalyst-1.0.7.ebuild +++ b/dev-util/catalyst/catalyst-1.0.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/catalyst/catalyst-1.0.7.ebuild,v 1.1 2004/04/26 17:25:53 zhen Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/catalyst/catalyst-1.0.7.ebuild,v 1.2 2004/04/27 07:31:04 vapier Exp $ DESCRIPTION="Gentoo Linux official release metatool" HOMEPAGE="http://www.gentoo.org/proj/en/releng/catalyst" @@ -13,10 +13,10 @@ IUSE="doc cdr" DEPEND="" RDEPEND="dev-lang/python - sys-apps/portage - dev-util/ccache - amd64? ( sys-apps/linux32 ) - cdr? ( app-cdr/cdrtools app-misc/zisofs-tools sys-apps/squashfs-tools )" + sys-apps/portage + dev-util/ccache + amd64? ( sys-apps/linux32 ) + cdr? ( app-cdr/cdrtools app-misc/zisofs-tools sys-apps/squashfs-tools )" S=${WORKDIR}/${PN} diff --git a/dev-util/ccache/ccache-2.3.ebuild b/dev-util/ccache/ccache-2.3.ebuild index 02d6f4db6660..c403ed0916bf 100644 --- a/dev-util/ccache/ccache-2.3.ebuild +++ b/dev-util/ccache/ccache-2.3.ebuild @@ -1,33 +1,26 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/ccache/ccache-2.3.ebuild,v 1.12 2004/04/09 07:15:00 iggy Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/ccache/ccache-2.3.ebuild,v 1.13 2004/04/27 07:30:30 vapier Exp $ -DESCRIPTION="ccache is a fast compiler cache. It is used as a front end to your -compiler to safely cache compilation output. When the same code is compiled -again the cached output is used giving a significant speedup." -SRC_URI="http://ccache.samba.org/ftp/ccache/${P}.tar.gz" +DESCRIPTION="fast compiler cache" HOMEPAGE="http://ccache.samba.org/" +SRC_URI="http://ccache.samba.org/ftp/ccache/${P}.tar.gz" -IUSE="" -SLOT="0" LICENSE="GPL-2" -KEYWORDS="x86 ~ppc sparc alpha mips hppa amd64 ia64 ppc64 s390" +SLOT="0" +KEYWORDS="x86 ~ppc sparc mips alpha arm hppa amd64 ia64 ppc64 s390" +IUSE="" + DEPEND="virtual/glibc \ >=sys-apps/portage-2.0.46-r11" # Note: this version is designed to be auto-detected and used if # you happen to have Portage 2.0.X+ installed. -src_compile() { - econf || die - emake || die -} - src_install () { - exeinto /usr/bin - doexe ccache + dobin ccache || die doman ccache.1 - dodoc COPYING README + dodoc README dohtml web/*.html diropts -m0755 |