summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2012-12-31 08:48:43 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2012-12-31 08:48:43 +0000
commit7f519a97c90b89888f6bc9f72319cfadca6903b3 (patch)
tree8933b0730f055309d6b9694076ca4008945ef780 /dev-games/wfmath
parentInitial ebuild by me. (diff)
downloadgentoo-2-7f519a97c90b89888f6bc9f72319cfadca6903b3.tar.gz
gentoo-2-7f519a97c90b89888f6bc9f72319cfadca6903b3.tar.bz2
gentoo-2-7f519a97c90b89888f6bc9f72319cfadca6903b3.zip
old
(Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-games/wfmath')
-rw-r--r--dev-games/wfmath/ChangeLog6
-rw-r--r--dev-games/wfmath/files/wfmath-0.3.11-gcc47.patch21
-rw-r--r--dev-games/wfmath/wfmath-0.3.11.ebuild48
3 files changed, 5 insertions, 70 deletions
diff --git a/dev-games/wfmath/ChangeLog b/dev-games/wfmath/ChangeLog
index 71f7a828cc0d..26d7f46cddab 100644
--- a/dev-games/wfmath/ChangeLog
+++ b/dev-games/wfmath/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-games/wfmath
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/wfmath/ChangeLog,v 1.25 2012/12/26 01:24:46 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/wfmath/ChangeLog,v 1.26 2012/12/31 08:48:43 mr_bones_ Exp $
+
+ 31 Dec 2012; Michael Sterrett <mr_bones_@gentoo.org>
+ -files/wfmath-0.3.11-gcc47.patch, -wfmath-0.3.11.ebuild:
+ old
26 Dec 2012; Jeff Horelick <jdhore@gentoo.org> wfmath-1.0.1.ebuild:
marked x86 per bug 447162
diff --git a/dev-games/wfmath/files/wfmath-0.3.11-gcc47.patch b/dev-games/wfmath/files/wfmath-0.3.11-gcc47.patch
deleted file mode 100644
index c475ccb1ddad..000000000000
--- a/dev-games/wfmath/files/wfmath-0.3.11-gcc47.patch
+++ /dev/null
@@ -1,21 +0,0 @@
---- wfmath/vector.h.old 2012-10-31 08:39:38.033547273 +0100
-+++ wfmath/vector.h 2012-10-31 08:40:12.200097132 +0100
-@@ -34,6 +34,7 @@
- #include <wfmath/zero.h>
-
- #include <iosfwd>
-+#include <cmath>
-
- namespace WFMath {
-
---- wfmath/point.h.old 2012-10-31 08:41:00.226654036 +0100
-+++ wfmath/point.h 2012-10-31 08:41:52.353918234 +0100
-@@ -32,6 +32,8 @@
- #include <memory>
- #include <iosfwd>
-
-+#include <cmath>
-+
- namespace WFMath {
-
- template<const int dim>
diff --git a/dev-games/wfmath/wfmath-0.3.11.ebuild b/dev-games/wfmath/wfmath-0.3.11.ebuild
deleted file mode 100644
index ba2d63899648..000000000000
--- a/dev-games/wfmath/wfmath-0.3.11.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/wfmath/wfmath-0.3.11.ebuild,v 1.4 2012/10/31 09:25:13 tupone Exp $
-
-EAPI=2
-
-inherit eutils
-
-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 static-libs"
-
-RDEPEND=""
-DEPEND="doc? ( app-doc/doxygen )"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-gcc47.patch
-}
-
-src_configure() {
- econf \
- --disable-dependency-tracking \
- $(use_enable static-libs static)
-}
-
-src_compile() {
- emake || die "emake failed"
- if use doc; then
- emake -C doc docs || die "emake doc failed"
- fi
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc AUTHORS ChangeLog NEWS README TODO
- if use doc; then
- dohtml doc/html/*
- fi
- if ! use static-libs ; then
- find "${D}" -type f -name '*.la' -exec rm {} + \
- || die "la removal failed"
- fi
-}