From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6562F13835D for ; Fri, 26 Mar 2021 19:46:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9B563E086C; Fri, 26 Mar 2021 19:46:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 72B5FE086C for ; Fri, 26 Mar 2021 19:46:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 29193340E53 for ; Fri, 26 Mar 2021 19:46:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 392D7635 for ; Fri, 26 Mar 2021 19:46:01 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1616787916.71a5893eabbe8e1a6ac5466cdfa39883d9ba54bd.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-engines/stratagus/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-engines/stratagus/stratagus-2.4.3.ebuild games-engines/stratagus/stratagus-3.0.0-r1.ebuild X-VCS-Directories: games-engines/stratagus/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 71a5893eabbe8e1a6ac5466cdfa39883d9ba54bd X-VCS-Branch: master Date: Fri, 26 Mar 2021 19:46:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fd95603e-2b16-4e36-80e6-2260430f4d09 X-Archives-Hash: ea6b5d0f3821bea157f5540677596876 commit: 71a5893eabbe8e1a6ac5466cdfa39883d9ba54bd Author: Conrad Kostecki gentoo org> AuthorDate: Fri Mar 26 18:50:40 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Fri Mar 26 19:45:16 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71a5893e games-engines/stratagus: drop old version Dropping old versions, which do not support slotted lua. Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Conrad Kostecki gentoo.org> games-engines/stratagus/stratagus-2.4.3.ebuild | 68 ---------------------- games-engines/stratagus/stratagus-3.0.0-r1.ebuild | 70 ----------------------- 2 files changed, 138 deletions(-) diff --git a/games-engines/stratagus/stratagus-2.4.3.ebuild b/games-engines/stratagus/stratagus-2.4.3.ebuild deleted file mode 100644 index e593ce458e1..00000000000 --- a/games-engines/stratagus/stratagus-2.4.3.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit cmake - -DESCRIPTION="A realtime strategy game engine" -HOMEPAGE="https://wargus.github.io/stratagus.html - https://github.com/Wargus/stratagus" -SRC_URI="https://github.com/Wargus/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="bzip2 debug doc fluidsynth mikmod mng theora vorbis" -REQUIRED_USE="theora? ( vorbis )" - -RDEPEND=" - dev-db/sqlite:3 - >=dev-lang/lua-5:0 - dev-lua/toluapp - media-libs/libpng:0 - virtual/opengl - x11-libs/libX11 - media-libs/libsdl[sound,opengl,video] - sys-libs/zlib - bzip2? ( app-arch/bzip2 ) - fluidsynth? ( media-sound/fluidsynth ) - mikmod? ( media-libs/libmikmod ) - mng? ( media-libs/libmng ) - vorbis? ( - media-libs/libogg - media-libs/libvorbis - theora? ( media-libs/libtheora ) - )" -DEPEND="${RDEPEND}" -BDEPEND=" - virtual/pkgconfig - doc? ( app-doc/doxygen )" - -PATCHES=( - "${FILESDIR}/${PN}"-2.3.0-doc.patch -) - -src_prepare() { - sed -i -e 's:-Werror::' CMakeLists.txt || die - cmake_src_prepare -} - -src_configure() { - # there are in-source switches - use debug && CMAKE_BUILD_TYPE=Debug - - local mycmakeargs=( - -DGAMEDIR="/usr/bin" - -DDOCDIR="/usr/share/doc/${PF}" - -DWITH_BZIP2=$(usex bzip2) - -DWITH_FLUIDSYNTH=$(usex fluidsynth) - -DWITH_MIKMOD=$(usex mikmod) - -DWITH_MNG=$(usex mng) - -DWITH_OGGVORBIS=$(usex vorbis) - -DWITH_THEORA=$(usex theora) - -DENABLE_DOC=$(usex doc) - -DENABLE_DEV=ON - ) - - cmake_src_configure -} diff --git a/games-engines/stratagus/stratagus-3.0.0-r1.ebuild b/games-engines/stratagus/stratagus-3.0.0-r1.ebuild deleted file mode 100644 index ee369f12de3..00000000000 --- a/games-engines/stratagus/stratagus-3.0.0-r1.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake optfeature - -DESCRIPTION="A realtime strategy game engine" -HOMEPAGE="https://wargus.github.io/stratagus.html - https://github.com/Wargus/stratagus" -SRC_URI="https://github.com/Wargus/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0/3" -KEYWORDS="~amd64 ~x86" -IUSE="bzip2 debug doc mng theora vorbis" -REQUIRED_USE="theora? ( vorbis )" - -RDEPEND=" - dev-db/sqlite:3 - >=dev-lang/lua-5:0 - dev-lua/toluapp - media-libs/libpng:0 - x11-libs/libX11 - media-libs/libsdl2[sound,opengl,video] - media-libs/sdl2-mixer[vorbis] - media-libs/sdl2-image[png] - sys-libs/zlib - bzip2? ( app-arch/bzip2 ) - mng? ( media-libs/libmng ) - vorbis? ( - media-libs/libogg - media-libs/libvorbis - theora? ( media-libs/libtheora ) - )" -DEPEND="${RDEPEND}" -BDEPEND=" - virtual/pkgconfig - doc? ( app-doc/doxygen )" - -PATCHES=( - "${FILESDIR}/${PN}"-2.3.0-doc.patch -) - -src_prepare() { - sed -i -e 's:-Werror::' CMakeLists.txt || die - cmake_src_prepare -} - -src_configure() { - # there are in-source switches - use debug && CMAKE_BUILD_TYPE=Debug - - local mycmakeargs=( - -DGAMEDIR="/usr/bin" - -DDOCDIR="/usr/share/doc/${PF}" - -DWITH_BZIP2=$(usex bzip2) - -DWITH_MNG=$(usex mng) - -DWITH_OGGVORBIS=$(usex vorbis) - -DWITH_THEORA=$(usex theora) - -DENABLE_DOC=$(usex doc) - -DENABLE_DEV=ON - ) - - cmake_src_configure -} - -pkg_postinst() { - optfeature "MIDI music support" "media-libs/sdl2-mixer[midi]" -}