From: "Christian Schmitt" <chris@ilovelinux.de>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/gamerlay:master commit in: dev-games/simgear/, games-simulation/flightgear/
Date: Mon, 18 Feb 2013 15:43:45 +0000 (UTC) [thread overview]
Message-ID: <1361201945.6de04f4dc30fa9a33a56061a4acbe732bc3d0e3f.christian@gentoo> (raw)
commit: 6de04f4dc30fa9a33a56061a4acbe732bc3d0e3f
Author: Christian Schmitt <chris <AT> ilovelinux <DOT> de>
AuthorDate: Mon Feb 18 15:38:12 2013 +0000
Commit: Christian Schmitt <chris <AT> ilovelinux <DOT> de>
CommitDate: Mon Feb 18 15:39:05 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=6de04f4d
[games-simulation/flightgear] New version: 2.10.0
---
dev-games/simgear/simgear-2.10.0.ebuild | 48 ++++++++++++
.../flightgear/flightgear-2.10.0.ebuild | 79 ++++++++++++++++++++
2 files changed, 127 insertions(+), 0 deletions(-)
diff --git a/dev-games/simgear/simgear-2.10.0.ebuild b/dev-games/simgear/simgear-2.10.0.ebuild
new file mode 100644
index 0000000..0adee44
--- /dev/null
+++ b/dev-games/simgear/simgear-2.10.0.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+inherit eutils cmake-utils
+
+DESCRIPTION="Development library for simulation games"
+HOMEPAGE="http://www.simgear.org/"
+SRC_URI="http://mirrors.ibiblio.org/pub/mirrors/simgear/ftp/Source/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+IUSE="debug jpeg subversion test"
+
+COMMON_DEPEND="
+ dev-libs/expat
+ >=dev-games/openscenegraph-3.0.1
+ media-libs/openal
+ sys-libs/zlib
+ virtual/opengl
+ jpeg? ( virtual/jpeg )
+ subversion? (
+ dev-libs/apr
+ dev-vcs/subversion
+ )
+"
+DEPEND="${COMMON_DEPEND}
+ >=dev-libs/boost-1.37
+"
+RDEPEND="${COMMON_DEPEND}"
+
+DOCS=(AUTHORS ChangeLog NEWS README Thanks)
+
+src_configure() {
+ local mycmakeargs=(
+ -DENABLE_RTI=OFF
+ -DSIMGEAR_HEADLESS=OFF
+ -DSIMGEAR_SHARED=ON
+ -DSYSTEM_EXPAT=ON
+ $(cmake-utils_use jpeg JPEG_FACTORY)
+ $(cmake-utils_use_enable subversion LIBSVN)
+ $(cmake-utils_use_enable test TESTS)
+ )
+ cmake-utils_src_configure
+}
diff --git a/games-simulation/flightgear/flightgear-2.10.0.ebuild b/games-simulation/flightgear/flightgear-2.10.0.ebuild
new file mode 100644
index 0000000..d110ae5
--- /dev/null
+++ b/games-simulation/flightgear/flightgear-2.10.0.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+inherit games cmake-utils
+
+DESCRIPTION="Open Source Flight Simulator"
+HOMEPAGE="http://www.flightgear.org/"
+SRC_URI="mirror://flightgear/Source/${P}.tar.bz2 mirror://flightgear/Shared/FlightGear-data-${PV}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug fgpanel jpeg +jsbsim oldfdm subversion test +udev +yasim"
+
+COMMON_DEPEND="
+ dev-db/sqlite:3
+ >=dev-games/openscenegraph-3.0.1[png]
+ ~dev-games/simgear-${PV}[jpeg?,subversion?]
+ sys-libs/zlib
+ virtual/opengl
+ udev? ( virtual/udev )
+ fgpanel? (
+ media-libs/freeglut
+ media-libs/libpng
+ )
+"
+# Most entries below are just buildsystem bugs (deps unconditionally
+# inherited from static version of simgear)
+DEPEND="${COMMON_DEPEND}
+ >=dev-libs/boost-1.37
+ media-libs/openal
+ >=media-libs/plib-1.8.5
+ jpeg? ( virtual/jpeg )
+ subversion? (
+ dev-libs/apr
+ dev-vcs/subversion
+ )
+"
+RDEPEND="${COMMON_DEPEND}"
+
+DOCS=(AUTHORS ChangeLog NEWS README Thanks)
+
+src_configure() {
+ local mycmakeargs=(
+ -DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX}
+ -DENABLE_FGADMIN=OFF
+ -DENABLE_PROFILE=OFF
+ -DENABLE_RTI=OFF
+ -DSYSTEM_SQLITE=ON
+ -DFG_DATA_DIR="${GAMES_DATADIR}"/${PN}
+ -DSIMGEAR_SHARED=ON
+ $(cmake-utils_use_with fgpanel)
+ $(cmake-utils_use jpeg JPEG_FACTORY)
+ $(cmake-utils_use_enable jsbsim)
+ $(cmake-utils_use_enable oldfdm LARCSIM)
+ $(cmake-utils_use_enable oldfdm UIUC_MODEL)
+ $(cmake-utils_use_enable subversion LIBSVN)
+ $(cmake-utils_use test LOGGING)
+ $(cmake-utils_use_enable test TESTS)
+ $(cmake-utils_use udev EVENT_INPUT)
+ $(cmake-utils_use_enable yasim)
+ )
+
+ cmake-utils_src_configure
+}
+
+src_install() {
+ cmake-utils_src_install
+
+ insinto "${GAMES_DATADIR}"/${PN}
+ doins -r ../data/*
+ newicon icons/fg-48.png ${PN}.png
+ newmenu package/${PN}.desktop ${PN}.desktop
+
+ prepgamesdirs
+}
next reply other threads:[~2013-02-18 15:43 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-02-18 15:43 Christian Schmitt [this message]
-- strict thread matches above, loose matches on Subject: below --
2014-02-19 21:57 [gentoo-commits] proj/gamerlay:master commit in: dev-games/simgear/, games-simulation/flightgear/ Christian Schmitt
2014-01-27 20:51 Christian Schmitt
2013-08-04 16:43 Christian Schmitt
2013-02-21 11:35 Christian Schmitt
2012-11-16 12:17 Christian Schmitt
2012-08-28 8:24 Christian Schmitt
2012-08-17 20:19 Christian Schmitt
2012-06-12 22:23 Christian Schmitt
2012-06-07 11:17 Christian Schmitt
2012-04-24 10:22 Christian Schmitt
2011-11-11 22:01 Christian Schmitt
2011-11-02 12:24 Christian Schmitt
2011-08-24 10:42 Christian Schmitt
2011-08-10 15:50 Christian Schmitt
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=1361201945.6de04f4dc30fa9a33a56061a4acbe732bc3d0e3f.christian@gentoo \
--to=chris@ilovelinux.de \
--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