summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Ostorga <vostorga@gentoo.org>2009-07-23 23:02:13 +0000
committerVictor Ostorga <vostorga@gentoo.org>2009-07-23 23:02:13 +0000
commit3db65f9ecbba97cb8d127d9240a691c4164e2a3c (patch)
tree5d033919d3c176e95bbbcd0512375adb55276347 /app-text/lout
parentVersion bumped. (diff)
downloadgentoo-2-3db65f9ecbba97cb8d127d9240a691c4164e2a3c.tar.gz
gentoo-2-3db65f9ecbba97cb8d127d9240a691c4164e2a3c.tar.bz2
gentoo-2-3db65f9ecbba97cb8d127d9240a691c4164e2a3c.zip
Respecting CC variable, closes bug #243732
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'app-text/lout')
-rw-r--r--app-text/lout/ChangeLog8
-rw-r--r--app-text/lout/lout-3.30.ebuild9
-rw-r--r--app-text/lout/lout-3.31.ebuild9
-rw-r--r--app-text/lout/lout-3.38.ebuild6
4 files changed, 22 insertions, 10 deletions
diff --git a/app-text/lout/ChangeLog b/app-text/lout/ChangeLog
index 00933d8ca297..2b387caa4bc3 100644
--- a/app-text/lout/ChangeLog
+++ b/app-text/lout/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-text/lout
-# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/lout/ChangeLog,v 1.22 2009/03/01 15:25:14 patrick Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/lout/ChangeLog,v 1.23 2009/07/23 23:02:13 vostorga Exp $
+
+ 23 Jul 2009; Víctor Ostorga <vostorga@gentoo.org> lout-3.30.ebuild,
+ lout-3.31.ebuild, lout-3.38.ebuild:
+ Respecting CC variable, closes bug #243732
*lout-3.38 (01 Mar 2009)
diff --git a/app-text/lout/lout-3.30.ebuild b/app-text/lout/lout-3.30.ebuild
index 2895a7b0a646..551890b371d7 100644
--- a/app-text/lout/lout-3.30.ebuild
+++ b/app-text/lout/lout-3.30.ebuild
@@ -1,6 +1,8 @@
-# Copyright 1999-2005 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/lout/lout-3.30.ebuild,v 1.6 2005/03/04 11:21:36 kugelfang Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/lout/lout-3.30.ebuild,v 1.7 2009/07/23 23:02:13 vostorga Exp $
+
+inherit toolchain-funcs
IUSE="zlib doc"
@@ -13,11 +15,12 @@ SLOT="0"
KEYWORDS="x86 ppc sparc ~amd64"
DEPEND="zlib? ( >=sys-libs/zlib-1.1.4 )"
+RDEPEND="${DEPEND}"
src_compile() {
local myconf
use zlib && myconf="$myconf PDF_COMPRESSION=1 ZLIB=/usr/lib/libz.a"
- emake BINDIR=/usr/bin \
+ emake CC=$(tc-getCC) BINDIR=/usr/bin \
LIBDIR=/usr/share/lout \
DOCDIR=/usr/share/doc/${P} \
MANDIR=/usr/share/man/man1 \
diff --git a/app-text/lout/lout-3.31.ebuild b/app-text/lout/lout-3.31.ebuild
index 81ea0d861f9f..afca9b967fbe 100644
--- a/app-text/lout/lout-3.31.ebuild
+++ b/app-text/lout/lout-3.31.ebuild
@@ -1,6 +1,8 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/lout/lout-3.31.ebuild,v 1.2 2008/01/22 21:32:11 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/lout/lout-3.31.ebuild,v 1.3 2009/07/23 23:02:13 vostorga Exp $
+
+inherit toolchain-funcs
IUSE="zlib doc"
@@ -13,11 +15,12 @@ SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
DEPEND="zlib? ( >=sys-libs/zlib-1.1.4 )"
+RDEPEND="${DEPEND}"
src_compile() {
local myconf
use zlib && myconf="$myconf PDF_COMPRESSION=1 ZLIB=-lz"
- emake BINDIR=/usr/bin \
+ emake CC="$(tc-getCC)" BINDIR=/usr/bin \
LIBDIR=/usr/share/lout \
DOCDIR=/usr/share/doc/${P} \
MANDIR=/usr/share/man/man1 \
diff --git a/app-text/lout/lout-3.38.ebuild b/app-text/lout/lout-3.38.ebuild
index a773933b0491..d46bb5fd4be7 100644
--- a/app-text/lout/lout-3.38.ebuild
+++ b/app-text/lout/lout-3.38.ebuild
@@ -1,6 +1,8 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/lout/lout-3.38.ebuild,v 1.1 2009/03/01 15:25:14 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/lout/lout-3.38.ebuild,v 1.2 2009/07/23 23:02:13 vostorga Exp $
+
+inherit toolchain-funcs
IUSE="zlib doc"
@@ -18,7 +20,7 @@ RDEPEND="${DEPEND}"
src_compile() {
local myconf
use zlib && myconf="$myconf PDF_COMPRESSION=1 ZLIB=-lz"
- emake BINDIR=/usr/bin \
+ emake CC="$(tc-getCC)" BINDIR=/usr/bin \
LOUTLIBDIR=/usr/share/lout \
LOUTDOCDIR=/usr/share/doc/${P} \
MANDIR=/usr/share/man/man1 \