diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2005-02-12 20:35:13 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2005-02-12 20:35:13 +0000 |
commit | 698fb3f4de095efc69d02445bc387c2c1462653b (patch) | |
tree | ad934bda1299795c041cd7cf872576412fc6bb77 /games-emulation/xmame | |
parent | sparc header fix sent by me upstream abouta month ago. (diff) | |
download | gentoo-2-698fb3f4de095efc69d02445bc387c2c1462653b.tar.gz gentoo-2-698fb3f4de095efc69d02445bc387c2c1462653b.tar.bz2 gentoo-2-698fb3f4de095efc69d02445bc387c2c1462653b.zip |
Don't try to install setuid (bug #81693)
(Portage version: 2.0.51-r15)
Diffstat (limited to 'games-emulation/xmame')
-rw-r--r-- | games-emulation/xmame/ChangeLog | 5 | ||||
-rw-r--r-- | games-emulation/xmame/xmame-0.90.ebuild | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/games-emulation/xmame/ChangeLog b/games-emulation/xmame/ChangeLog index 4906ecba56a1..0fa964735513 100644 --- a/games-emulation/xmame/ChangeLog +++ b/games-emulation/xmame/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-emulation/xmame # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/xmame/ChangeLog,v 1.33 2005/02/12 05:55:10 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/xmame/ChangeLog,v 1.34 2005/02/12 20:35:13 mr_bones_ Exp $ + + 12 Feb 2005; Michael Sterrett <mr_bones_@gentoo.org> xmame-0.90.ebuild: + Don't try to install setuid (bug #81693) 12 Feb 2005; Michael Sterrett <mr_bones_@gentoo.org> -xmame-0.86.ebuild, -xmame-0.88.ebuild, -xmame-0.89.ebuild: diff --git a/games-emulation/xmame/xmame-0.90.ebuild b/games-emulation/xmame/xmame-0.90.ebuild index 21bd5fc76e6d..0ea79180de88 100644 --- a/games-emulation/xmame/xmame-0.90.ebuild +++ b/games-emulation/xmame/xmame-0.90.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/xmame/xmame-0.90.ebuild,v 1.1 2005/01/24 06:00:40 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/xmame/xmame-0.90.ebuild,v 1.2 2005/02/12 20:35:13 mr_bones_ Exp $ inherit flag-o-matic gcc eutils games @@ -119,7 +119,10 @@ src_unpack() { -e "s:[Xx]mame:${TARGET}:g" \ doc/*.6 \ || die "sed man pages failed" + # no, we don't want to install setuid (bug #81693) sed -i \ + -e 's/^doinstallsuid/notforus/' \ + -e 's/doinstallsuid/doinstall/' \ -e '/^QUIET/s:^:#:' src/unix/unix.mak \ || die "sed src/unix/unix.mak failed" } |