diff options
author | Tristan Heaven <nyhm@gentoo.org> | 2007-03-15 12:03:51 +0000 |
---|---|---|
committer | Tristan Heaven <nyhm@gentoo.org> | 2007-03-15 12:03:51 +0000 |
commit | 392254226f5bf670ad805e8f6f1d1cfe649052ed (patch) | |
tree | fbbd08c4a47c268c4be762a0e01d7569ba4490c6 /games-puzzle/xpuyopuyo | |
parent | Make sure elinks is not linked against gnutls when merged with -ssl (bug #170... (diff) | |
download | gentoo-2-392254226f5bf670ad805e8f6f1d1cfe649052ed.tar.gz gentoo-2-392254226f5bf670ad805e8f6f1d1cfe649052ed.tar.bz2 gentoo-2-392254226f5bf670ad805e8f6f1d1cfe649052ed.zip |
inherit eutils
(Portage version: 2.1.2.2)
Diffstat (limited to 'games-puzzle/xpuyopuyo')
-rw-r--r-- | games-puzzle/xpuyopuyo/xpuyopuyo-0.9.8.ebuild | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/games-puzzle/xpuyopuyo/xpuyopuyo-0.9.8.ebuild b/games-puzzle/xpuyopuyo/xpuyopuyo-0.9.8.ebuild index 818411e9960e..c1dd26e54762 100644 --- a/games-puzzle/xpuyopuyo/xpuyopuyo-0.9.8.ebuild +++ b/games-puzzle/xpuyopuyo/xpuyopuyo-0.9.8.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xpuyopuyo/xpuyopuyo-0.9.8.ebuild,v 1.1 2007/03/04 01:33:22 tupone Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xpuyopuyo/xpuyopuyo-0.9.8.ebuild,v 1.2 2007/03/15 12:03:51 nyhm Exp $ -inherit games +inherit eutils games DESCRIPTION="A Tetris-like game with opponent" HOMEPAGE="http://chaos2.org/xpuyopuyo/" @@ -18,14 +18,16 @@ DEPEND="=x11-libs/gtk+-1.2* media-libs/libmikmod" src_compile() { - egamesconf --with-gnome \ + egamesconf \ + --with-gnome \ --enable-aibreed \ - --enable-network || die "econf failed" + --enable-network \ + || die emake || die "make failed" } src_install() { - make DESTDIR=${D} install || die "make failed" + emake DESTDIR="${D}" install || die "emake install failed" dodoc AUTHORS ChangeLog README TODO doicon ${PN}.xpm make_desktop_entry ${PN} ${PN} ${PN}.xpm |