From 623ee73d661e5ed8475cb264511f683407d87365 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sun, 12 Apr 2020 03:41:30 +0100 Subject: gentoo Easter resync : 12.04.2020 --- games-fps/doomsday/Manifest | 2 +- games-fps/doomsday/doomsday-2.1.1-r1.ebuild | 81 +++++++++++++++++++++++++++++ games-fps/doomsday/doomsday-2.1.1.ebuild | 81 ----------------------------- 3 files changed, 82 insertions(+), 82 deletions(-) create mode 100644 games-fps/doomsday/doomsday-2.1.1-r1.ebuild delete mode 100644 games-fps/doomsday/doomsday-2.1.1.ebuild (limited to 'games-fps/doomsday') diff --git a/games-fps/doomsday/Manifest b/games-fps/doomsday/Manifest index 62636d018e40..71fc10263a02 100644 --- a/games-fps/doomsday/Manifest +++ b/games-fps/doomsday/Manifest @@ -1,3 +1,3 @@ DIST doomsday-2.1.1.tar.gz 47526008 BLAKE2B bf941048d160058273df09d67b09e140c10d141cd73ff56d0f3162045696d81533aba9a8c9ff39fc29530248ee8b2f6dd2b3da76a929fb6263c311e65bcbdd82 SHA512 9df0afa0465ef3c3bb30cccf8ca51596e8e6e5584775a695c9c3278f15bcf7e9f7aaeaa0917f0a1de9fbb1174f2ae83a1ee85fba63bef6e49be957836f1107a3 -EBUILD doomsday-2.1.1.ebuild 2017 BLAKE2B ef3cbff22d70d19c999c57afa7c5efb089986a0bc1f579fa1be8635b6e94d2b0dd34be86a17cee7645c602743cf74e4bb1f277c405feb2a8138b05d71dcf2a00 SHA512 6ac4eead43a79d307f695ddf24499b0526af0bd3f9c665ca0a013d37e0be138edab932a3db1dc1f3b9a84a4ae15c7ec34b31349a5ec1d1b77f68cbd1f7de5d00 +EBUILD doomsday-2.1.1-r1.ebuild 2022 BLAKE2B a45fe50a076d2f7e6769d5e33b16b0ed7885fb77c83ceb531e9f13f8c23dc6b6058252772eab6315fc61bc2f6d00b710ff89493b2c8d3e539f94c415358041cd SHA512 21dfcc5e015161b97472f172b4494772707c4f6acc64bcf0a702d20d4470ba20bdc11e6cbc041ae80c241c5f0647e17aa9906032c55231562301e18fa86b4e41 MISC metadata.xml 771 BLAKE2B 8a5effc2f449a9b4448dead1a37e9df047ae2e1608c26522d99b02e2d9561e8c129dbdb93f5a713dce72cee09edd8eaed61f38a278d995b3a7fc7e1a5c468bed SHA512 8bc89aa4bab55338472489ec1e92b47cb676b3110a1d3609d8e5a0d51965955770f045405665bff2e401f34697ef4d4b52341a668d08909a92db8eb660c18e00 diff --git a/games-fps/doomsday/doomsday-2.1.1-r1.ebuild b/games-fps/doomsday/doomsday-2.1.1-r1.ebuild new file mode 100644 index 000000000000..eb08301295ed --- /dev/null +++ b/games-fps/doomsday/doomsday-2.1.1-r1.ebuild @@ -0,0 +1,81 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7} ) + +inherit cmake python-any-r1 readme.gentoo-r1 + +DESCRIPTION="A modern gaming engine for Doom, Heretic, and Hexen" +HOMEPAGE="https://www.dengine.net" +SRC_URI="https://downloads.sourceforge.net/project/deng/Doomsday%20Engine/${PV}/${P}.tar.gz" +LICENSE="GPL-3+ LGPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="demo fmod freedoom fluidsynth openal tools" + +RDEPEND=" + dev-qt/qtcore:5= + dev-qt/qtgui:5=[-gles2-only] + dev-qt/qtnetwork:5= + dev-qt/qtopengl:5= + dev-qt/qtwidgets:5= + dev-qt/qtx11extras:5= + media-libs/assimp + net-misc/curl + sys-libs/zlib + fmod? ( media-libs/fmod:1 ) + fluidsynth? ( media-sound/fluidsynth:= ) + openal? ( media-libs/openal ) + tools? ( sys-libs/ncurses:0= ) +" +DEPEND="${RDEPEND}" +BDEPEND=" + ${PYTHON_DEPS} + virtual/pkgconfig +" +PDEPEND=" + demo? ( games-fps/doom-data ) + freedoom? ( games-fps/freedoom ) +" + +S="${WORKDIR}/${P}/${PN}" + +DOC_CONTENTS="You need to copy Doom, Doom 2, Chex Quest, Heretic, Hexen, HexenDD, or Doom64 wads to a folder of your choice and then tell the game engine where that folder is. This is different to older versions, which had separate launchers for each game and required the files to be in a specific place." + +src_prepare() { + cmake_src_prepare + + # Fix QA warning for "installing to one or more unexpected paths" + sed -e "10s:/texc:/${PF}:" -i tools/texc/CMakeLists.txt || die +} + +src_configure() { + export QT_SELECT=qt5 + local mycmakeargs=( + -DDENG_ASSIMP_EMBEDDED="OFF" + -DDENG_ENABLE_TOOLS="$(usex tools)" + -DPYTHON_EXECUTABLE="${PYTHON}" + ) + cmake_src_configure +} + +src_install() { + cmake_src_install + + if use tools; then + mv -v "${ED}"/usr/bin/md2tool{,.${PN}} || die + fi + + readme.gentoo_create_doc +} + +pkg_postinst() { + readme.gentoo_print_elog + + if use tools; then + einfo "In order to prevent a file collision with games-fps/eduke32[tools]," + einfo "the utility md2tool has been renamed to md2tool.doomsday." + fi +} diff --git a/games-fps/doomsday/doomsday-2.1.1.ebuild b/games-fps/doomsday/doomsday-2.1.1.ebuild deleted file mode 100644 index fd675553b0fe..000000000000 --- a/games-fps/doomsday/doomsday-2.1.1.ebuild +++ /dev/null @@ -1,81 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7} ) - -inherit cmake python-any-r1 readme.gentoo-r1 - -DESCRIPTION="A modern gaming engine for Doom, Heretic, and Hexen" -HOMEPAGE="https://www.dengine.net" -SRC_URI="https://downloads.sourceforge.net/project/deng/Doomsday%20Engine/${PV}/${P}.tar.gz" -LICENSE="GPL-3+ LGPL-3+" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="demo fmod freedoom fluidsynth openal tools" - -RDEPEND=" - dev-qt/qtcore:5= - dev-qt/qtgui:5=[-gles2] - dev-qt/qtnetwork:5= - dev-qt/qtopengl:5= - dev-qt/qtwidgets:5= - dev-qt/qtx11extras:5= - media-libs/assimp - net-misc/curl - sys-libs/zlib - fmod? ( media-libs/fmod:1 ) - fluidsynth? ( media-sound/fluidsynth:= ) - openal? ( media-libs/openal ) - tools? ( sys-libs/ncurses:0= ) -" -DEPEND="${RDEPEND}" -BDEPEND=" - ${PYTHON_DEPS} - virtual/pkgconfig -" -PDEPEND=" - demo? ( games-fps/doom-data ) - freedoom? ( games-fps/freedoom ) -" - -S="${WORKDIR}/${P}/${PN}" - -DOC_CONTENTS="You need to copy Doom, Doom 2, Chex Quest, Heretic, Hexen, HexenDD, or Doom64 wads to a folder of your choice and then tell the game engine where that folder is. This is different to older versions, which had separate launchers for each game and required the files to be in a specific place." - -src_prepare() { - cmake_src_prepare - - # Fix QA warning for "installing to one or more unexpected paths" - sed -e "10s:/texc:/${PF}:" -i tools/texc/CMakeLists.txt || die -} - -src_configure() { - export QT_SELECT=qt5 - local mycmakeargs=( - -DDENG_ASSIMP_EMBEDDED="OFF" - -DDENG_ENABLE_TOOLS="$(usex tools)" - -DPYTHON_EXECUTABLE="${PYTHON}" - ) - cmake_src_configure -} - -src_install() { - cmake_src_install - - if use tools; then - mv -v "${ED}"/usr/bin/md2tool{,.${PN}} || die - fi - - readme.gentoo_create_doc -} - -pkg_postinst() { - readme.gentoo_print_elog - - if use tools; then - einfo "In order to prevent a file collision with games-fps/eduke32[tools]," - einfo "the utility md2tool has been renamed to md2tool.doomsday." - fi -} -- cgit v1.2.3