summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2008-10-23 02:44:51 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2008-10-23 02:44:51 +0000
commit252d34317029e753eaf03e61e7057f189602392a (patch)
treefeff185f68c3d6c89d2f543398ed688c653b03e5 /app-arch/unlzx
parentRespect CC. (diff)
downloadgentoo-2-252d34317029e753eaf03e61e7057f189602392a.tar.gz
gentoo-2-252d34317029e753eaf03e61e7057f189602392a.tar.bz2
gentoo-2-252d34317029e753eaf03e61e7057f189602392a.zip
Respect LDFLAGS, respect CC.
(Portage version: 2.2_rc12/cvs/Linux 2.6.27-gentoo x86_64)
Diffstat (limited to 'app-arch/unlzx')
-rw-r--r--app-arch/unlzx/ChangeLog5
-rw-r--r--app-arch/unlzx/unlzx-1.1.ebuild6
2 files changed, 8 insertions, 3 deletions
diff --git a/app-arch/unlzx/ChangeLog b/app-arch/unlzx/ChangeLog
index 94b7e8d90dc0..cb85f70eb169 100644
--- a/app-arch/unlzx/ChangeLog
+++ b/app-arch/unlzx/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-arch/unlzx
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/unlzx/ChangeLog,v 1.17 2008/01/26 18:43:52 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/unlzx/ChangeLog,v 1.18 2008/10/23 02:44:51 flameeyes Exp $
+
+ 23 Oct 2008; Diego Pettenò <flameeyes@gentoo.org> unlzx-1.1.ebuild:
+ Respect LDFLAGS, respect CC.
26 Jan 2008; Fabian Groffen <grobian@gentoo.org> unlzx-1.1.ebuild:
Dropped ppc-macos keyword, see you in prefix
diff --git a/app-arch/unlzx/unlzx-1.1.ebuild b/app-arch/unlzx/unlzx-1.1.ebuild
index 7ce05c60f875..e480f1feae59 100644
--- a/app-arch/unlzx/unlzx-1.1.ebuild
+++ b/app-arch/unlzx/unlzx-1.1.ebuild
@@ -1,6 +1,8 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/unlzx/unlzx-1.1.ebuild,v 1.25 2008/01/26 18:43:52 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/unlzx/unlzx-1.1.ebuild,v 1.26 2008/10/23 02:44:51 flameeyes Exp $
+
+inherit toolchain-funcs
DESCRIPTION="Unarchiver for Amiga LZX archives"
SRC_URI="ftp://us.aminet.net/pub/aminet/misc/unix/${PN}.c.gz ftp://us.aminet.net/pub/aminet/misc/unix/${PN}.c.gz.readme"
@@ -18,7 +20,7 @@ src_unpack() {
}
src_compile() {
- gcc ${CFLAGS} -o unlzx unlzx.c || die
+ $(tc-getCC) ${CFLAGS} ${LDFLAGS} -o unlzx unlzx.c || die
}
src_install() {