summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakov Smolić <jsmolic@gentoo.org>2023-02-12 11:34:16 +0100
committerJakov Smolić <jsmolic@gentoo.org>2023-02-12 19:33:05 +0100
commit1bef088d7601f1eaca6cdeb72a13efe84975b889 (patch)
tree485494ce5a0f15b41818f4d7f836cb964dd82d2b /dev-games
parentdev-cpp/pngpp: treeclean (diff)
downloadgentoo-1bef088d7601f1eaca6cdeb72a13efe84975b889.tar.gz
gentoo-1bef088d7601f1eaca6cdeb72a13efe84975b889.tar.bz2
gentoo-1bef088d7601f1eaca6cdeb72a13efe84975b889.zip
dev-games/wfmath: treeclean
Closes: https://bugs.gentoo.org/870718 Closes: https://bugs.gentoo.org/729732 Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'dev-games')
-rw-r--r--dev-games/wfmath/Manifest1
-rw-r--r--dev-games/wfmath/files/wfmath-1.0.2-fix-bashisms.patch16
-rw-r--r--dev-games/wfmath/metadata.xml20
-rw-r--r--dev-games/wfmath/wfmath-1.0.2.ebuild51
4 files changed, 0 insertions, 88 deletions
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 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>games@gentoo.org</email>
- <name>Gentoo Games Project</name>
- </maintainer>
- <longdescription lang="en">
- 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.
- </longdescription>
- <upstream>
- <remote-id type="sourceforge">worldforge</remote-id>
- </upstream>
-</pkgmetadata>
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
-}