* [gentoo-commits] gentoo-x86 commit in sys-libs/csu: ChangeLog csu-79.ebuild
@ 2011-09-03 10:52 Fabian Groffen (grobian)
0 siblings, 0 replies; 2+ messages in thread
From: Fabian Groffen (grobian) @ 2011-09-03 10:52 UTC (permalink / raw
To: gentoo-commits
grobian 11/09/03 10:52:53
Modified: ChangeLog csu-79.ebuild
Log:
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)
Revision Changes Path
1.6 sys-libs/csu/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/csu/ChangeLog?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/csu/ChangeLog?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/csu/ChangeLog?r1=1.5&r2=1.6
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/csu/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog 15 Mar 2011 18:22:22 -0000 1.5
+++ ChangeLog 3 Sep 2011 10:52:52 -0000 1.6
@@ -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)
1.2 sys-libs/csu/csu-79.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/csu/csu-79.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/csu/csu-79.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/csu/csu-79.ebuild?r1=1.1&r2=1.2
Index: csu-79.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/csu/csu-79.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- csu-79.ebuild 15 Mar 2011 18:22:22 -0000 1.1
+++ csu-79.ebuild 3 Sep 2011 10:52:52 -0000 1.2
@@ -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_install() {
- emake \
+ emake -j1 \
USRLIBDIR="${EPREFIX}"/lib \
LOCLIBDIR="${EPREFIX}"/lib \
DSTROOT="${D}" \
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-libs/csu: ChangeLog csu-79.ebuild
@ 2011-09-04 13:20 Fabian Groffen (grobian)
0 siblings, 0 replies; 2+ messages in thread
From: Fabian Groffen (grobian) @ 2011-09-04 13:20 UTC (permalink / raw
To: gentoo-commits
grobian 11/09/04 13:20:29
Modified: ChangeLog csu-79.ebuild
Log:
Fix build on case-sensitive volumes, bug #381779
(Portage version: 2.2.01.19120-prefix/cvs/Darwin i386)
Revision Changes Path
1.7 sys-libs/csu/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/csu/ChangeLog?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/csu/ChangeLog?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/csu/ChangeLog?r1=1.6&r2=1.7
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/csu/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog 3 Sep 2011 10:52:52 -0000 1.6
+++ ChangeLog 4 Sep 2011 13:20:29 -0000 1.7
@@ -1,6 +1,9 @@
# 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.6 2011/09/03 10:52:52 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/csu/ChangeLog,v 1.7 2011/09/04 13:20:29 grobian Exp $
+
+ 04 Sep 2011; Fabian Groffen <grobian@gentoo.org> csu-79.ebuild:
+ Fix build on case-sensitive volumes, bug #381779
03 Sep 2011; Fabian Groffen <grobian@gentoo.org> csu-79.ebuild:
Fetch restriction seems to have been removed, fix installation failing,
1.3 sys-libs/csu/csu-79.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/csu/csu-79.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/csu/csu-79.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/csu/csu-79.ebuild?r1=1.2&r2=1.3
Index: csu-79.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/csu/csu-79.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- csu-79.ebuild 3 Sep 2011 10:52:52 -0000 1.2
+++ csu-79.ebuild 4 Sep 2011 13:20:29 -0000 1.3
@@ -1,6 +1,6 @@
# 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.2 2011/09/03 10:52:52 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/csu/csu-79.ebuild,v 1.3 2011/09/04 13:20:29 grobian Exp $
EAPI=3
@@ -13,6 +13,7 @@
SLOT="0"
KEYWORDS="~ppc-macos ~x64-macos ~x86-macos"
IUSE=""
+S=${WORKDIR}/Csu-${PV}
src_prepare() {
# since we don't have crt0, we can't build it either
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-09-04 13:20 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-03 10:52 [gentoo-commits] gentoo-x86 commit in sys-libs/csu: ChangeLog csu-79.ebuild Fabian Groffen (grobian)
-- strict thread matches above, loose matches on Subject: below --
2011-09-04 13:20 Fabian Groffen (grobian)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox