diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-09-30 11:28:28 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-09-30 11:28:28 +0000 |
commit | 367b2598bb0f21720be4ef7dd802b852acab347c (patch) | |
tree | ba22901817099532e0d044c470e207b470dcc78f /games-puzzle/pingus | |
parent | HOMEPAGE changed (Manifest recommit) (diff) | |
download | gentoo-2-367b2598bb0f21720be4ef7dd802b852acab347c.tar.gz gentoo-2-367b2598bb0f21720be4ef7dd802b852acab347c.tar.bz2 gentoo-2-367b2598bb0f21720be4ef7dd802b852acab347c.zip |
work around brief bug in bash3 (bug #65729)
Diffstat (limited to 'games-puzzle/pingus')
-rw-r--r-- | games-puzzle/pingus/ChangeLog | 5 | ||||
-rw-r--r-- | games-puzzle/pingus/pingus-0.6.0-r1.ebuild | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/games-puzzle/pingus/ChangeLog b/games-puzzle/pingus/ChangeLog index 6f2a887015ca..f2e01c9e9a2b 100644 --- a/games-puzzle/pingus/ChangeLog +++ b/games-puzzle/pingus/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-puzzle/pingus # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/pingus/ChangeLog,v 1.6 2004/09/20 20:23:58 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/pingus/ChangeLog,v 1.7 2004/09/30 11:28:28 mr_bones_ Exp $ + + 30 Sep 2004; Michael Sterrett <mr_bones_@gentoo.org> pingus-0.6.0-r1.ebuild: + work around brief bug in bash3 (bug #65729) 20 Sep 2004; Michael Sterrett <mr_bones_@gentoo.org> pingus-0.6.0-r1.ebuild: Fix compile with -Os (bug #64581) diff --git a/games-puzzle/pingus/pingus-0.6.0-r1.ebuild b/games-puzzle/pingus/pingus-0.6.0-r1.ebuild index 9995fdd5093d..53746675fa9b 100644 --- a/games-puzzle/pingus/pingus-0.6.0-r1.ebuild +++ b/games-puzzle/pingus/pingus-0.6.0-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/pingus/pingus-0.6.0-r1.ebuild,v 1.9 2004/09/20 20:23:58 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/pingus/pingus-0.6.0-r1.ebuild,v 1.10 2004/09/30 11:28:28 mr_bones_ Exp $ inherit eutils flag-o-matic games @@ -19,7 +19,7 @@ DEPEND=">=media-libs/hermes-1.3.2-r2 src_unpack() { unpack ${A} - cd ${S} + cd "${S}" epatch "${FILESDIR}/${PV}-gcc3.patch" epatch "${FILESDIR}/${PV}-gcc34.patch" # bug 63773 autoconf || die @@ -39,9 +39,9 @@ src_compile() { } src_install() { - make install DESTDIR=${D} || die "make install failed" + make DESTDIR="${D}" install || die "make install failed" # pos install process ... FIXME - mv "${D}/usr/games/"{games,bin} + mv "${D}/usr/games/games" "${D}/usr/games/bin" cd "${D}/usr/share/games" use nls && mv locale ../ mv games/pingus . |