diff options
author | 2009-01-12 15:37:40 +0000 | |
---|---|---|
committer | 2009-01-12 15:37:40 +0000 | |
commit | 276aee6723920e30ffe04e21f03dc0ab82fbb7e8 (patch) | |
tree | 22785382cf246737fb44c53cc372069ce1e25362 /games-arcade/circuslinux | |
parent | hppa stable, #249125 (diff) | |
download | gentoo-2-276aee6723920e30ffe04e21f03dc0ab82fbb7e8.tar.gz gentoo-2-276aee6723920e30ffe04e21f03dc0ab82fbb7e8.tar.bz2 gentoo-2-276aee6723920e30ffe04e21f03dc0ab82fbb7e8.zip |
EAPI=2; add use-based deps
(Portage version: 2.1.6.4/cvs/Linux 2.6.27.8 i686)
Diffstat (limited to 'games-arcade/circuslinux')
-rw-r--r-- | games-arcade/circuslinux/ChangeLog | 8 | ||||
-rw-r--r-- | games-arcade/circuslinux/circuslinux-1.0.3.ebuild | 15 |
2 files changed, 13 insertions, 10 deletions
diff --git a/games-arcade/circuslinux/ChangeLog b/games-arcade/circuslinux/ChangeLog index abb11d1b9bed..5ec50931bb94 100644 --- a/games-arcade/circuslinux/ChangeLog +++ b/games-arcade/circuslinux/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-arcade/circuslinux -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/circuslinux/ChangeLog,v 1.15 2008/02/29 18:54:41 carlo Exp $ +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/circuslinux/ChangeLog,v 1.16 2009/01/12 15:37:40 mr_bones_ Exp $ + + 12 Jan 2009; Michael Sterrett <mr_bones_@gentoo.org> + circuslinux-1.0.3.ebuild: + EAPI=2; add use-based deps 29 Feb 2008; Carsten Lohrke <carlo@gentoo.org> circuslinux-1.0.3.ebuild: Remove icon extension from desktop entry to match Icon Theme Specification. diff --git a/games-arcade/circuslinux/circuslinux-1.0.3.ebuild b/games-arcade/circuslinux/circuslinux-1.0.3.ebuild index 77b616deb850..c9ee10ac3cd2 100644 --- a/games-arcade/circuslinux/circuslinux-1.0.3.ebuild +++ b/games-arcade/circuslinux/circuslinux-1.0.3.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-arcade/circuslinux/circuslinux-1.0.3.ebuild,v 1.16 2008/02/29 18:54:41 carlo Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/circuslinux/circuslinux-1.0.3.ebuild,v 1.17 2009/01/12 15:37:40 mr_bones_ Exp $ +EAPI=2 inherit eutils games DESCRIPTION="clone of the Atari 2600 game \"Circus Atari\"" @@ -14,12 +15,10 @@ KEYWORDS="alpha amd64 ppc sparc x86" IUSE="" DEPEND="media-libs/libsdl - media-libs/sdl-image - media-libs/sdl-mixer" + media-libs/sdl-image[png] + media-libs/sdl-mixer[mikmod]" -src_unpack() { - unpack ${A} - cd "${S}" +src_prepare() { sed -i \ -e "/^install-data-am/d" \ Makefile.in \ @@ -33,7 +32,7 @@ src_unpack() { src_install () { emake DESTDIR="${D}" install || die "emake install failed" newicon data/images/${PN}-icon.xpm ${PN}.xpm - make_desktop_entry ${PN} "Circus Linux!" ${PN} + make_desktop_entry ${PN} "Circus Linux!" dodoc *.txt prepgamesdirs } |