diff options
author | Christian Faulhammer <opfer@gentoo.org> | 2006-10-30 19:12:48 +0000 |
---|---|---|
committer | Christian Faulhammer <opfer@gentoo.org> | 2006-10-30 19:12:48 +0000 |
commit | 7264a9cf21d9d2d37a189ef0be35bfeddb7073aa (patch) | |
tree | 84aa660bf187714761ca7a264795a73335108014 /app-editors/qemacs | |
parent | May use mplayer or totem to generate the thumbnails (diff) | |
download | gentoo-2-7264a9cf21d9d2d37a189ef0be35bfeddb7073aa.tar.gz gentoo-2-7264a9cf21d9d2d37a189ef0be35bfeddb7073aa.tar.bz2 gentoo-2-7264a9cf21d9d2d37a189ef0be35bfeddb7073aa.zip |
do flag filtering the right way, as reported in bug #148229
(Portage version: 2.1.1-r1)
Diffstat (limited to 'app-editors/qemacs')
-rw-r--r-- | app-editors/qemacs/ChangeLog | 6 | ||||
-rw-r--r-- | app-editors/qemacs/qemacs-0.3.1-r3.ebuild | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/app-editors/qemacs/ChangeLog b/app-editors/qemacs/ChangeLog index 3a14c8092f8b..f0432ad2db15 100644 --- a/app-editors/qemacs/ChangeLog +++ b/app-editors/qemacs/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-editors/qemacs # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v 1.21 2006/08/09 15:54:04 kugelfang Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v 1.22 2006/10/30 19:12:48 opfer Exp $ + + 30 Oct 2006; Christian Faulhammer <opfer@gentoo.org> + qemacs-0.3.1-r3.ebuild: + do flag filtering the right way, as reported in bug #148229 09 Aug 2006; Danny van Dyk <kugelfang@gentoo.org> qemacs-0.3.1-r3.ebuild: Marked stable on amd64 wrt bug #141567. diff --git a/app-editors/qemacs/qemacs-0.3.1-r3.ebuild b/app-editors/qemacs/qemacs-0.3.1-r3.ebuild index 71c192032a39..f0ab23c4bc37 100644 --- a/app-editors/qemacs/qemacs-0.3.1-r3.ebuild +++ b/app-editors/qemacs/qemacs-0.3.1-r3.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/qemacs-0.3.1-r3.ebuild,v 1.4 2006/08/09 15:54:04 kugelfang Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/qemacs-0.3.1-r3.ebuild,v 1.5 2006/10/30 19:12:48 opfer Exp $ -inherit eutils +inherit eutils versionator DESCRIPTION="QEmacs (for Quick Emacs) is a very small but powerful UNIX editor." HOMEPAGE="http://fabrice.bellard.free.fr/qemacs/" @@ -55,7 +55,7 @@ src_unpack() { src_compile() { # when using any other CFLAGS than -O0, qemacs will segfault on startup, see bug #92011 - CFLAGS="-O0" + replace-flags -O? -O0 econf $(use_enable X x11) \ $(use_enable png) \ $(use_enable xv) \ |