public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-devel/binutils-apple: ChangeLog binutils-apple-3.2.ebuild
@ 2009-09-05 17:22 Fabian Groffen (grobian)
  0 siblings, 0 replies; 3+ messages in thread
From: Fabian Groffen (grobian) @ 2009-09-05 17:22 UTC (permalink / raw
  To: gentoo-commits

grobian     09/09/05 17:22:42

  Modified:             ChangeLog
  Added:                binutils-apple-3.2.ebuild
  Log:
  Bump to version from Snow Leopard/Developer Tools 3.2, highly broken, hence masked
  (Portage version: 2.2.00.14200-prefix/cvs/SunOS i386)

Revision  Changes    Path
1.2                  sys-devel/binutils-apple/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/binutils-apple/ChangeLog?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/binutils-apple/ChangeLog?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/binutils-apple/ChangeLog?r1=1.1&r2=1.2

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog	21 Jun 2009 10:06:52 -0000	1.1
+++ ChangeLog	5 Sep 2009 17:22:41 -0000	1.2
@@ -1,6 +1,13 @@
 # ChangeLog for sys-devel/binutils-apple
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/ChangeLog,v 1.1 2009/06/21 10:06:52 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/ChangeLog,v 1.2 2009/09/05 17:22:41 grobian Exp $
+
+*binutils-apple-3.2 (05 Sep 2009)
+
+  05 Sep 2009; Fabian Groffen <grobian@gentoo.org>
+  +binutils-apple-3.2.ebuild, +files/binutils-apple-3.2-ld64-Makefile:
+  Bump to version from Snow Leopard/Developer Tools 3.2, highly broken,
+  hence masked
 
 *binutils-apple-3.1.2-r1 (01 Jun 2009)
 



1.1                  sys-devel/binutils-apple/binutils-apple-3.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/binutils-apple/binutils-apple-3.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/binutils-apple/binutils-apple-3.2.ebuild?rev=1.1&content-type=text/plain

Index: binutils-apple-3.2.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/binutils-apple-3.2.ebuild,v 1.1 2009/09/05 17:22:41 grobian Exp $

inherit eutils flag-o-matic toolchain-funcs

RESTRICT="test" # the test suite will test what's installed.

LD64=ld64-95.2.12
CCTOOLS=cctools-750
LP64PATCHES=binutils-apple-LP64-patches-1

DESCRIPTION="Darwin assembler as(1) and static linker ld(1), Xcode Tools 3.2"
HOMEPAGE="http://www.opensource.apple.com/darwinsource/"
SRC_URI="http://www.gentoo.org/~grobian/distfiles/${LD64}.tar.gz
	http://www.gentoo.org/~grobian/distfiles/${CCTOOLS}.tar.gz
	http://www.gentoo.org/~grobian/distfiles/${LP64PATCHES}.tar.bz2"

LICENSE="APSL-2"
KEYWORDS="~ppc-macos ~x64-macos ~x86-macos"
IUSE="test"
SLOT="0"

DEPEND="sys-devel/binutils-config
	test? ( >=dev-lang/perl-5.8.8 )"
RDEPEND="${DEPEND}"

export CTARGET=${CTARGET:-${CHOST}}
if [[ ${CTARGET} == ${CHOST} ]] ; then
	if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then
		export CTARGET=${CATEGORY/cross-}
	fi
fi
is_cross() { [[ ${CHOST} != ${CTARGET} ]] ; }

if is_cross ; then
	SLOT="${CTARGET}"
else
	SLOT="0"
fi

LIBPATH=/usr/$(get_libdir)/binutils/${CTARGET}/${PV}
INCPATH=${LIBPATH}/include
DATAPATH=/usr/share/binutils-data/${CTARGET}/${PV}
if is_cross ; then
	BINPATH=/usr/${CHOST}/${CTARGET}/binutils-bin/${PV}
else
	BINPATH=/usr/${CTARGET}/binutils-bin/${PV}
fi

S=${WORKDIR}

unpack_ld64() {
	cd "${S}"/${LD64}
	cp "${FILESDIR}"/${P}-ld64-Makefile Makefile
	ln -s ../${CCTOOLS}/include
# todo: copy compact_unwind_encoding.h

	cd src

	local VER_STR="\"@(#)PROGRAM:ld  PROJECT:${LD64} (Gentoo ${PN}-${PVR})\\n\""
	sed -i \
		-e '/^#define LTO_SUPPORT 1/s:1:0:' \
		other/ObjectDump.cpp || die
	echo '#undef LTO_SUPPORT' > configure.h
	echo '' > linker_opts
	echo "char ldVersionString[] = ${VER_STR};" > version.cpp

	# clean up test suite
	cd "${S}"/${LD64}/unit-tests/test-cases
	local c

	# we don't have llvm
	((++c)); rm -rf llvm-integration;

	# we don't have dtrace
	((++c)); rm -rf dtrace-static-probes-coalescing;
	((++c)); rm -rf dtrace-static-probes;

	# a file is missing
	((++c)); rm -rf eh-coalescing-r

	# we don't do universal binaries
	((++c)); rm -rf blank-stubs;

	# looks like a problem with apple's result-filter.pl
	((++c)); rm -rf implicit-common3;
	((++c)); rm -rf order_file-ans;

	# TODO no idea what goes wrong here
	((++c)); rm -rf dwarf-debug-notes;

	elog "Deleted $c tests that were bound to fail"
}

src_unpack() {
	unpack ${A}
	unpack_ld64

	# needed to compile trie support
	cp "${S}"/${LD64}/src/other/prune_trie.h \
		"${S}"/${CCTOOLS}/include/mach-o

	cd "${S}"/${CCTOOLS}
	epatch "${FILESDIR}"/${PN}-3.1.1-as.patch
	epatch "${FILESDIR}"/${PN}-3.1.1-as-dir.patch
	epatch "${FILESDIR}"/${PN}-3.1.1-ranlib.patch
	epatch "${FILESDIR}"/${PN}-3.1.1-libtool-ranlib.patch
	epatch "${FILESDIR}"/${PN}-3.1.1-nmedit.patch
	#epatch "${FILESDIR}"/${PN}-3.1.1-no-efi-man.patch
	epatch "${FILESDIR}"/${PN}-3.1.1-no-headers.patch
	epatch "${FILESDIR}"/${PN}-3.1.1-no-oss-dir.patch
	#epatch "${FILESDIR}"/${PN}-3.1.2-as-Makefile.patch
#	epatch "${WORKDIR}"/LP64/cctools/*.patch
	cd "${S}"/${LD64}
	epatch "${FILESDIR}"/${PN}-3.1.1-testsuite.patch
#	epatch "${WORKDIR}"/LP64/ld64/*.patch

	cd "${S}"
	ebegin "cleaning Makefiles from unwanted CFLAGS"
	find . -name "Makefile" -print0 | xargs -0 sed \
		-i \
		-e 's/ -g / /g' \
		-e 's/^OFLAG =.*$/OFLAG =/' \
		-e 's/install -c -s/install/g'
	eend $?
#	ebegin "patching for LP64 mode"
#	ebegin "  replacing SWAP_LONG() with SWAP_INT()"
#	find . -name "*.c" -print0 | xargs -0 sed \
#		-i \
#		-e 's/SWAP_LONG((long)/SWAP_INT((int)/g' \
#		-e 's/SWAP_LONG(/SWAP_INT(/g'
#	eend $?
#	ebegin "  replacing sizeof(long) with sizeof(int)"
#	find . -name "*.c" -print0 | xargs -0 sed \
#		-i \
#		-e 's/sizeof(long)/sizeof(int)/g' \
#		-e 's/sizeof(unsigned long)/sizeof(unsigned int)/g' \
#		&& sed -i \
#		-e '/long long \*/!s/long \*/int */g' \
#		${CCTOOLS}/misc/{strip,lipo}.*
#	eend $?

	# -pg is used and the two are incompatible
	filter-flags -fomit-frame-pointer
}

compile_ld64() {
	cd "${S}"/${LD64}/src
	# 'struct linkedit_data_command' is defined in mach-o/loader.h on leopard,
	# but not on tiger.
	[[ ${CHOST} == *-apple-darwin8 ]] && \
		append-flags -isystem "${S}"/${CCTOOLS}/include/
	emake || die "emake failed for ld64"
	use test && emake build_test
}

compile_cctools() {
	cd "${S}"/${CCTOOLS}
	emake \
		LTO= \
		EFITOOLS= \
		COMMON_SUBDIRS='libstuff ar misc otool' \
		RC_CFLAGS="${CFLAGS}" OFLAG="${CFLAGS}" \
		|| die "emake failed for the cctools"
	cd "${S}"/${CCTOOLS}/as
	emake \
		BUILD_OBSOLETE_ARCH= \
		RC_CFLAGS="-DASLIBEXECDIR=\"\\\"${EPREFIX}${LIBPATH}/\\\"\" ${CFLAGS}" \
		|| die "emake failed for as"
}

src_compile() {
	compile_ld64
	compile_cctools
}

install_ld64() {
	exeinto ${BINPATH}
	doexe "${S}"/${LD64}/src/{ld64,rebase}
	dosym ld64 ${BINPATH}/ld
	insinto ${DATAPATH}/man/man1
	doins "${S}"/${LD64}/doc/man/man1/{ld,ld64,rebase}.1
}

install_cctools() {
	local ED=${ED-${D}}

	cd "${S}"/${CCTOOLS}
	emake install_all_but_headers \
		EFITOOLS= \
		COMMON_SUBDIRS='ar misc otool' \
		DSTROOT=\"${D}\" \
		BINDIR=\"${EPREFIX}\"${BINPATH} \
		LOCBINDIR=\"${EPREFIX}\"${BINPATH} \
		USRBINDIR=\"${EPREFIX}\"${BINPATH} \
		LOCLIBDIR=\"${EPREFIX}\"${LIBPATH} \
		MANDIR=\"${EPREFIX}\"${DATAPATH}/man/
	cd "${S}"/${CCTOOLS}/as
	emake install \
		BUILD_OBSOLETE_ARCH= \
		DSTROOT=\"${D}\" \
		USRBINDIR=\"${EPREFIX}\"${BINPATH} \
		LIBDIR=\"${EPREFIX}\"${LIBPATH}

	cd "${ED}"${BINPATH}
	insinto ${DATAPATH}/man/man1
	local skips manpage
	# ar brings an up-to-date manpage with it
	skips=( ar )
	for bin in *; do
		for skip in ${skips[@]}; do
			if [[ ${bin} == ${skip} ]]; then
				continue 2;
			fi
		done
		manpage=${S}/${CCTOOLS}/man/${bin}.1
		if [[ -f "${manpage}" ]]; then
			doins "${manpage}"
		fi
	done
	insinto ${DATAPATH}/man/man5
	doins "${S}"/${CCTOOLS}/man/*.5
}

src_test() {
	einfo "Running unit tests"
	cd "${S}"/${LD64}/unit-tests/test-cases
	# need host arch, since GNU arch doesn't do what Apple's does
	tc-export CC CXX
	perl ../bin/make-recursive.pl \
		ARCH="$(/usr/bin/arch)" \
		RELEASEDIR="${S}"/${LD64}/src \
		| perl ../bin/result-filter.pl
}

src_install() {
	install_ld64
	install_cctools

	cd "${S}"
	insinto /etc/env.d/binutils
	cat <<-EOF > env.d
		TARGET="${CHOST}"
		VER="${PV}"
		FAKE_TARGETS="${CHOST}"
	EOF
	newins env.d ${CHOST}-${PV}
}

pkg_postinst() {
	binutils-config ${CHOST}-${PV}
}






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-devel/binutils-apple: ChangeLog binutils-apple-3.2.ebuild
@ 2009-09-12 13:03 Fabian Groffen (grobian)
  0 siblings, 0 replies; 3+ messages in thread
From: Fabian Groffen (grobian) @ 2009-09-12 13:03 UTC (permalink / raw
  To: gentoo-commits

grobian     09/09/12 13:03:29

  Modified:             ChangeLog binutils-apple-3.2.ebuild
  Log:
  Since we cannot build ld64, but *can* build new cctools, build the ld64 from 3.1.2 with the new cctools.  Hopefully the new cctools fixes problems with Snow Leopard host provided objects and 64-bits awareness

Revision  Changes    Path
1.3                  sys-devel/binutils-apple/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/binutils-apple/ChangeLog?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/binutils-apple/ChangeLog?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/binutils-apple/ChangeLog?r1=1.2&r2=1.3

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog	5 Sep 2009 17:22:41 -0000	1.2
+++ ChangeLog	12 Sep 2009 13:03:29 -0000	1.3
@@ -1,6 +1,12 @@
 # ChangeLog for sys-devel/binutils-apple
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/ChangeLog,v 1.2 2009/09/05 17:22:41 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/ChangeLog,v 1.3 2009/09/12 13:03:29 grobian Exp $
+
+  12 Sep 2009; Fabian Groffen <grobian@gentoo.org>
+  binutils-apple-3.2.ebuild, +files/binutils-apple-3.2-armv7-defines.patch:
+  Since we cannot build ld64, but *can* build new cctools, build the ld64
+  from 3.1.2 with the new cctools. Hopefully the new cctools fixes problems
+  with Snow Leopard host provided objects and 64-bits awareness
 
 *binutils-apple-3.2 (05 Sep 2009)
 



1.2                  sys-devel/binutils-apple/binutils-apple-3.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/binutils-apple/binutils-apple-3.2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/binutils-apple/binutils-apple-3.2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/binutils-apple/binutils-apple-3.2.ebuild?r1=1.1&r2=1.2

Index: binutils-apple-3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/binutils-apple-3.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- binutils-apple-3.2.ebuild	5 Sep 2009 17:22:41 -0000	1.1
+++ binutils-apple-3.2.ebuild	12 Sep 2009 13:03:29 -0000	1.2
@@ -1,12 +1,13 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/binutils-apple-3.2.ebuild,v 1.1 2009/09/05 17:22:41 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/binutils-apple-3.2.ebuild,v 1.2 2009/09/12 13:03:29 grobian Exp $
 
 inherit eutils flag-o-matic toolchain-funcs
 
 RESTRICT="test" # the test suite will test what's installed.
 
-LD64=ld64-95.2.12
+# LD64=ld64-95.2.12 # can't compile this one, missing libunwind/* includes
+LD64=ld64-85.2.1 # from 3.1.2
 CCTOOLS=cctools-750
 LP64PATCHES=binutils-apple-LP64-patches-1
 
@@ -51,17 +52,21 @@
 S=${WORKDIR}
 
 unpack_ld64() {
-	cd "${S}"/${LD64}
-	cp "${FILESDIR}"/${P}-ld64-Makefile Makefile
-	ln -s ../${CCTOOLS}/include
+	cd "${S}"/${LD64}/src
+	cp "${FILESDIR}"/Makefile .
+#	cd "${S}"/${LD64}
+#	cp "${FILESDIR}"/${P}-ld64-Makefile .
+#	ln -s ../${CCTOOLS}/include
 # todo: copy compact_unwind_encoding.h
+#	cp "${FILESDIR}"/compact_unwind_encoding.h include/mach-o/
 
-	cd src
+#	cd src
 
 	local VER_STR="\"@(#)PROGRAM:ld  PROJECT:${LD64} (Gentoo ${PN}-${PVR})\\n\""
 	sed -i \
 		-e '/^#define LTO_SUPPORT 1/s:1:0:' \
-		other/ObjectDump.cpp || die
+		ObjectDump.cpp || die
+#		other/ObjectDump.cpp || die
 	echo '#undef LTO_SUPPORT' > configure.h
 	echo '' > linker_opts
 	echo "char ldVersionString[] = ${VER_STR};" > version.cpp
@@ -98,8 +103,8 @@
 	unpack_ld64
 
 	# needed to compile trie support
-	cp "${S}"/${LD64}/src/other/prune_trie.h \
-		"${S}"/${CCTOOLS}/include/mach-o
+#	cp "${S}"/${LD64}/src/other/prune_trie.h \
+#		"${S}"/${CCTOOLS}/include/mach-o
 
 	cd "${S}"/${CCTOOLS}
 	epatch "${FILESDIR}"/${PN}-3.1.1-as.patch
@@ -107,14 +112,14 @@
 	epatch "${FILESDIR}"/${PN}-3.1.1-ranlib.patch
 	epatch "${FILESDIR}"/${PN}-3.1.1-libtool-ranlib.patch
 	epatch "${FILESDIR}"/${PN}-3.1.1-nmedit.patch
-	#epatch "${FILESDIR}"/${PN}-3.1.1-no-efi-man.patch
 	epatch "${FILESDIR}"/${PN}-3.1.1-no-headers.patch
 	epatch "${FILESDIR}"/${PN}-3.1.1-no-oss-dir.patch
-	#epatch "${FILESDIR}"/${PN}-3.1.2-as-Makefile.patch
+	epatch "${FILESDIR}"/${P}-armv7-defines.patch
 #	epatch "${WORKDIR}"/LP64/cctools/*.patch
+
 	cd "${S}"/${LD64}
 	epatch "${FILESDIR}"/${PN}-3.1.1-testsuite.patch
-#	epatch "${WORKDIR}"/LP64/ld64/*.patch
+	epatch "${WORKDIR}"/LP64/ld64/*.patch
 
 	cd "${S}"
 	ebegin "cleaning Makefiles from unwanted CFLAGS"
@@ -159,8 +164,10 @@
 	cd "${S}"/${CCTOOLS}
 	emake \
 		LTO= \
+		TRIE= \
 		EFITOOLS= \
 		COMMON_SUBDIRS='libstuff ar misc otool' \
+		SUBDIRS_32= \
 		RC_CFLAGS="${CFLAGS}" OFLAG="${CFLAGS}" \
 		|| die "emake failed for the cctools"
 	cd "${S}"/${CCTOOLS}/as
@@ -171,8 +178,8 @@
 }
 
 src_compile() {
-	compile_ld64
 	compile_cctools
+	compile_ld64
 }
 
 install_ld64() {
@@ -190,6 +197,8 @@
 	emake install_all_but_headers \
 		EFITOOLS= \
 		COMMON_SUBDIRS='ar misc otool' \
+		SUBDIRS_32= \
+		RC_CFLAGS="${CFLAGS}" OFLAG="${CFLAGS}" \
 		DSTROOT=\"${D}\" \
 		BINDIR=\"${EPREFIX}\"${BINPATH} \
 		LOCBINDIR=\"${EPREFIX}\"${BINPATH} \






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-devel/binutils-apple: ChangeLog binutils-apple-3.2.ebuild
@ 2009-09-14 14:42 Fabian Groffen (grobian)
  0 siblings, 0 replies; 3+ messages in thread
From: Fabian Groffen (grobian) @ 2009-09-14 14:42 UTC (permalink / raw
  To: gentoo-commits

grobian     09/09/14 14:42:51

  Modified:             ChangeLog binutils-apple-3.2.ebuild
  Log:
  add reference for the libunwind issue
  (Portage version: 2.2.00.14257-prefix/cvs/Darwin powerpc)

Revision  Changes    Path
1.5                  sys-devel/binutils-apple/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/binutils-apple/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/binutils-apple/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/binutils-apple/ChangeLog?r1=1.4&r2=1.5

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog	12 Sep 2009 14:17:48 -0000	1.4
+++ ChangeLog	14 Sep 2009 14:42:51 -0000	1.5
@@ -1,6 +1,6 @@
 # ChangeLog for sys-devel/binutils-apple
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/ChangeLog,v 1.4 2009/09/12 14:17:48 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/ChangeLog,v 1.5 2009/09/14 14:42:51 grobian Exp $
 
   12 Sep 2009; Fabian Groffen <grobian@gentoo.org>
   -binutils-apple-3.1.2-r1.ebuild, binutils-apple-3.2.ebuild:
@@ -15,6 +15,7 @@
   Since we cannot build ld64, but *can* build new cctools, build the ld64
   from 3.1.2 with the new cctools. Hopefully the new cctools fixes problems
   with Snow Leopard host provided objects and 64-bits awareness
+  http://lists.apple.com/archives/Darwin-dev/2009/Sep/msg00025.html
 
 *binutils-apple-3.2 (05 Sep 2009)
 



1.4                  sys-devel/binutils-apple/binutils-apple-3.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/binutils-apple/binutils-apple-3.2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/binutils-apple/binutils-apple-3.2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/binutils-apple/binutils-apple-3.2.ebuild?r1=1.3&r2=1.4

Index: binutils-apple-3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/binutils-apple-3.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- binutils-apple-3.2.ebuild	12 Sep 2009 14:17:48 -0000	1.3
+++ binutils-apple-3.2.ebuild	14 Sep 2009 14:42:51 -0000	1.4
@@ -1,12 +1,13 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/binutils-apple-3.2.ebuild,v 1.3 2009/09/12 14:17:48 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-apple/binutils-apple-3.2.ebuild,v 1.4 2009/09/14 14:42:51 grobian Exp $
 
 inherit eutils flag-o-matic toolchain-funcs
 
 RESTRICT="test" # the test suite will test what's installed.
 
 # LD64=ld64-95.2.12 # can't compile this one, missing libunwind/* includes
+# http://lists.apple.com/archives/Darwin-dev/2009/Sep/msg00025.html
 LD64=ld64-85.2.1 # from 3.1.2
 CCTOOLS=cctools-750
 LP64PATCHES=binutils-apple-LP64-patches-1






^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-09-14 14:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-14 14:42 [gentoo-commits] gentoo-x86 commit in sys-devel/binutils-apple: ChangeLog binutils-apple-3.2.ebuild Fabian Groffen (grobian)
  -- strict thread matches above, loose matches on Subject: below --
2009-09-12 13:03 Fabian Groffen (grobian)
2009-09-05 17:22 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