public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-games/clanlib/
Date: Mon, 25 Aug 2025 18:19:30 +0000 (UTC)	[thread overview]
Message-ID: <1756145950.111d64f0b120eeabcd717fe3bb9eb72bbae6baf7.asturm@gentoo> (raw)

commit:     111d64f0b120eeabcd717fe3bb9eb72bbae6baf7
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 25 16:11:58 2025 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Aug 25 18:19:10 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=111d64f0

dev-games/clanlib: drop 0.8.1-r2, 2.3.7-r3, 4.1.0

Bug: https://bugs.gentoo.org/946099
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 dev-games/clanlib/clanlib-0.8.1-r2.ebuild | 106 --------------------------
 dev-games/clanlib/clanlib-2.3.7-r3.ebuild | 119 ------------------------------
 dev-games/clanlib/clanlib-4.1.0.ebuild    |  77 -------------------
 3 files changed, 302 deletions(-)

diff --git a/dev-games/clanlib/clanlib-0.8.1-r2.ebuild b/dev-games/clanlib/clanlib-0.8.1-r2.ebuild
deleted file mode 100644
index 6cb8b3b5e63e..000000000000
--- a/dev-games/clanlib/clanlib-0.8.1-r2.ebuild
+++ /dev/null
@@ -1,106 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools flag-o-matic
-
-DESCRIPTION="Multi-platform game development library"
-HOMEPAGE="https://github.com/sphair/ClanLib"
-SRC_URI="mirror://gentoo/ClanLib-${PV}.tgz"
-S="${WORKDIR}"/ClanLib-${PV}
-
-LICENSE="ZLIB"
-SLOT="0.8"
-# Not big endian safe! #82779
-KEYWORDS="amd64 x86"
-IUSE="doc ipv6 mikmod opengl sdl static-libs vorbis"
-
-# opengl keyword does not drop the GL/GLU requirement.
-# Autoconf files need to be fixed
-RDEPEND="
-	media-libs/alsa-lib
-	media-libs/libpng:0
-	virtual/jpeg:0
-	virtual/glu
-	virtual/opengl
-	x11-libs/libXi
-	x11-libs/libXmu
-	x11-libs/libXxf86vm
-	mikmod? ( media-libs/libmikmod )
-	sdl? (
-		media-libs/libsdl[X]
-		media-libs/sdl-gfx
-	)
-	vorbis? ( media-libs/libvorbis )
-"
-DEPEND="
-	${RDEPEND}
-	x11-base/xorg-proto
-"
-
-PATCHES=(
-	"${FILESDIR}/${P}-ndebug.patch"
-	"${FILESDIR}/${P}-gcc43.patch"
-	"${FILESDIR}/${P}-gcc44.patch"
-	"${FILESDIR}/${P}-gcc47.patch"
-	"${FILESDIR}/${P}-gcc6.patch"
-	"${FILESDIR}/${P}-llvm.patch"
-	"${FILESDIR}/${P}-libpng15.patch"
-	"${FILESDIR}/${P}-docbuilder.patch"
-	"${FILESDIR}/${P}-glibc2.34.patch"
-	"${FILESDIR}/${P}-gcc12.patch"
-	"${FILESDIR}"/${P}-makefile-duplicate-headers.patch
-)
-
-DOCS=(
-	CODING_STYLE CREDITS NEWS PATCHES
-	README{,.anjuta,.distros,.kdevelop,.sdl,.upgrade} INSTALL.linux
-)
-
-src_prepare() {
-	default
-	eautoreconf
-	# See #739358
-	sed -i -e "s:libdir=\${exec_prefix}/lib:libdir=@libdir@:g" \
-		pkgconfig/*.pc.in || die
-}
-
-src_configure() {
-	# -Werror=strict-aliasing
-	# https://bugs.gentoo.org/855308
-	# Fixed in newer versions
-	# Do not trust with LTO either.
-	append-flags -fno-strict-aliasing
-	filter-lto
-
-	# clanSound only controls mikmod/vorbis so there's
-	# no need to pass --{en,dis}able-clanSound ...
-	# clanDisplay only controls X, SDL, OpenGL plugins
-	# so no need to pass --{en,dis}able-clanDisplay
-	# also same reason why we don't have to use clanGUI
-	econf \
-		--enable-dyn \
-		--enable-clanNetwork \
-		$(use_enable x86 asm386) \
-		$(use_enable doc docs) \
-		$(use_enable opengl clanGL) \
-		$(use_enable sdl clanSDL) \
-		$(use_enable vorbis clanVorbis) \
-		$(use_enable mikmod clanMikMod) \
-		$(use_enable ipv6 getaddr) \
-		$(use_enable static-libs static)
-}
-
-src_install() {
-	default
-
-	if use doc ; then
-		dodir /usr/share/doc/${PF}/html
-		mv "${D}"/usr/share/doc/clanlib/* "${D}"/usr/share/doc/${PF}/html/ || die
-		rm -rf "${D}"/usr/share/doc/clanlib
-		cp -r Examples Resources "${D}"/usr/share/doc/${PF}/ || die
-	fi
-
-	find "${ED}" -name '*.la' -delete || die
-}

diff --git a/dev-games/clanlib/clanlib-2.3.7-r3.ebuild b/dev-games/clanlib/clanlib-2.3.7-r3.ebuild
deleted file mode 100644
index 7dd0936032d9..000000000000
--- a/dev-games/clanlib/clanlib-2.3.7-r3.ebuild
+++ /dev/null
@@ -1,119 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools toolchain-funcs
-
-MY_P=ClanLib-${PV}
-DESCRIPTION="Multi-platform game development library"
-HOMEPAGE="https://github.com/sphair/ClanLib"
-SRC_URI="mirror://gentoo/${MY_P}.tgz"
-S="${WORKDIR}"/${MY_P}
-
-LICENSE="ZLIB"
-SLOT="2.3"
-KEYWORDS="amd64 x86"
-IUSE="doc ipv6 mikmod opengl +sound sqlite cpu_flags_x86_sse2 static-libs vorbis X"
-REQUIRED_USE="opengl? ( X )"
-
-BDEPEND="
-	virtual/pkgconfig
-	doc? (
-		app-text/doxygen
-		dev-lang/perl
-		media-gfx/graphviz
-	)
-"
-RDEPEND="
-	sys-libs/zlib
-	X? (
-		app-arch/bzip2
-		media-libs/libpng:0
-		media-libs/freetype
-		media-libs/fontconfig
-		media-libs/libjpeg-turbo:0=
-		x11-libs/libX11
-		opengl? ( virtual/opengl )
-	)
-	mikmod? (
-		media-libs/alsa-lib
-		media-libs/libmikmod
-	)
-	sqlite? ( dev-db/sqlite:3 )
-	sound? ( media-libs/alsa-lib )
-	vorbis? (
-		media-libs/alsa-lib
-		media-libs/libogg
-		media-libs/libvorbis
-	)
-"
-DEPEND="${RDEPEND}"
-
-PATCHES=(
-	"${FILESDIR}"/${P}-autotools.patch
-	"${FILESDIR}"/${P}-doc.patch
-	"${FILESDIR}"/${P}-freetype_pkgconfig.patch #764902
-	"${FILESDIR}"/${P}-glibc2.34.patch
-	"${FILESDIR}"/${P}-32bit-opengl.patch
-	# From Fedora
-	"${FILESDIR}"/${P}-gcc47.patch
-	"${FILESDIR}"/${P}-gcc7.patch
-	"${FILESDIR}"/${P}-non-x86.patch
-	"${FILESDIR}"/${P}-no-ldflags-for-conftest.patch
-	"${FILESDIR}"/${P}-no-wm_type-in-fs.patch
-)
-
-DOCS=( CODING_STYLE CREDITS PATCHES README )
-
-src_prepare() {
-	default
-
-	eautoreconf
-
-	ln -sf ../../../Sources/API Documentation/Utilities/ReferenceDocs/ClanLib || die
-}
-
-src_configure() {
-	# Add -DPACKAGE_BUGREPORT?
-	local myeconfargs=(
-		$(use_enable doc docs)
-		$(use_enable cpu_flags_x86_sse2 sse2)
-		$(use_enable opengl clanGL)
-		$(use_enable opengl clanGL1)
-		$(use_enable opengl clanGUI)
-		$(use_enable X clanDisplay)
-		$(use_enable vorbis clanVorbis)
-		$(use_enable mikmod clanMikMod)
-		$(use_enable sqlite clanSqlite)
-		$(use_enable ipv6 getaddr)
-	)
-
-	use sound \
-		|| use vorbis \
-		|| use mikmod \
-		|| myeconfargs+=( --disable-clanSound )
-
-	tc-export PKG_CONFIG
-
-	econf "${myeconfargs[@]}"
-}
-
-src_compile() {
-	emake
-
-	use doc && emake html
-}
-
-# html files are keeped in a directory that is dependent on the SLOT
-# so to keep eventual bookmarks to the doc from version to version
-src_install() {
-	default
-
-	find "${ED}" -type f -name '*.la' -delete || die
-
-	if use doc ; then
-		emake DESTDIR="${D}" install-html
-		dodoc -r Examples Resources
-	fi
-}

diff --git a/dev-games/clanlib/clanlib-4.1.0.ebuild b/dev-games/clanlib/clanlib-4.1.0.ebuild
deleted file mode 100644
index 98a0ab082277..000000000000
--- a/dev-games/clanlib/clanlib-4.1.0.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools toolchain-funcs
-
-MY_PN=ClanLib
-
-DESCRIPTION="Multi-platform game development library"
-HOMEPAGE="https://github.com/sphair/ClanLib"
-SRC_URI="https://github.com/sphair/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-LICENSE="ZLIB"
-SLOT="4.1"
-KEYWORDS="amd64 x86" #not big endian safe #82779
-IUSE="cpu_flags_x86_sse2 doc examples ipv6 opengl +sound static-libs X"
-REQUIRED_USE="opengl? ( X )"
-
-RDEPEND="
-	sys-libs/zlib
-	X? (
-		media-libs/freetype:2
-		media-libs/fontconfig
-		x11-libs/libX11
-		opengl? (
-			virtual/opengl
-			x11-libs/libXrender
-		)
-	)
-	sound? ( media-libs/alsa-lib )"
-DEPEND="${RDEPEND}"
-BDEPEND="
-	virtual/pkgconfig
-	doc? (
-		app-text/doxygen
-		dev-lang/perl
-		media-gfx/graphviz
-	)"
-
-src_prepare() {
-	default
-	eautoreconf
-}
-
-src_configure() {
-	local myeconfargs=(
-		$(use_enable doc docs)
-		$(use_enable cpu_flags_x86_sse2 sse2)
-		$(use_enable opengl clanGL)
-		$(use_enable opengl clanUI)
-		$(use_enable X clanDisplay)
-		$(use_enable sound clanSound)
-		$(use_enable ipv6 getaddr)
-		$(use_enable static-libs static)
-	)
-
-	tc-export PKG_CONFIG
-
-	econf "${myeconfargs[@]}"
-}
-
-src_compile() {
-	default
-	use doc && emake html
-}
-
-src_install() {
-	default
-
-	use doc && emake DESTDIR="${D}" install-html
-	use examples && dodoc -r Examples Resources
-
-	# package provides .pc files
-	find "${ED}" -name '*.la' -delete || die
-}


             reply	other threads:[~2025-08-25 18:19 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-08-25 18:19 Andreas Sturmlechner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-06-28 21:57 [gentoo-commits] repo/gentoo:master commit in: dev-games/clanlib/ Sam James
2025-06-28 21:57 Sam James
2025-06-28 21:57 Sam James
2025-06-28 21:57 Sam James
2025-06-28 21:57 Sam James
2025-06-28 21:57 Sam James
2025-06-28 21:57 Sam James
2025-06-28 21:57 Sam James
2024-11-02 12:06 Conrad Kostecki
2024-07-03 22:37 Eli Schwartz
2024-07-03 22:37 Eli Schwartz
2024-07-03 22:37 Eli Schwartz
2023-09-27  6:34 Sam James
2023-09-27  6:15 Sam James
2022-12-19  7:23 Ionen Wolkens
2022-12-19  7:23 Ionen Wolkens
2022-12-19  7:23 Ionen Wolkens
2022-12-13 18:07 Arthur Zamarin
2022-12-13 18:07 Arthur Zamarin
2022-10-28 22:47 Pacho Ramos
2021-10-22  2:21 Ionen Wolkens
2021-10-22  2:21 Ionen Wolkens
2021-10-22  2:21 Ionen Wolkens
2021-04-11  9:24 James Le Cuirot
2021-03-12 19:25 Sam James
2021-03-12 19:23 Sam James
2021-03-12 19:23 Sam James
2021-03-12 18:58 Sam James
2021-03-12 18:58 Sam James
2021-02-25  9:53 Sam James
2021-02-25  6:36 Sam James
2016-04-28  4:08 Michael Sterrett
2016-01-02 20:50 Michael Sterrett
2015-12-18 10:16 Michael Sterrett
2015-12-18 10:13 Michael Sterrett
2015-12-18  0:47 Michael Sterrett

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1756145950.111d64f0b120eeabcd717fe3bb9eb72bbae6baf7.asturm@gentoo \
    --to=asturm@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox