diff options
author | Matt Turner <mattst88@gentoo.org> | 2012-05-18 14:17:11 +0000 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2012-05-18 14:17:11 +0000 |
commit | 88396723b8536bc54d3292b5850512ef10aeb239 (patch) | |
tree | 227e611d4b3f4c520f710b7d7c38b65cb31e09e7 /sys-boot | |
parent | Version bump from upstream, new stable candidate. bug 414167 with selinux mod... (diff) | |
download | gentoo-2-88396723b8536bc54d3292b5850512ef10aeb239.tar.gz gentoo-2-88396723b8536bc54d3292b5850512ef10aeb239.tar.bz2 gentoo-2-88396723b8536bc54d3292b5850512ef10aeb239.zip |
Drop pkg_setup that checks if we're using the cobalt profile. The cobalt profiles are dead.
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Diffstat (limited to 'sys-boot')
-rw-r--r-- | sys-boot/colo/ChangeLog | 8 | ||||
-rw-r--r-- | sys-boot/colo/colo-1.22.ebuild | 18 |
2 files changed, 9 insertions, 17 deletions
diff --git a/sys-boot/colo/ChangeLog b/sys-boot/colo/ChangeLog index 4cd6a5e57d00..14e43d3b6f4b 100644 --- a/sys-boot/colo/ChangeLog +++ b/sys-boot/colo/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-boot/colo -# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/colo/ChangeLog,v 1.21 2009/02/25 00:32:25 kumba Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/colo/ChangeLog,v 1.22 2012/05/18 14:17:11 mattst88 Exp $ + + 18 May 2012; Matt Turner <mattst88@gentoo.org> colo-1.22.ebuild: + Drop pkg_setup that checks if we're using the cobalt profile. The cobalt + profiles are dead. 25 Feb 2009; Joshua Kinard <kumba@gentoo.org> colo-1.22.ebuild: Make sys-boot/colo cross-compiler safe, dodge gcc-4.3.x stricter checks, diff --git a/sys-boot/colo/colo-1.22.ebuild b/sys-boot/colo/colo-1.22.ebuild index d16d036f5b12..19d04527281d 100644 --- a/sys-boot/colo/colo-1.22.ebuild +++ b/sys-boot/colo/colo-1.22.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/colo/colo-1.22.ebuild,v 1.4 2009/02/25 00:32:25 kumba Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/colo/colo-1.22.ebuild,v 1.5 2012/05/18 14:17:11 mattst88 Exp $ inherit eutils toolchain-funcs @@ -12,20 +12,9 @@ SLOT="0" KEYWORDS="-* ~mips" IUSE="" DEPEND="" +RDEPEND="" RESTRICT="strip" -pkg_setup() { - # See if we're on a cobalt system (must use the cobalt-mips profile) - if [ "${PROFILE_ARCH}" != "cobalt" ]; then - echo -e "" - eerror "This package is only intended for the Cobalt Microserver MIPS-based" - eerror "systems. It will not function on any other MIPS-based system or any" - eerror "other architecture" - echo -e "" - die - fi -} - src_unpack() { unpack ${A} } @@ -62,7 +51,6 @@ src_compile() { src_install() { # bins - cd "${S}" dodir /usr/lib/colo cp binaries/colo-chain.elf "${D}"/usr/lib/colo cp binaries/colo-rom-image.bin "${D}"/usr/lib/colo |