summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Popov <pinkbyte@gentoo.org>2013-09-23 08:43:00 +0000
committerSergey Popov <pinkbyte@gentoo.org>2013-09-23 08:43:00 +0000
commit9f8b8d7942518579b98e589fdf39852e7a290016 (patch)
treee17540373938d329699c4ea20387f88cdc2249ad /sys-libs/libmath++
parentVersion bump. Cleanup old. (diff)
downloadgentoo-2-9f8b8d7942518579b98e589fdf39852e7a290016.tar.gz
gentoo-2-9f8b8d7942518579b98e589fdf39852e7a290016.tar.bz2
gentoo-2-9f8b8d7942518579b98e589fdf39852e7a290016.zip
Drop old revision, leaving s390 as unstable only
(Portage version: 2.2.2/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
Diffstat (limited to 'sys-libs/libmath++')
-rw-r--r--sys-libs/libmath++/ChangeLog5
-rw-r--r--sys-libs/libmath++/libmath++-0.0.4.ebuild41
2 files changed, 4 insertions, 42 deletions
diff --git a/sys-libs/libmath++/ChangeLog b/sys-libs/libmath++/ChangeLog
index 6a325a458843..48de325c914c 100644
--- a/sys-libs/libmath++/ChangeLog
+++ b/sys-libs/libmath++/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-libs/libmath++
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libmath++/ChangeLog,v 1.18 2013/08/26 16:55:04 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libmath++/ChangeLog,v 1.19 2013/09/23 08:43:00 pinkbyte Exp $
+
+ 23 Sep 2013; Sergey Popov <pinkbyte@gentoo.org> -libmath++-0.0.4.ebuild:
+ Drop old revision, leaving s390 as unstable only
26 Aug 2013; Agostino Sarubbo <ago@gentoo.org> libmath++-0.0.4-r1.ebuild:
Stable for ppc, wrt bug #480694
diff --git a/sys-libs/libmath++/libmath++-0.0.4.ebuild b/sys-libs/libmath++/libmath++-0.0.4.ebuild
deleted file mode 100644
index 69f82ee2eafe..000000000000
--- a/sys-libs/libmath++/libmath++-0.0.4.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libmath++/libmath++-0.0.4.ebuild,v 1.11 2009/10/13 13:30:22 ssuominen Exp $
-
-inherit autotools
-
-DESCRIPTION="template based math library, written in C++, for symbolic and numeric calculus applications"
-HOMEPAGE="http://rm-rf.in/libmath%2B%2B/"
-SRC_URI="http://upstream.rm-rf.in/libmath%2B%2B/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="1"
-KEYWORDS="ppc s390 x86 amd64"
-IUSE="doc"
-
-DEPEND="doc? ( app-doc/doxygen )"
-RDEPEND=""
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- eautoreconf
-}
-
-src_compile() {
- econf
- emake || die
-
- if use doc; then
- emake -C doc api-doc
- fi
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
- dodoc AUTHORS README TODO
-
- if use doc; then
- dohtml -r "${S}"/doc/user-api/*
- fi
-}