diff options
author | Fabian Groffen <grobian@gentoo.org> | 2008-01-03 18:16:00 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2008-01-03 18:16:00 +0000 |
commit | f70ea949d002c996a54743a1f6e9fda2d610d15a (patch) | |
tree | d1503bbec6782ade5bdc97bd5477e55d1d684d53 /app-text | |
parent | Remove old ebuilds. (diff) | |
download | gentoo-2-f70ea949d002c996a54743a1f6e9fda2d610d15a.tar.gz gentoo-2-f70ea949d002c996a54743a1f6e9fda2d610d15a.tar.bz2 gentoo-2-f70ea949d002c996a54743a1f6e9fda2d610d15a.zip |
Use our gcc for linking, instead of hardcoded cc, respect LDFLAGS. Dropped ppc-macos keyword, see you in prefix
(Portage version: 2.1.3.19)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/par/ChangeLog | 8 | ||||
-rw-r--r-- | app-text/par/par-1.52.ebuild | 9 |
2 files changed, 11 insertions, 6 deletions
diff --git a/app-text/par/ChangeLog b/app-text/par/ChangeLog index 47dfd7940d1b..5576a2c1e9c6 100644 --- a/app-text/par/ChangeLog +++ b/app-text/par/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-text/par -# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/par/ChangeLog,v 1.10 2006/12/02 11:16:46 masterdriverz Exp $ +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/par/ChangeLog,v 1.11 2008/01/03 18:16:00 grobian Exp $ + + 03 Jan 2008; Fabian Groffen <grobian@gentoo.org> par-1.52.ebuild: + Use our gcc for linking, instead of hardcoded cc, respect LDFLAGS. Dropped + ppc-macos keyword, see you in prefix 02 Dec 2006; Charlie Shepherd <masterdriverz@gentoo.org> par-1.52.ebuild: Add blockers, thanks to Georgi Georgiev for reporting, bug 85610 diff --git a/app-text/par/par-1.52.ebuild b/app-text/par/par-1.52.ebuild index 47365c0f869d..d32db8a42cca 100644 --- a/app-text/par/par-1.52.ebuild +++ b/app-text/par/par-1.52.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/par/par-1.52.ebuild,v 1.9 2006/12/02 11:16:46 masterdriverz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/par/par-1.52.ebuild,v 1.10 2008/01/03 18:16:00 grobian Exp $ inherit toolchain-funcs @@ -11,7 +11,7 @@ SRC_URI="http://www.nicemice.net/par/${MY_P/./}.tar.gz" LICENSE="freedist" SLOT="0" -KEYWORDS="~amd64 ~mips ~ppc-macos ~sparc ~x86" +KEYWORDS="~amd64 ~mips ~sparc ~x86" IUSE="" DEPEND="!dev-util/par @@ -20,7 +20,8 @@ DEPEND="!dev-util/par S=${WORKDIR}/${MY_P} src_compile() { - make -f protoMakefile CC="$(tc-getCC) -c $CFLAGS" || die 'make failed' + make -f protoMakefile CC="$(tc-getCC) -c $CFLAGS" \ + LINK1="$(tc-getCC) $LDFLAGS" || die 'make failed' } src_install() { |