diff options
author | 2006-06-29 15:39:40 +0000 | |
---|---|---|
committer | 2006-06-29 15:39:40 +0000 | |
commit | a2c62618a7bb833756a56b8b9fdf976376615aa7 (patch) | |
tree | e30e5baae550cce122410ed0b2f129f309c7b7af /games-puzzle/greedy | |
parent | Fixed binaries being pre-stripped. Thanks to Tristan Heaven <tristanheaven@g... (diff) | |
download | gentoo-2-a2c62618a7bb833756a56b8b9fdf976376615aa7.tar.gz gentoo-2-a2c62618a7bb833756a56b8b9fdf976376615aa7.tar.bz2 gentoo-2-a2c62618a7bb833756a56b8b9fdf976376615aa7.zip |
Fixed binaries being pre-stripped. Thanks to Tristan Heaven <tristanheaven@gmail.com> for the patch. Closing bug #137715.
(Portage version: 2.1.1_pre1-r2)
Diffstat (limited to 'games-puzzle/greedy')
-rw-r--r-- | games-puzzle/greedy/ChangeLog | 9 | ||||
-rw-r--r-- | games-puzzle/greedy/greedy-0.2.0-r1.ebuild | 10 |
2 files changed, 12 insertions, 7 deletions
diff --git a/games-puzzle/greedy/ChangeLog b/games-puzzle/greedy/ChangeLog index bb9fbd0c3323..e94cc220f3df 100644 --- a/games-puzzle/greedy/ChangeLog +++ b/games-puzzle/greedy/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-puzzle/greedy -# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/greedy/ChangeLog,v 1.5 2004/12/28 23:12:05 ciaranm Exp $ +# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/greedy/ChangeLog,v 1.6 2006/06/29 15:39:40 wolf31o2 Exp $ + + 29 Jun 2006; Chris Gianelloni <wolf31o2@gentoo.org> + greedy-0.2.0-r1.ebuild: + Fixed binaries being pre-stripped. Thanks to Tristan Heaven + <tristanheaven@gmail.com> for the patch. Closing bug #137715. 28 Dec 2004; Ciaran McCreesh <ciaranm@gentoo.org> : Change encoding to UTF-8 for GLEP 31 compliance diff --git a/games-puzzle/greedy/greedy-0.2.0-r1.ebuild b/games-puzzle/greedy/greedy-0.2.0-r1.ebuild index 7cf83f99b90b..bbd99b7e4f16 100644 --- a/games-puzzle/greedy/greedy-0.2.0-r1.ebuild +++ b/games-puzzle/greedy/greedy-0.2.0-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/greedy/greedy-0.2.0-r1.ebuild,v 1.6 2004/07/01 05:24:56 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/greedy/greedy-0.2.0-r1.ebuild,v 1.7 2006/06/29 15:39:40 wolf31o2 Exp $ inherit games @@ -10,14 +10,14 @@ SRC_URI="http://www.kotinet.com/juhamattin/linux/download/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="x86 ppc amd64" +KEYWORDS="amd64 ppc x86" IUSE="" DEPEND="virtual/libc sys-libs/ncurses" src_compile() { - emake FLAGS="${CFLAGS}" || die "emake failed" + emake FLAGS="${CFLAGS}" STRIP=ls || die "emake failed" } src_install() { @@ -31,5 +31,5 @@ src_install() { prepgamesdirs # We need to set the permissions correctly - chmod 664 "${D}/${GAMES_STATEDIR}/greedy.scores" || die "chmod failed" + fperms 664 "${GAMES_STATEDIR}/greedy.scores" || die "fperms failed" } |