diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2009-10-27 06:33:51 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2009-10-27 06:33:51 +0000 |
commit | 679be6266f342a9f8e6a421d67e15d1851f1f568 (patch) | |
tree | 98223fd24669b2ee7b6b89c11884429326d1312b /games-action | |
parent | Version bump, bug 290675. (diff) | |
download | gentoo-2-679be6266f342a9f8e6a421d67e15d1851f1f568.tar.gz gentoo-2-679be6266f342a9f8e6a421d67e15d1851f1f568.tar.bz2 gentoo-2-679be6266f342a9f8e6a421d67e15d1851f1f568.zip |
EAPI=2; add use deps for libsdl (bug #290683)
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/d2x/ChangeLog | 7 | ||||
-rw-r--r-- | games-action/d2x/d2x-0.2.5-r3.ebuild | 22 |
2 files changed, 15 insertions, 14 deletions
diff --git a/games-action/d2x/ChangeLog b/games-action/d2x/ChangeLog index 97e9439239b5..aff9bf3da378 100644 --- a/games-action/d2x/ChangeLog +++ b/games-action/d2x/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-action/d2x -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/d2x/ChangeLog,v 1.22 2007/09/06 22:32:18 wolf31o2 Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/d2x/ChangeLog,v 1.23 2009/10/27 06:33:51 mr_bones_ Exp $ + + 27 Oct 2009; Michael Sterrett <mr_bones_@gentoo.org> d2x-0.2.5-r3.ebuild: + EAPI=2; add use deps for libsdl (bug #290683) 06 Sep 2007; Chris Gianelloni <wolf31o2@gentoo.org> d2x-0.2.5-r3.ebuild: Added ~amd64 to KEYWORDS and removing comment about d2x-xl since it isn't in diff --git a/games-action/d2x/d2x-0.2.5-r3.ebuild b/games-action/d2x/d2x-0.2.5-r3.ebuild index bf7fb55af76b..1d5a339ef052 100644 --- a/games-action/d2x/d2x-0.2.5-r3.ebuild +++ b/games-action/d2x/d2x-0.2.5-r3.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/d2x/d2x-0.2.5-r3.ebuild,v 1.6 2007/09/06 22:32:18 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/d2x/d2x-0.2.5-r3.ebuild,v 1.7 2009/10/27 06:33:51 mr_bones_ Exp $ +EAPI=2 inherit eutils flag-o-matic games DESCRIPTION="Descent 2 engine from Icculus" @@ -13,7 +14,7 @@ SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" IUSE="cdinstall debug opengl ggi svga" -COMMON="media-libs/libsdl +COMMON="media-libs/libsdl[audio,joystick,video] media-libs/sdl-image opengl? ( virtual/opengl ) ggi? ( media-libs/libggi ) @@ -26,12 +27,10 @@ DEPEND="${COMMON} dir=${GAMES_DATADIR}/${PN} -src_unpack() { - unpack ${A} - cd "${S}" - - epatch "${FILESDIR}/${PV}-shellscripts.patch" - epatch "${FILESDIR}/${P}-dofpcalcs-macro.patch" +src_prepare() { + epatch \ + "${FILESDIR}/${PV}-shellscripts.patch" \ + "${FILESDIR}/${P}-dofpcalcs-macro.patch" sed -i \ -e '/NASMFLAGS/s/-d/-D/g' \ @@ -68,15 +67,14 @@ src_compile() { egamesconf \ ${myconf} \ ${renconf} \ - --datadir="${GAMES_DATADIR_BASE}" \ - || die "conf ${ren}" + --datadir="${GAMES_DATADIR_BASE}" emake CXXFLAGS="${CXXFLAGS} ${defflags}" || die "build ${ren}" mv d2x* my-bins/ done } src_install() { - make DESTDIR="${D}" install || die "make install failed" + emake DESTDIR="${D}" install || die "emake install failed" dogamesbin my-bins/* || die "dogamesbin failed" dodoc AUTHORS ChangeLog NEWS README* TODO readme.txt |