summaryrefslogtreecommitdiff
path: root/games-strategy
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss123next@list.ru>2014-12-11 10:34:13 +0300
committerGluzskiy Alexandr <sss123next@list.ru>2014-12-11 10:34:13 +0300
commit9e6d9f01166d1face28588ff81a7275b99825611 (patch)
tree2cc04f26ddf1be5b0be058c8e17ebe6508a6bae9 /games-strategy
parent0d9acc68f6f56fd56d3400b048b23823ba6dec0e (diff)
naev scm
Diffstat (limited to 'games-strategy')
-rw-r--r--games-strategy/naev/naev-scm.ebuild81
1 files changed, 81 insertions, 0 deletions
diff --git a/games-strategy/naev/naev-scm.ebuild b/games-strategy/naev/naev-scm.ebuild
new file mode 100644
index 0000000..4c4042e
--- /dev/null
+++ b/games-strategy/naev/naev-scm.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/naev/naev-0.5.3.ebuild,v 1.9 2014/06/07 04:02:33 mr_bones_ Exp $
+
+EAPI=5
+inherit flag-o-matic gnome2-utils games git-2
+
+DESCRIPTION="A 2D space trading and combat game, in a similar vein to Escape Velocity"
+HOMEPAGE="http://code.google.com/p/naev/"
+
+#SRC_URI="mirror://sourceforge/naev/ndata-5.3"
+
+
+EGIT_REPO_URI="https://github.com/bobbens/naev.git"
+EGIT_BOOTSTRAP="./autogen.sh"
+
+LICENSE="GPL-2 GPL-3 public-domain CC-BY-3.0 CC-BY-SA-3.0"
+SLOT="0"
+KEYWORDS="amd64 x86"
+IUSE="debug +mixer +openal"
+
+RDEPEND="media-libs/libsdl[X,sound,video]
+ dev-libs/libxml2
+ >=media-libs/freetype-2
+ >=media-libs/libvorbis-1.2.1
+ >=media-libs/libpng-1.2:0
+ media-libs/sdl-image[png]
+ virtual/glu
+ virtual/opengl
+ mixer? ( media-libs/sdl-mixer )
+ openal? ( media-libs/openal )"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig"
+
+
+src_configure() {
+ append-libs -lm -lvorbis
+ egamesconf \
+ --docdir=/usr/share/doc/${PF} \
+ $(use_enable debug) \
+ $(use_with openal) \
+ $(use_with mixer sdlmixer)
+}
+
+src_compile() {
+ emake V=1
+}
+
+src_install() {
+ emake \
+ DESTDIR="${D}" \
+ appicondir=/usr/share/pixmaps \
+ Graphicsdir=/usr/share/applications \
+ install
+
+# insinto "${GAMES_DATADIR}"/${PN}
+# newins "${DISTDIR}"/ndata-${PV} ndata
+
+ local res
+ for res in 16 32 64 128; do
+ newicon -s ${res} extras/logos/logo${res}.png naev.png
+ done
+
+ rm -f "${D}"/usr/share/doc/${PF}/LICENSE
+
+ prepgamesdirs
+}
+
+pkg_preinst() {
+ games_pkg_preinst
+ gnome2_icon_savelist
+}
+
+pkg_postinst() {
+ games_pkg_postinst
+ gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+ gnome2_icon_cache_update
+}