diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2010-04-06 02:30:44 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2010-04-06 02:30:44 +0000 |
commit | eafeef603c6a95242176a186ade42c4a12612607 (patch) | |
tree | ae5299fc5aeaf5eaa476b24d6f797cf774af08d8 /games-action/bzflag | |
parent | version bump (diff) | |
download | gentoo-2-eafeef603c6a95242176a186ade42c4a12612607.tar.gz gentoo-2-eafeef603c6a95242176a186ade42c4a12612607.tar.bz2 gentoo-2-eafeef603c6a95242176a186ade42c4a12612607.zip |
version bump
(Portage version: 2.1.7.17/cvs/Linux i686)
Diffstat (limited to 'games-action/bzflag')
-rw-r--r-- | games-action/bzflag/ChangeLog | 8 | ||||
-rw-r--r-- | games-action/bzflag/bzflag-2.0.16.ebuild | 64 |
2 files changed, 71 insertions, 1 deletions
diff --git a/games-action/bzflag/ChangeLog b/games-action/bzflag/ChangeLog index d6eefec8376f..4cf5d501720c 100644 --- a/games-action/bzflag/ChangeLog +++ b/games-action/bzflag/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-action/bzflag # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/ChangeLog,v 1.46 2010/03/24 13:26:33 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/ChangeLog,v 1.47 2010/04/06 02:30:44 mr_bones_ Exp $ + +*bzflag-2.0.16 (06 Apr 2010) + + 06 Apr 2010; Michael Sterrett <mr_bones_@gentoo.org> + +bzflag-2.0.16.ebuild: + version bump 24 Mar 2010; Brent Baude <ranger@gentoo.org> bzflag-2.0.14.ebuild: stable ppc, bug 309979 diff --git a/games-action/bzflag/bzflag-2.0.16.ebuild b/games-action/bzflag/bzflag-2.0.16.ebuild new file mode 100644 index 000000000000..69c54906e99c --- /dev/null +++ b/games-action/bzflag/bzflag-2.0.16.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/bzflag-2.0.16.ebuild,v 1.1 2010/04/06 02:30:44 mr_bones_ Exp $ + +EAPI=2 +inherit eutils flag-o-matic games + +DESCRIPTION="3D tank combat simulator game" +HOMEPAGE="http://www.bzflag.org/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="dedicated sdl" + +UIDEPEND="virtual/opengl + virtual/glu + media-libs/libsdl[audio,joystick,video] + media-libs/glew + x11-libs/libICE + x11-libs/libSM + x11-libs/libX11 + x11-libs/libXau + x11-libs/libXdmcp + x11-libs/libXext + x11-libs/libXi + x11-libs/libXmu + x11-libs/libXt + x11-libs/libXxf86vm" + +DEPEND=">=net-misc/curl-7.15.0 + sys-libs/ncurses + net-dns/c-ares + sdl? ( ${UIDEPEND} ) + !sdl? ( !dedicated? ( ${UIDEPEND} ) )" + +src_configure() { + local myconf + + if use dedicated && ! use sdl ; then + ewarn + ewarn "You are building a server-only copy of BZFlag" + ewarn + myconf="--disable-client --without-SDL" + fi + egamesconf \ + --disable-ccachetest \ + --disable-dependency-tracking \ + --without-regex \ + ${myconf} +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS TODO ChangeLog BUGS PORTING DEVINFO NEWS README* RELNOTES + + if use sdl || ! use dedicated ; then + newicon "data/bzflag-48x48.png" ${PN}.png + make_desktop_entry ${PN} "BZFlag" + fi + + prepgamesdirs +} |