summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2008-10-24 17:36:11 +0000
committerUlrich Müller <ulm@gentoo.org>2008-10-24 17:36:11 +0000
commit3e79e67b53eb002ef284f5c35789d42ae63b0f02 (patch)
tree5e0fee5a432d9e0f7618d1b7649b58bfad128d98 /app-editors/qemacs
parentInherit toolchain-funcs and export CC variable, bug 243560. (diff)
downloadgentoo-2-3e79e67b53eb002ef284f5c35789d42ae63b0f02.tar.gz
gentoo-2-3e79e67b53eb002ef284f5c35789d42ae63b0f02.tar.bz2
gentoo-2-3e79e67b53eb002ef284f5c35789d42ae63b0f02.zip
Inherit toolchain-funcs and call econf with --cc option, bug 243572.
(Portage version: 2.2_rc12/cvs/Linux 2.6.26-gentoo-r1 i686)
Diffstat (limited to 'app-editors/qemacs')
-rw-r--r--app-editors/qemacs/ChangeLog6
-rw-r--r--app-editors/qemacs/qemacs-0.3.2_pre20070226.ebuild7
2 files changed, 9 insertions, 4 deletions
diff --git a/app-editors/qemacs/ChangeLog b/app-editors/qemacs/ChangeLog
index a781f8e3d757..a005de96ddf5 100644
--- a/app-editors/qemacs/ChangeLog
+++ b/app-editors/qemacs/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-editors/qemacs
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v 1.37 2008/10/05 11:31:50 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v 1.38 2008/10/24 17:36:11 ulm Exp $
+
+ 24 Oct 2008; Ulrich Mueller <ulm@gentoo.org>
+ qemacs-0.3.2_pre20070226.ebuild:
+ Inherit toolchain-funcs and call econf with --cc option, bug 243572.
05 Oct 2008; Diego Pettenò <flameeyes@gentoo.org>
qemacs-0.3.2_pre20070226.ebuild:
diff --git a/app-editors/qemacs/qemacs-0.3.2_pre20070226.ebuild b/app-editors/qemacs/qemacs-0.3.2_pre20070226.ebuild
index 8f42a7e1261d..8dc1ce0f3d27 100644
--- a/app-editors/qemacs/qemacs-0.3.2_pre20070226.ebuild
+++ b/app-editors/qemacs/qemacs-0.3.2_pre20070226.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-editors/qemacs/qemacs-0.3.2_pre20070226.ebuild,v 1.9 2008/10/05 11:31:50 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/qemacs-0.3.2_pre20070226.ebuild,v 1.10 2008/10/24 17:36:11 ulm Exp $
-inherit eutils versionator flag-o-matic
+inherit eutils flag-o-matic toolchain-funcs
DESCRIPTION="QEmacs (for Quick Emacs) is a very small but powerful UNIX editor"
HOMEPAGE="http://fabrice.bellard.free.fr/qemacs/"
@@ -51,7 +51,8 @@ src_unpack() {
src_compile() {
# when using any other CFLAGS than -O0, qemacs will segfault on startup, see bug #92011
replace-flags -O? -O0
- econf $(use_enable X x11) \
+ econf --cc="$(tc-getCC)" \
+ $(use_enable X x11) \
$(use_enable png) \
$(use_enable xv) \
|| die "econf failed"