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/greedy-0.2.0-r1.ebuild | |
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/greedy-0.2.0-r1.ebuild')
-rw-r--r-- | games-puzzle/greedy/greedy-0.2.0-r1.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
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" } |