From 1bef088d7601f1eaca6cdeb72a13efe84975b889 Mon Sep 17 00:00:00 2001 From: Jakov Smolić Date: Sun, 12 Feb 2023 11:34:16 +0100 Subject: dev-games/wfmath: treeclean MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes: https://bugs.gentoo.org/870718 Closes: https://bugs.gentoo.org/729732 Signed-off-by: Jakov Smolić --- dev-games/wfmath/Manifest | 1 - .../wfmath/files/wfmath-1.0.2-fix-bashisms.patch | 16 ------- dev-games/wfmath/metadata.xml | 20 --------- dev-games/wfmath/wfmath-1.0.2.ebuild | 51 ---------------------- 4 files changed, 88 deletions(-) delete mode 100644 dev-games/wfmath/Manifest delete mode 100644 dev-games/wfmath/files/wfmath-1.0.2-fix-bashisms.patch delete mode 100644 dev-games/wfmath/metadata.xml delete mode 100644 dev-games/wfmath/wfmath-1.0.2.ebuild (limited to 'dev-games') diff --git a/dev-games/wfmath/Manifest b/dev-games/wfmath/Manifest deleted file mode 100644 index e0e04d9bc8b3..000000000000 --- a/dev-games/wfmath/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST wfmath-1.0.2.tar.bz2 399987 BLAKE2B d299a6d90a37a90daa6a86e0ddad15201c1a5ee247159633ba68fcb6d0df1205bd60869e73d4849b923f3dd8142a167348bdac6764dda7a3b9857d9b9eae5701 SHA512 3506dbaed5db914b0be5483d5b589d95ed495b6375384e4b045844f8d76240f97b5c322ac432faf177f16da0fedd0b0e6006877a9b40e7f5d31d3324efa6de57 diff --git a/dev-games/wfmath/files/wfmath-1.0.2-fix-bashisms.patch b/dev-games/wfmath/files/wfmath-1.0.2-fix-bashisms.patch deleted file mode 100644 index d9a6edcfbd95..000000000000 --- a/dev-games/wfmath/files/wfmath-1.0.2-fix-bashisms.patch +++ /dev/null @@ -1,16 +0,0 @@ ---- a/configure.ac -+++ b/configure.ac -@@ -81,11 +81,11 @@ PKG_CHECK_MODULES(ATLAS_0_6, atlascpp-0.6 >= 0.6.0, - dnl those should already be using Atlas explicitly. - ], found_atlas_0_6=no) - --AM_CONDITIONAL(HAVE_ATLAS_0_6, test $found_atlas_0_6 == yes) -+AM_CONDITIONAL(HAVE_ATLAS_0_6, test $found_atlas_0_6 = xyes) - - AC_CHECK_HEADERS(sstream strstream, [ found_string_stream=yes break ], - [ found_string_stream=no ]) --if test $found_string_stream == no ; then -+if test $found_string_stream = xno ; then - AC_MSG_ERROR(Couldn't find C++ string <-> stream conversion method.) - fi - diff --git a/dev-games/wfmath/metadata.xml b/dev-games/wfmath/metadata.xml deleted file mode 100644 index 2da3d5b6b190..000000000000 --- a/dev-games/wfmath/metadata.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - games@gentoo.org - Gentoo Games Project - - - The primary focus of WFMath is geometric objects. Thus, it includes several - shapes (boxes, balls, lines), in addition to the basic math objects that are - used to build these shapes (points, vectors, matricies). - Most of the library classes can be divided into two sorts. The first kind are - basic mathematical objects, whose members are all fundamental types. The second - kind are shapes, which implement the shape class interface described in - doc/shape.h. - - - worldforge - - diff --git a/dev-games/wfmath/wfmath-1.0.2.ebuild b/dev-games/wfmath/wfmath-1.0.2.ebuild deleted file mode 100644 index a784467255d9..000000000000 --- a/dev-games/wfmath/wfmath-1.0.2.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -DESCRIPTION="Worldforge math library" -HOMEPAGE="http://www.worldforge.org/dev/eng/libraries/wfmath" -SRC_URI="mirror://sourceforge/worldforge/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="doc" - -BDEPEND=" - virtual/pkgconfig - doc? ( app-doc/doxygen ) -" - -PATCHES=( - "${FILESDIR}"/${PN}-1.0.2-fix-bashisms.patch -) - -src_prepare() { - default - - # For bashisms patch - eautoreconf -} - -src_configure() { - econf --disable-static -} - -src_compile() { - default - use doc && emake -C doc docs -} - -src_install() { - default - - if use doc ; then - docinto html - dodoc doc/html/* - fi - - find "${ED}" -type f -name '*.la' -delete || die -} -- cgit v1.2.3-65-gdbad