summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2008-10-23 02:46:26 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2008-10-23 02:46:26 +0000
commit7345ca6233609543da50aa88800cb469a2291289 (patch)
tree1c44c210ed748dbb3b7495e99c54de604c60d2a4
parentRespect LDFLAGS, respect CC. (diff)
downloadgentoo-2-7345ca6233609543da50aa88800cb469a2291289.tar.gz
gentoo-2-7345ca6233609543da50aa88800cb469a2291289.tar.bz2
gentoo-2-7345ca6233609543da50aa88800cb469a2291289.zip
Also AS needs to e replaced.
(Portage version: 2.2_rc12/cvs/Linux 2.6.27-gentoo x86_64)
-rw-r--r--app-arch/unzip/ChangeLog5
-rw-r--r--app-arch/unzip/unzip-5.52-r2.ebuild7
2 files changed, 8 insertions, 4 deletions
diff --git a/app-arch/unzip/ChangeLog b/app-arch/unzip/ChangeLog
index e0732ad9c10b..23f84f9aabbe 100644
--- a/app-arch/unzip/ChangeLog
+++ b/app-arch/unzip/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-arch/unzip
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v 1.56 2008/03/29 16:57:06 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v 1.57 2008/10/23 02:46:26 flameeyes Exp $
+
+ 23 Oct 2008; Diego Pettenò <flameeyes@gentoo.org> unzip-5.52-r2.ebuild:
+ Also AS needs to e replaced.
29 Mar 2008; Jeroen Roovers <jer@gentoo.org> unzip-5.52-r2.ebuild:
Stable for HPPA (bug #213761).
diff --git a/app-arch/unzip/unzip-5.52-r2.ebuild b/app-arch/unzip/unzip-5.52-r2.ebuild
index c794730e3718..971897075842 100644
--- a/app-arch/unzip/unzip-5.52-r2.ebuild
+++ b/app-arch/unzip/unzip-5.52-r2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/unzip-5.52-r2.ebuild,v 1.7 2008/04/13 22:56:16 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/unzip-5.52-r2.ebuild,v 1.8 2008/10/23 02:46:26 flameeyes Exp $
inherit eutils toolchain-funcs flag-o-matic
@@ -25,6 +25,7 @@ src_unpack() {
-e 's:-O :$(CFLAGS) $(CPPFLAGS) :' \
-e "s:CC=gcc :CC=$(tc-getCC) :" \
-e "s:LD=gcc :LD=$(tc-getCC) :" \
+ -e "s:AS=gcc :AS=$(tc-getCC) :" \
-e 's:LF2 = -s:LF2 = :' \
-e 's:LF = :LF = $(LDFLAGS) :' \
-e 's:SL = :SL = $(LDFLAGS) :' \
@@ -39,9 +40,9 @@ src_compile() {
i?86*-linux*) TARGET=linux_asm ;;
*-linux*) TARGET=linux_noasm ;;
i?86*-freebsd* | i?86*-dragonfly* | i?86*-openbsd* | i?86*-netbsd*)
- TARGET=freebsd ;; # mislabelled bsd with x86 asm
+ TARGET=freebsd ;; # mislabelled bsd with x86 asm
*-freebsd* | *-dragonfly* | *-openbsd* | *-netbsd*)
- TARGET=bsd ;;
+ TARGET=bsd ;;
*-darwin*) TARGET=macosx ;;
*) die "Unknown target, you suck" ;;
esac