diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-05-27 21:32:49 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-05-27 21:32:49 +0000 |
commit | 2a3031821ec522bf4a5311f97ba514874d2c72a4 (patch) | |
tree | c3f66bd8178c0418bac2796be6f3b8a3235f4c57 /games-emulation | |
parent | New testing portage that fixes stacked profiles. (Manifest recommit) (diff) | |
download | gentoo-2-2a3031821ec522bf4a5311f97ba514874d2c72a4.tar.gz gentoo-2-2a3031821ec522bf4a5311f97ba514874d2c72a4.tar.bz2 gentoo-2-2a3031821ec522bf4a5311f97ba514874d2c72a4.zip |
applied patch from Matteo Sasso to fix sandbox issues (bug #41006)
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/qmamecat/ChangeLog | 8 | ||||
-rw-r--r-- | games-emulation/qmamecat/qmamecat-0.44.45.ebuild | 11 |
2 files changed, 14 insertions, 5 deletions
diff --git a/games-emulation/qmamecat/ChangeLog b/games-emulation/qmamecat/ChangeLog index fa95b3ea90bc..e4fcf761013c 100644 --- a/games-emulation/qmamecat/ChangeLog +++ b/games-emulation/qmamecat/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-emulation/qmamecat -# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/qmamecat/ChangeLog,v 1.2 2003/09/10 16:01:17 vapier Exp $ +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/qmamecat/ChangeLog,v 1.3 2004/05/27 21:32:49 mr_bones_ Exp $ + + 27 May 2004; Michael Sterrett <mr_bones_@gentoo.org> + qmamecat-0.44.45.ebuild: + applied patch from Matteo Sasso to fix sandbox issues (bug #41006) *qmamecat-0.44.45 (02 Mar 2003) diff --git a/games-emulation/qmamecat/qmamecat-0.44.45.ebuild b/games-emulation/qmamecat/qmamecat-0.44.45.ebuild index 0aead886026b..d8ec3b5d72ff 100644 --- a/games-emulation/qmamecat/qmamecat-0.44.45.ebuild +++ b/games-emulation/qmamecat/qmamecat-0.44.45.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/qmamecat/qmamecat-0.44.45.ebuild,v 1.3 2004/05/27 02:02:35 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/qmamecat/qmamecat-0.44.45.ebuild,v 1.4 2004/05/27 21:32:49 mr_bones_ Exp $ + +inherit kde MY_PV="${PV/45/b45}" DESCRIPTION="QT mame catalog and frontend" @@ -16,9 +18,12 @@ DEPEND="virtual/glibc virtual/x11 x11-libs/qt" -S=${WORKDIR}/${PN} +S="${WORKDIR}/${PN}" src_compile() { + # See bug #41006 + kde_src_compile none + # emake is horribly broken make COPTIM="${CFLAGS}" || die } @@ -27,6 +32,6 @@ src_install() { rm bin/{Makefile,make.cfg} dobin bin/* doman doc/*.6 - rm doc/*.6 + rm doc/{*.6,COPYING} dodoc doc/* } |