diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2009-01-29 01:36:24 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2009-01-29 01:36:24 +0000 |
commit | 3d800cb332011004b84294c5296b2b4b3ad22654 (patch) | |
tree | b6452d78368f12464b6d2612591ec8ae0810c7e4 /games-puzzle | |
parent | clean up (diff) | |
download | gentoo-2-3d800cb332011004b84294c5296b2b4b3ad22654.tar.gz gentoo-2-3d800cb332011004b84294c5296b2b4b3ad22654.tar.bz2 gentoo-2-3d800cb332011004b84294c5296b2b4b3ad22654.zip |
EAPI=2; respect CC
(Portage version: 2.1.6.4/cvs/Linux 2.6.28.1 i686)
Diffstat (limited to 'games-puzzle')
-rw-r--r-- | games-puzzle/xblockout/ChangeLog | 8 | ||||
-rw-r--r-- | games-puzzle/xblockout/xblockout-1.1.5-r1.ebuild | 18 |
2 files changed, 13 insertions, 13 deletions
diff --git a/games-puzzle/xblockout/ChangeLog b/games-puzzle/xblockout/ChangeLog index ec7cbf8362fc..3d3b8da14ae3 100644 --- a/games-puzzle/xblockout/ChangeLog +++ b/games-puzzle/xblockout/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-puzzle/xblockout -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xblockout/ChangeLog,v 1.19 2008/10/27 22:42:20 tupone Exp $ +# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xblockout/ChangeLog,v 1.20 2009/01/29 01:36:24 mr_bones_ Exp $ + + 29 Jan 2009; Michael Sterrett <mr_bones_@gentoo.org> + xblockout-1.1.5-r1.ebuild: + EAPI=2; respect CC *xblockout-1.1.5-r1 (27 Oct 2008) diff --git a/games-puzzle/xblockout/xblockout-1.1.5-r1.ebuild b/games-puzzle/xblockout/xblockout-1.1.5-r1.ebuild index b7c83c95810a..95587dada844 100644 --- a/games-puzzle/xblockout/xblockout-1.1.5-r1.ebuild +++ b/games-puzzle/xblockout/xblockout-1.1.5-r1.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xblockout/xblockout-1.1.5-r1.ebuild,v 1.1 2008/10/27 22:42:20 tupone Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xblockout/xblockout-1.1.5-r1.ebuild,v 1.2 2009/01/29 01:36:24 mr_bones_ Exp $ +EAPI=2 inherit flag-o-matic eutils games DESCRIPTION="X Window block dropping game in 3 Dimension" @@ -17,24 +18,19 @@ DEPEND="x11-libs/libXext" S=${WORKDIR}/xbl-${PV} -src_unpack() { - unpack ${A} - cd "${S}" - +src_prepare() { epatch "${FILESDIR}"/${P}-font.patch - sed -i \ + -e '/^CC/d' \ -e 's:-lm:-lm -lX11:' \ -e '/DGROUP_GID/d' \ -e "s:-g$:${CFLAGS}:" \ Makefile.in || die "sed failed" -} - -src_compile() { # Don't know about other archs. --slarti use amd64 && filter-flags "-fweb" +} - egamesconf || die +src_compile() { emake \ USE_SETGID= \ SCOREDIR="${GAMES_DATADIR}/${PN}" \ |