diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2012-02-06 22:34:47 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2012-02-06 22:34:47 +0000 |
commit | b8ad45f4f4f30406fc386b1db9a6dbef6ea25e6c (patch) | |
tree | 61a5dec5eeeecb14974a0324cdacfde71cf28c0d /games-engines | |
parent | media-gfx/blender: 3D mouse support (bug #390427) (diff) | |
download | gentoo-2-b8ad45f4f4f30406fc386b1db9a6dbef6ea25e6c.tar.gz gentoo-2-b8ad45f4f4f30406fc386b1db9a6dbef6ea25e6c.tar.bz2 gentoo-2-b8ad45f4f4f30406fc386b1db9a6dbef6ea25e6c.zip |
use instead of /tmp - bug #402459
(Portage version: 2.1.10.44/cvs/Linux i686)
Diffstat (limited to 'games-engines')
-rw-r--r-- | games-engines/scummvm-tools/ChangeLog | 6 | ||||
-rw-r--r-- | games-engines/scummvm-tools/scummvm-tools-1.4.0.ebuild | 9 |
2 files changed, 11 insertions, 4 deletions
diff --git a/games-engines/scummvm-tools/ChangeLog b/games-engines/scummvm-tools/ChangeLog index 57dedcc32ca5..0b2975d5b1e4 100644 --- a/games-engines/scummvm-tools/ChangeLog +++ b/games-engines/scummvm-tools/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-engines/scummvm-tools # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v 1.52 2012/01/28 15:22:33 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/ChangeLog,v 1.53 2012/02/06 22:34:47 mr_bones_ Exp $ + + 06 Feb 2012; Michael Sterrett <mr_bones_@gentoo.org> + scummvm-tools-1.4.0.ebuild: + use $T instead of /tmp - bug #402459 28 Jan 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> scummvm-tools-1.4.0.ebuild: diff --git a/games-engines/scummvm-tools/scummvm-tools-1.4.0.ebuild b/games-engines/scummvm-tools/scummvm-tools-1.4.0.ebuild index 7fc22e73bd0e..82e0e5264383 100644 --- a/games-engines/scummvm-tools/scummvm-tools-1.4.0.ebuild +++ b/games-engines/scummvm-tools/scummvm-tools-1.4.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/scummvm-tools-1.4.0.ebuild,v 1.3 2012/01/28 15:22:33 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/scummvm-tools-1.4.0.ebuild,v 1.4 2012/02/06 22:34:47 mr_bones_ Exp $ EAPI=2 WX_GTK_VER=2.8 @@ -30,10 +30,13 @@ S=${WORKDIR}/${P/_/} src_prepare() { rm -rf *.bat dists/win32 + # use $T instead of /tmp - bug #402459 + sed -i \ + -e 's:/tmp:"${T}":' \ + configure || die sed -ri \ -e '/^(CC|CXX)\b/d' \ - Makefile \ - || die "sed failed" + Makefile || die } src_configure() { |