summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2012-12-01 18:08:17 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2012-12-01 18:08:17 +0000
commit661bc17ce1f22402d6bcb76502edc151892f84d0 (patch)
tree0258db4368d48c0cfe9909c49bc93988ff31777b /dev-games/wfmath
parentold (diff)
downloadgentoo-2-661bc17ce1f22402d6bcb76502edc151892f84d0.tar.gz
gentoo-2-661bc17ce1f22402d6bcb76502edc151892f84d0.tar.bz2
gentoo-2-661bc17ce1f22402d6bcb76502edc151892f84d0.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/ChangeLog5
-rw-r--r--dev-games/wfmath/wfmath-1.0.0.ebuild40
2 files changed, 4 insertions, 41 deletions
diff --git a/dev-games/wfmath/ChangeLog b/dev-games/wfmath/ChangeLog
index 6ebad0aeffb4..2d5fa5bfc668 100644
--- a/dev-games/wfmath/ChangeLog
+++ b/dev-games/wfmath/ChangeLog
@@ -1,6 +1,9 @@
# 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.22 2012/11/12 23:05:13 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/wfmath/ChangeLog,v 1.23 2012/12/01 18:08:17 mr_bones_ Exp $
+
+ 01 Dec 2012; Michael Sterrett <mr_bones_@gentoo.org> -wfmath-1.0.0.ebuild:
+ old
*wfmath-1.0.1 (12 Nov 2012)
diff --git a/dev-games/wfmath/wfmath-1.0.0.ebuild b/dev-games/wfmath/wfmath-1.0.0.ebuild
deleted file mode 100644
index 9acbbc4c664e..000000000000
--- a/dev-games/wfmath/wfmath-1.0.0.ebuild
+++ /dev/null
@@ -1,40 +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-1.0.0.ebuild,v 1.2 2012/10/31 09:25:13 tupone Exp $
-
-EAPI=4
-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 )
- virtual/pkgconfig"
-
-src_configure() {
- econf \
- $(use_enable static-libs static)
-}
-
-src_compile() {
- emake
- if use doc; then
- emake -C doc docs
- fi
-}
-
-src_install() {
- default
- 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
-}