diff options
author | William Breathitt Gray <vilhelm.gray@gmail.com> | 2019-06-10 20:21:18 +0900 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-06-10 21:50:54 +0200 |
commit | ed2b8086c1005200d8f164448b334afba349a257 (patch) | |
tree | 8c1d83a227298ba7ed1ffc6598177d27e4877b75 /games-fps/gzdoom/gzdoom-4.1.2.ebuild | |
parent | games-fps/gzdoom: Bump to version 4.1.3 (diff) | |
download | gentoo-ed2b8086c1005200d8f164448b334afba349a257.tar.gz gentoo-ed2b8086c1005200d8f164448b334afba349a257.tar.bz2 gentoo-ed2b8086c1005200d8f164448b334afba349a257.zip |
games-fps/gzdoom: Drop old version
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: William Breathitt Gray <vilhelm.gray@gmail.com>
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'games-fps/gzdoom/gzdoom-4.1.2.ebuild')
-rw-r--r-- | games-fps/gzdoom/gzdoom-4.1.2.ebuild | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/games-fps/gzdoom/gzdoom-4.1.2.ebuild b/games-fps/gzdoom/gzdoom-4.1.2.ebuild deleted file mode 100644 index e113cbd6734b..000000000000 --- a/games-fps/gzdoom/gzdoom-4.1.2.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake-utils desktop xdg - -DESCRIPTION="A modder-friendly OpenGL source port based on the DOOM engine" -HOMEPAGE="https://zdoom.org" -SRC_URI="https://github.com/coelckers/${PN}/archive/g${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD BZIP2 DUMB-0.9.3 GPL-3 LGPL-3 MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="fluidsynth gtk gtk2 openal openmp" - -DEPEND=" - media-libs/libsdl2[opengl] - sys-libs/zlib - virtual/jpeg:0 - gtk? ( - gtk2? ( x11-libs/gtk+:2 ) - !gtk2? ( x11-libs/gtk+:3 ) - )" -RDEPEND=" - ${DEPEND} - fluidsynth? ( media-sound/fluidsynth ) - openal? ( - media-libs/libsndfile - media-libs/openal - media-sound/mpg123 - )" - -S="${WORKDIR}/${PN}-g${PV}" - -PATCHES="${FILESDIR}/${P}-static-libraries.patch" - -src_prepare() { - rm -rf docs/licenses || die - cmake-utils_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DINSTALL_DOCS_PATH="${EPREFIX}/usr/share/doc/${PF}" - -DINSTALL_PK3_PATH="${EPREFIX}/usr/share/doom" - -DNO_GTK="$(usex !gtk)" - -DNO_OPENAL="$(usex !openal)" - -DNO_OPENMP="$(usex !openmp)" - ) - cmake-utils_src_configure -} - -src_install() { - newicon src/posix/zdoom.xpm "${PN}.xpm" - make_desktop_entry "${PN}" "GZDoom" "${PN}" "Game;ActionGame" - cmake-utils_src_install -} - -pkg_preinst() { - xdg_pkg_preinst -} - -pkg_postinst() { - xdg_pkg_postinst -} - -pkg_postrm() { - xdg_pkg_postrm -} |