diff options
author | Fabian Groffen <grobian@gentoo.org> | 2011-09-03 10:52:52 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2011-09-03 10:52:52 +0000 |
commit | 0b3ebcd40263fb3f16fb604e199cb868c0ba5abd (patch) | |
tree | 27be8570efb73b60b491ab21cc9c8c6a25a4c86f /sys-libs/csu | |
parent | Bump to Lion version 10.7 (diff) | |
download | gentoo-2-0b3ebcd40263fb3f16fb604e199cb868c0ba5abd.tar.gz gentoo-2-0b3ebcd40263fb3f16fb604e199cb868c0ba5abd.tar.bz2 gentoo-2-0b3ebcd40263fb3f16fb604e199cb868c0ba5abd.zip |
Fetch restriction seems to have been removed, fix installation failing, marked ~x86-macos and ~x64-macos
(Portage version: 2.2.01.19120-prefix/cvs/Darwin i386)
Diffstat (limited to 'sys-libs/csu')
-rw-r--r-- | sys-libs/csu/ChangeLog | 6 | ||||
-rw-r--r-- | sys-libs/csu/csu-79.ebuild | 16 |
2 files changed, 9 insertions, 13 deletions
diff --git a/sys-libs/csu/ChangeLog b/sys-libs/csu/ChangeLog index 41743ea3e52e..ecdae4313b7c 100644 --- a/sys-libs/csu/ChangeLog +++ b/sys-libs/csu/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-libs/csu # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/csu/ChangeLog,v 1.5 2011/03/15 18:22:22 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/csu/ChangeLog,v 1.6 2011/09/03 10:52:52 grobian Exp $ + + 03 Sep 2011; Fabian Groffen <grobian@gentoo.org> csu-79.ebuild: + Fetch restriction seems to have been removed, fix installation failing, + marked ~x86-macos and ~x64-macos *csu-79 (15 Mar 2011) diff --git a/sys-libs/csu/csu-79.ebuild b/sys-libs/csu/csu-79.ebuild index c7294adda3ec..b84cde67621c 100644 --- a/sys-libs/csu/csu-79.ebuild +++ b/sys-libs/csu/csu-79.ebuild @@ -1,27 +1,19 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/csu/csu-79.ebuild,v 1.1 2011/03/15 18:22:22 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/csu/csu-79.ebuild,v 1.2 2011/09/03 10:52:52 grobian Exp $ EAPI=3 -DESCRIPTION="Darwin Csu (crt1.o) - Mac OS X 10.6.6 version" +DESCRIPTION="Darwin Csu (crt1.o) - Mac OS X 10.6.6 and 10.7 versions" HOMEPAGE="http://www.opensource.apple.com/" SRC_URI="http://www.opensource.apple.com/tarballs/Csu/Csu-${PV}.tar.gz" LICENSE="APSL-2" -RESTRICT="fetch" # need to sort out if we can mirror SLOT="0" -KEYWORDS="~ppc-macos" +KEYWORDS="~ppc-macos ~x64-macos ~x86-macos" IUSE="" -pkg_nofetch() { - einfo "Please download the necessary files manually, it requires an" - einfo "Apple Developer Connection account." - einfo " ${SRC_URI}" - einfo "See: ${HOMEPAGE}" -} - src_prepare() { # since we don't have crt0, we can't build it either sed -i \ @@ -35,7 +27,7 @@ src_compile() { } src_install() { - emake \ + emake -j1 \ USRLIBDIR="${EPREFIX}"/lib \ LOCLIBDIR="${EPREFIX}"/lib \ DSTROOT="${D}" \ |