diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2009-01-18 22:23:52 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2009-01-18 22:23:52 +0000 |
commit | c410b0975b2ef4eb45c0475cdcb7247d0d42f54c (patch) | |
tree | ede1bc58fc02b3f7c0410244a6a7b96f3b604fd8 /games-arcade/ri-li | |
parent | Bump to 2.5.1. Minor bug fixes. (diff) | |
download | gentoo-2-c410b0975b2ef4eb45c0475cdcb7247d0d42f54c.tar.gz gentoo-2-c410b0975b2ef4eb45c0475cdcb7247d0d42f54c.tar.bz2 gentoo-2-c410b0975b2ef4eb45c0475cdcb7247d0d42f54c.zip |
EAPI=2; add use-based dep; fix license
(Portage version: 2.1.6.4/cvs/Linux 2.6.27.8 i686)
Diffstat (limited to 'games-arcade/ri-li')
-rw-r--r-- | games-arcade/ri-li/ChangeLog | 7 | ||||
-rw-r--r-- | games-arcade/ri-li/ri-li-2.0.1.ebuild | 13 |
2 files changed, 11 insertions, 9 deletions
diff --git a/games-arcade/ri-li/ChangeLog b/games-arcade/ri-li/ChangeLog index d030cb3c1de1..4cde5ec9dee3 100644 --- a/games-arcade/ri-li/ChangeLog +++ b/games-arcade/ri-li/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-arcade/ri-li -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/ri-li/ChangeLog,v 1.11 2008/10/09 05:45:23 nyhm Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/ri-li/ChangeLog,v 1.12 2009/01/18 22:23:52 mr_bones_ Exp $ + + 18 Jan 2009; Michael Sterrett <mr_bones_@gentoo.org> ri-li-2.0.1.ebuild: + EAPI=2; add use-based dep; fix license 09 Oct 2008; Tristan Heaven <nyhm@gentoo.org> ri-li-2.0.1.ebuild: eautoreconf for bug #239721 diff --git a/games-arcade/ri-li/ri-li-2.0.1.ebuild b/games-arcade/ri-li/ri-li-2.0.1.ebuild index a04f1ea27437..a007ea5999a9 100644 --- a/games-arcade/ri-li/ri-li-2.0.1.ebuild +++ b/games-arcade/ri-li/ri-li-2.0.1.ebuild @@ -1,26 +1,25 @@ -# 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-arcade/ri-li/ri-li-2.0.1.ebuild,v 1.5 2008/10/09 05:45:23 nyhm Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/ri-li/ri-li-2.0.1.ebuild,v 1.6 2009/01/18 22:23:52 mr_bones_ Exp $ +EAPI=2 inherit autotools eutils games DESCRIPTION="Drive a toy wood engine and collect all the coaches" HOMEPAGE="http://ri-li.sourceforge.net/" SRC_URI="mirror://sourceforge/ri-li/Ri-li-${PV}.tar.bz2" -LICENSE="GPL-2" +LICENSE="GPL-3" SLOT="0" KEYWORDS="amd64 x86" IUSE="" DEPEND="media-libs/libsdl - media-libs/sdl-mixer" + media-libs/sdl-mixer[mikmod]" S=${WORKDIR}/Ri-li-${PV} -src_unpack() { - unpack ${A} - cd "${S}" +src_prepare() { epatch "${FILESDIR}"/${P}-gcc43.patch eautoreconf } |