diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2003-04-01 21:11:11 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2003-04-01 21:11:11 +0000 |
commit | 69f222c0bcc452bceecae9cca49930e284b5bd61 (patch) | |
tree | 1183a032aefe4fe125e7fe8c219ad66ae694bd2c /x11-wm | |
parent | various cleanups (diff) | |
download | historical-69f222c0bcc452bceecae9cca49930e284b5bd61.tar.gz historical-69f222c0bcc452bceecae9cca49930e284b5bd61.tar.bz2 historical-69f222c0bcc452bceecae9cca49930e284b5bd61.zip |
closing bug 18294 and unmasking for x86, ~ on alpha
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/sawfish/ChangeLog | 5 | ||||
-rw-r--r-- | x11-wm/sawfish/sawfish-1.3.ebuild | 7 |
2 files changed, 9 insertions, 3 deletions
diff --git a/x11-wm/sawfish/ChangeLog b/x11-wm/sawfish/ChangeLog index a09b8e07094a..31e91fc2a9bd 100644 --- a/x11-wm/sawfish/ChangeLog +++ b/x11-wm/sawfish/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-wm/sawfish # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/sawfish/ChangeLog,v 1.27 2003/03/26 08:25:47 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/sawfish/ChangeLog,v 1.28 2003/04/01 21:11:11 drobbins Exp $ + + 01 Apr 2003; Daniel Robbins <drobbins@gentoo.org> sawfish-1.3.ebuild: + compile fix for gcc 2.95, closing bug #18294. Unmasking for x86. *sawfish-1.3 (25 Mar 2003) diff --git a/x11-wm/sawfish/sawfish-1.3.ebuild b/x11-wm/sawfish/sawfish-1.3.ebuild index a8d8187df461..98ada698ad03 100644 --- a/x11-wm/sawfish/sawfish-1.3.ebuild +++ b/x11-wm/sawfish/sawfish-1.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/sawfish/sawfish-1.3.ebuild,v 1.1 2003/03/26 08:25:47 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/sawfish/sawfish-1.3.ebuild,v 1.2 2003/04/01 21:11:11 drobbins Exp $ inherit base eutils @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/sawmill/${P}.tar.gz" HOMEPAGE="http://sawmill.sourceforge.net/" SLOT="0" LICENSE="GPL-2" -KEYWORDS="~x86" +KEYWORDS="x86 ~alpha" DEPEND=">=dev-util/pkgconfig-0.12.0 >=x11-libs/rep-gtk-0.17 @@ -59,6 +59,9 @@ src_compile() { --with-audiofile \ ${myconf} || die + #the following two lines allow sawfish to compile with gcc 2.95 (see bug 18294) + cp Makedefs Makedefs.orig + sed -e s:'REP_CFLAGS=':'REP-CFLAGS=-I/usr/include/freetype2 ': Makedefs.orig > Makedefs || die # DO NOT USE "emake" !!! - Azarah, 24 Jun 2002 MAKEOPTS=-j1 make || die } |