public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Tristan Heaven (nyhm)" <nyhm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in games-action/openastromenace: openastromenace-1.2.0.ebuild ChangeLog
Date: Wed, 27 May 2009 14:23:14 +0000	[thread overview]
Message-ID: <E1M9K2E-0005Zu-G9@stork.gentoo.org> (raw)

nyhm        09/05/27 14:23:14

  Modified:             openastromenace-1.2.0.ebuild ChangeLog
  Log:
  Use cmake-utils eclass, bug #267776
  (Portage version: 2.2_rc33/cvs/Linux i686)

Revision  Changes    Path
1.4                  games-action/openastromenace/openastromenace-1.2.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/openastromenace/openastromenace-1.2.0.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/openastromenace/openastromenace-1.2.0.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/openastromenace/openastromenace-1.2.0.ebuild?r1=1.3&r2=1.4

Index: openastromenace-1.2.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/openastromenace/openastromenace-1.2.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- openastromenace-1.2.0.ebuild	20 Mar 2009 07:05:01 -0000	1.3
+++ openastromenace-1.2.0.ebuild	27 May 2009 14:23:14 -0000	1.4
@@ -1,9 +1,9 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/openastromenace/openastromenace-1.2.0.ebuild,v 1.3 2009/03/20 07:05:01 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/openastromenace/openastromenace-1.2.0.ebuild,v 1.4 2009/05/27 14:23:14 nyhm Exp $
 
 EAPI=2
-inherit eutils games
+inherit cmake-utils eutils games
 
 DESCRIPTION="Modern 3D space shooter with spaceship upgrade possibilities"
 HOMEPAGE="http://sourceforge.net/projects/openastromenace/"
@@ -19,7 +19,7 @@
 KEYWORDS="~amd64 ~x86"
 IUSE="linguas_de linguas_ru"
 
-RDEPEND="virtual/opengl
+DEPEND="virtual/opengl
 	virtual/glu
 	media-libs/libsdl[joystick]
 	media-libs/openal
@@ -27,8 +27,6 @@
 	media-libs/libogg
 	media-libs/libvorbis
 	media-libs/jpeg"
-DEPEND="${RDEPEND}
-	dev-util/cmake"
 
 S=${WORKDIR}/OpenAstroMenaceSVN
 
@@ -36,13 +34,17 @@
 	epatch "${FILESDIR}"/${P}-cmake.patch
 }
 
+src_configure() {
+	local mycmakeargs="-DDATADIR=${GAMES_DATADIR}/${PN}"
+	cmake-utils_src_configure
+}
+
 src_compile() {
-	cmake -DDATADIR="${GAMES_DATADIR}"/${PN} . || die "cmake failed"
-	emake || die "emake failed"
+	cmake-utils_src_compile
 }
 
 src_install() {
-	newgamesbin AstroMenace ${PN} || die "newgamesbin failed"
+	newgamesbin "${CMAKE_BUILD_DIR}"/AstroMenace ${PN} || die "newgamesbin failed"
 	insinto "${GAMES_DATADIR}"/${PN}
 	doins -r ../DATA ../*.vfs || die "doins failed"
 	dosym gamelang_en.vfs "${GAMES_DATADIR}"/${PN}/gamelang.vfs



1.4                  games-action/openastromenace/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/openastromenace/ChangeLog?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/openastromenace/ChangeLog?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/openastromenace/ChangeLog?r1=1.3&r2=1.4

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/openastromenace/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog	20 Mar 2009 07:05:01 -0000	1.3
+++ ChangeLog	27 May 2009 14:23:14 -0000	1.4
@@ -1,6 +1,10 @@
 # ChangeLog for games-action/openastromenace
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/openastromenace/ChangeLog,v 1.3 2009/03/20 07:05:01 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/openastromenace/ChangeLog,v 1.4 2009/05/27 14:23:14 nyhm Exp $
+
+  27 May 2009; Tristan Heaven <nyhm@gentoo.org>
+  openastromenace-1.2.0.ebuild:
+  Use cmake-utils eclass, bug #267776
 
   20 Mar 2009; Michael Sterrett <mr_bones_@gentoo.org>
   openastromenace-1.2.0.ebuild:






             reply	other threads:[~2009-05-27 14:23 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-05-27 14:23 Tristan Heaven (nyhm) [this message]
  -- strict thread matches above, loose matches on Subject: below --
2011-07-07  2:41 [gentoo-commits] gentoo-x86 commit in games-action/openastromenace: openastromenace-1.2.0.ebuild ChangeLog Michael Sterrett (mr_bones_)
2011-02-25 21:39 Kevin McCarthy (signals)
2010-04-11  0:54 Michael Sterrett (mr_bones_)
2009-12-17 21:54 Pacho Ramos (pacho)
2009-12-09 22:41 Christian Faulhammer (fauli)
2009-11-04  4:33 Michael Sterrett (mr_bones_)
2009-03-20  7:05 Michael Sterrett (mr_bones_)
2008-06-03 14:19 Tristan Heaven (nyhm)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E1M9K2E-0005Zu-G9@stork.gentoo.org \
    --to=nyhm@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox