diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2008-11-26 01:10:35 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2008-11-26 01:10:35 +0000 |
commit | 8b56e3ec31fe56772120ab0a738b5b7e9a0782e4 (patch) | |
tree | d514fe2488ef43661d0be61ca3e06c6614dd9215 /app-misc/away | |
parent | Add a new revision with build fix for --as-needed and proper pam.d file. (diff) | |
download | gentoo-2-8b56e3ec31fe56772120ab0a738b5b7e9a0782e4.tar.gz gentoo-2-8b56e3ec31fe56772120ab0a738b5b7e9a0782e4.tar.bz2 gentoo-2-8b56e3ec31fe56772120ab0a738b5b7e9a0782e4.zip |
Fix CFLAGS and CC respecting too.
(Portage version: 2.2_rc16/cvs/Linux 2.6.27-gentoo-r4 x86_64)
Diffstat (limited to 'app-misc/away')
-rw-r--r-- | app-misc/away/ChangeLog | 6 | ||||
-rw-r--r-- | app-misc/away/away-0.9.5-r1.ebuild | 8 |
2 files changed, 10 insertions, 4 deletions
diff --git a/app-misc/away/ChangeLog b/app-misc/away/ChangeLog index 4a89c70080a9..1a9a180cdce0 100644 --- a/app-misc/away/ChangeLog +++ b/app-misc/away/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-misc/away # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/away/ChangeLog,v 1.15 2008/11/26 01:09:07 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/away/ChangeLog,v 1.16 2008/11/26 01:10:35 flameeyes Exp $ + + 26 Nov 2008; Diego E. Pettenò <flameeyes@gentoo.org> + away-0.9.5-r1.ebuild: + Fix CFLAGS and CC respecting too. *away-0.9.5-r1 (26 Nov 2008) diff --git a/app-misc/away/away-0.9.5-r1.ebuild b/app-misc/away/away-0.9.5-r1.ebuild index 78b8215fc7ba..f2e3c1b44c23 100644 --- a/app-misc/away/away-0.9.5-r1.ebuild +++ b/app-misc/away/away-0.9.5-r1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/away/away-0.9.5-r1.ebuild,v 1.1 2008/11/26 01:09:07 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/away/away-0.9.5-r1.ebuild,v 1.2 2008/11/26 01:10:35 flameeyes Exp $ -inherit pam +inherit pam toolchain-funcs flag-o-matic DESCRIPTION="Terminal locking program with few additional features" HOMEPAGE="http://unbeatenpath.net/software/away/" @@ -24,7 +24,9 @@ src_unpack() { "${S}"/Makefile || die "Makefile fix failed" } src_compile() { - emake || die + append-flags -pthread + + emake CFLAGS="${CFLAGS}" CC="$(tc-getCC)" || die } src_install() { |