diff options
author | 2006-01-15 12:24:35 +0000 | |
---|---|---|
committer | 2006-01-15 12:24:35 +0000 | |
commit | ccaabff985597525f34a58f1b5238af8f51669da (patch) | |
tree | 3f5a00daee097783c5690441d280d944cb02066e /x11-misc/3ddesktop/3ddesktop-0.2.9.ebuild | |
parent | stable amd64 (diff) | |
download | historical-ccaabff985597525f34a58f1b5238af8f51669da.tar.gz historical-ccaabff985597525f34a58f1b5238af8f51669da.tar.bz2 historical-ccaabff985597525f34a58f1b5238af8f51669da.zip |
Fix compiling with gcc 4, see bug #118458.
Package-Manager: portage-2.1_pre3-r1
Diffstat (limited to 'x11-misc/3ddesktop/3ddesktop-0.2.9.ebuild')
-rw-r--r-- | x11-misc/3ddesktop/3ddesktop-0.2.9.ebuild | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/x11-misc/3ddesktop/3ddesktop-0.2.9.ebuild b/x11-misc/3ddesktop/3ddesktop-0.2.9.ebuild index 4686df1dc335..9fb28c570ab7 100644 --- a/x11-misc/3ddesktop/3ddesktop-0.2.9.ebuild +++ b/x11-misc/3ddesktop/3ddesktop-0.2.9.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/3ddesktop/3ddesktop-0.2.9.ebuild,v 1.6 2006/01/15 01:40:24 cryos Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/3ddesktop/3ddesktop-0.2.9.ebuild,v 1.7 2006/01/15 12:24:35 nelchael Exp $ + +inherit eutils DESCRIPTION="OpenGL virtual desktop switching" HOMEPAGE="http://desk3d.sourceforge.net/" @@ -27,7 +29,12 @@ DEPEND="${RDEPEND} x11-proto/xproto ) virtual/x11 )" -src_install () { +src_unpack() { + unpack "${A}" + epatch "${FILESDIR}/${P}-gcc4.patch" +} + +src_install() { make DESTDIR="${D}" install || die dodoc README AUTHORS TODO ChangeLog README.windowmanagers } |