diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2004-09-17 23:39:16 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2004-09-17 23:39:16 +0000 |
commit | 87ab7a97580435157209bd6fdbf9527d9637735f (patch) | |
tree | 9c26d357236fa3de996ad2e71c499ff14c591c01 /games-action | |
parent | Initial import. Ebuild submitted to bug #62537 by Lars Diesselberg <larsdies... (diff) | |
download | gentoo-2-87ab7a97580435157209bd6fdbf9527d9637735f.tar.gz gentoo-2-87ab7a97580435157209bd6fdbf9527d9637735f.tar.bz2 gentoo-2-87ab7a97580435157209bd6fdbf9527d9637735f.zip |
Initial import. Ebuild submitted to bug #62537 by Lars Diesselberg <larsdiesselberg@gmx.de>. Closing bug #62537.
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/xpilot-ng/ChangeLog | 10 | ||||
-rw-r--r-- | games-action/xpilot-ng/Manifest | 4 | ||||
-rw-r--r-- | games-action/xpilot-ng/files/digest-xpilot-ng-4.6.6 | 1 | ||||
-rw-r--r-- | games-action/xpilot-ng/metadata.xml | 5 | ||||
-rw-r--r-- | games-action/xpilot-ng/xpilot-ng-4.6.6.ebuild | 41 |
5 files changed, 61 insertions, 0 deletions
diff --git a/games-action/xpilot-ng/ChangeLog b/games-action/xpilot-ng/ChangeLog new file mode 100644 index 000000000000..23939df3b14c --- /dev/null +++ b/games-action/xpilot-ng/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for games-arcade/xpilot-ng +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/xpilot-ng/ChangeLog,v 1.1 2004/09/17 23:39:16 wolf31o2 Exp $ + +*xpilot-ng-4.6.6 (17 Sep 2004) + + 17 Sep 2004; Chris Gianelloni <wolf31o2@gentoo.org> +xpilot-ng-4.6.6.ebuild: + Initial import. Ebuild submitted to bug #62537 by Lars Diesselberg + <larsdiesselberg@gmx.de>. Closing bug #62537. + diff --git a/games-action/xpilot-ng/Manifest b/games-action/xpilot-ng/Manifest new file mode 100644 index 000000000000..b1e23945151b --- /dev/null +++ b/games-action/xpilot-ng/Manifest @@ -0,0 +1,4 @@ +MD5 06a0bbff9349264e74938830a5072541 ChangeLog 448 +MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 +MD5 de5d3ec47603d73cdc8763a4dbb85928 xpilot-ng-4.6.6.ebuild 971 +MD5 1152a5b20d966d37c1662c9053d79083 files/digest-xpilot-ng-4.6.6 68 diff --git a/games-action/xpilot-ng/files/digest-xpilot-ng-4.6.6 b/games-action/xpilot-ng/files/digest-xpilot-ng-4.6.6 new file mode 100644 index 000000000000..052b530d127d --- /dev/null +++ b/games-action/xpilot-ng/files/digest-xpilot-ng-4.6.6 @@ -0,0 +1 @@ +MD5 785278551aa85356b44f907be1052bc3 xpilot-ng-4.6.6.tar.gz 2231395 diff --git a/games-action/xpilot-ng/metadata.xml b/games-action/xpilot-ng/metadata.xml new file mode 100644 index 000000000000..d3c2cc926f0b --- /dev/null +++ b/games-action/xpilot-ng/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>games</herd> +</pkgmetadata> diff --git a/games-action/xpilot-ng/xpilot-ng-4.6.6.ebuild b/games-action/xpilot-ng/xpilot-ng-4.6.6.ebuild new file mode 100644 index 000000000000..789b2cd2938e --- /dev/null +++ b/games-action/xpilot-ng/xpilot-ng-4.6.6.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/xpilot-ng/xpilot-ng-4.6.6.ebuild,v 1.1 2004/09/17 23:39:16 wolf31o2 Exp $ + +inherit games + +DESCRIPTION="Improvement of the multiplayer space game XPilot" +HOMEPAGE="http://xpilot.sourceforge.net/" +SRC_URI="mirror://sourceforge/xpilot/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="openal sdl" + +DEPEND="virtual/x11 + >=dev-libs/expat-1.1 + >=sys-libs/zlib-1.1.3 + openal? ( media-libs/openal ) + sdl? ( + virtual/opengl + >=media-libs/libsdl-1.2.0 + >=media-libs/sdl-image-1.0 + >=media-libs/sdl-ttf-2.0 )" + +src_compile() { + egamesconf \ + --disable-dependency-tracking \ + $(use_enable sdl sdl-client) \ + $(use_enable openal sound) \ + || die + + emake || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + dodoc AUTHORS ChangeLog README + prepgamesdirs +} + |