diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2017-04-26 11:44:01 +0200 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2017-04-26 11:44:46 +0200 |
commit | 8e9e7ac59a77f1f9516b3d7b2c8859fa660f37bb (patch) | |
tree | d2386b9fa3681f31195537941163f29900f49d1e /games-strategy/warzone2100/warzone2100-3.2.3.ebuild | |
parent | dev-python/setuptools: version bump to 35.0.1 (diff) | |
download | gentoo-8e9e7ac59a77f1f9516b3d7b2c8859fa660f37bb.tar.gz gentoo-8e9e7ac59a77f1f9516b3d7b2c8859fa660f37bb.tar.bz2 gentoo-8e9e7ac59a77f1f9516b3d7b2c8859fa660f37bb.zip |
games-strategy/warzone2100: Bump to version 3.2.3
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'games-strategy/warzone2100/warzone2100-3.2.3.ebuild')
-rw-r--r-- | games-strategy/warzone2100/warzone2100-3.2.3.ebuild | 118 |
1 files changed, 118 insertions, 0 deletions
diff --git a/games-strategy/warzone2100/warzone2100-3.2.3.ebuild b/games-strategy/warzone2100/warzone2100-3.2.3.ebuild new file mode 100644 index 000000000000..6a0d565062fd --- /dev/null +++ b/games-strategy/warzone2100/warzone2100-3.2.3.ebuild @@ -0,0 +1,118 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit autotools toolchain-funcs eutils versionator gnome2-utils + +MY_PV=$(get_version_component_range -2) +VIDEOS_PV=2.2 +VIDEOS_P=${PN}-videos-${VIDEOS_PV}.wz +DESCRIPTION="3D real-time strategy game" +HOMEPAGE="http://wz2100.net/" +SRC_URI="mirror://sourceforge/warzone2100/${P}.tar.xz + videos? ( mirror://sourceforge/warzone2100/warzone2100/Videos/${VIDEOS_PV}/high-quality-en/sequences.wz -> ${VIDEOS_P} )" + +SRC_URI+=" https://github.com/Warzone2100/warzone2100/commit/ef37bca38289f4f79c6533acd93ed326858a3f68.patch -> ${PN}-3.2.3-qt_compile_fix.patch" + +LICENSE="GPL-2+ CC-BY-SA-3.0 public-domain" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +# upstream requested debug support +IUSE="debug nls sdl videos" + +# TODO: unbundle miniupnpc and quesoglc +# quesoglc-0.7.2 is buggy: http://developer.wz2100.net/ticket/2828 +CDEPEND=" + >=dev-games/physfs-2[zip] + dev-libs/openssl:0= + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtscript:5 + dev-qt/qtwidgets:5 + media-libs/freetype:2 + media-libs/glew:= + media-libs/harfbuzz + media-libs/libogg + media-libs/libpng:0 + media-libs/libtheora + media-libs/libvorbis + media-libs/openal + sys-libs/zlib + virtual/glu + virtual/opengl + x11-libs/libX11 + x11-libs/libXrandr + nls? ( virtual/libintl ) + !sdl? ( + dev-qt/qtopengl:5 + dev-qt/qtx11extras:5 + ) + sdl? ( media-libs/libsdl2[opengl,video,X] ) +" +DEPEND=" + ${CDEPEND} + app-arch/zip + dev-libs/fribidi + media-libs/fontconfig + virtual/pkgconfig + nls? ( sys-devel/gettext ) +" +RDEPEND=" + ${CDEPEND} + media-fonts/dejavu +" + +src_prepare() { + default + + # https://developer.wz2100.net/ticket/4580 + eapply "${DISTDIR}/${P}-qt_compile_fix.patch" + + sed -i -e 's/#top_builddir/top_builddir/' po/Makevars || die + sed '/appdata\.xml/d' -i icons/Makefile.am || die + eautoreconf +} + +src_configure() { + myeconfargs=( + --docdir=/usr/share/doc/${PF} + --localedir=/usr/share/locale + --with-distributor="Gentoo ${PF}" + --with-icondir=/usr/share/icons/hicolor/128x128/apps + --with-applicationdir=/usr/share/applications + $(use_enable debug debug relaxed) + $(use_enable nls) + --with-backend=$(usex sdl "sdl" "qt") + ) + econf "${myeconfargs[@]}" +} + +src_compile() { + emake AR="$(tc-getAR)" +} + +src_install() { + default + rm -f "${D}"/usr/share/doc/${PF}/COPYING* + if use videos ; then + insinto /usr/share/${PN} + newins "${DISTDIR}"/${VIDEOS_P} sequences.wz + fi + doman doc/warzone2100.6 + dodoc doc/quickstartguide.pdf + + elog "If you are using opensource drivers you should consider installing: " + elog " media-libs/libtxc_dxtn" +} + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +} |