summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Grozin <grozin@gentoo.org>2014-03-30 09:03:24 +0000
committerAndrey Grozin <grozin@gentoo.org>2014-03-30 09:03:24 +0000
commit4eb041db36cf1c378a208570c1235b50d1bc7e22 (patch)
treef007204a84452a5a35f8cfbad957893000813929 /sci-mathematics/form
parentNew patches to gcl-2.6.10 for compatibility with readline-6.3 and gmp-6 (diff)
downloadgentoo-2-4eb041db36cf1c378a208570c1235b50d1bc7e22.tar.gz
gentoo-2-4eb041db36cf1c378a208570c1235b50d1bc7e22.tar.bz2
gentoo-2-4eb041db36cf1c378a208570c1235b50d1bc7e22.zip
Cleaning old
(Portage version: 2.2.10/cvs/Linux i686, signed Manifest commit with key 0x3AFFCE974D34BD8C!)
Diffstat (limited to 'sci-mathematics/form')
-rw-r--r--sci-mathematics/form/ChangeLog7
-rw-r--r--sci-mathematics/form/form-4.0_p20120529.ebuild84
2 files changed, 5 insertions, 86 deletions
diff --git a/sci-mathematics/form/ChangeLog b/sci-mathematics/form/ChangeLog
index 6f3e7881f8af..63e1d336f0d8 100644
--- a/sci-mathematics/form/ChangeLog
+++ b/sci-mathematics/form/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sci-mathematics/form
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/form/ChangeLog,v 1.5 2013/11/05 18:49:54 jlec Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/form/ChangeLog,v 1.6 2014/03/30 09:03:24 grozin Exp $
+
+ 30 Mar 2014; Andrey Grozin <grozin@gentoo.org> -form-4.0_p20120529.ebuild:
+ Cleaning old
*form-4.1 (05 Nov 2013)
diff --git a/sci-mathematics/form/form-4.0_p20120529.ebuild b/sci-mathematics/form/form-4.0_p20120529.ebuild
deleted file mode 100644
index 40bc5cdc522b..000000000000
--- a/sci-mathematics/form/form-4.0_p20120529.ebuild
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/form/form-4.0_p20120529.ebuild,v 1.4 2012/06/01 21:17:19 tomka Exp $
-
-EAPI=4
-
-inherit autotools
-
-DESCRIPTION="Symbolic Manipulation System"
-HOMEPAGE="http://www.nikhef.nl/~form/"
-SRC_URI="http://dev.gentoo.org/~grozin/${P}.tar.gz"
-
-S="${WORKDIR}/formcvs"
-
-LICENSE="GPL-3"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="devref doc doxygen gmp mpi threads zlib"
-
-RDEPEND="gmp? ( dev-libs/gmp )
- mpi? ( virtual/mpi )
- zlib? ( sys-libs/zlib )"
-DEPEND="${RDEPEND}
- devref? ( dev-texlive/texlive-latex )
- doc? ( dev-texlive/texlive-latex )
- doxygen? ( app-doc/doxygen )"
-
-src_prepare() {
- sed -i 's/LINKFLAGS = -s/LINKFLAGS =/' sources/Makefile.am || die
- eautoreconf
-}
-
-src_configure() {
- econf \
- --enable-scalar \
- --enable-largefile \
- --disable-debug \
- --disable-static-link \
- --with-api=posix \
- $(use_with gmp ) \
- $(use_enable mpi parform ) \
- $(use_enable threads threaded ) \
- $(use_with zlib ) \
- CC="$(tc-getCC)" \
- CXX="$(tc-getCXX)" \
- CFLAGS="${CFLAGS}" \
- LDFLAGS="${LDFLAGS}" \
- CXXFLAGS="${CXXFLAGS}"
-}
-
-src_compile() {
- default
- if use devref; then
- pushd doc/devref > /dev/null || die "doc/devref does not exist"
- LANG=C emake pdf
- popd > /dev/null
- fi
- if use doc; then
- pushd doc/manual > /dev/null || die "doc/manual does not exist"
- LANG=C emake pdf
- popd > /dev/null
- fi
- if use doxygen; then
- pushd doc/doxygen > /dev/null || die "doc/doxygen does not exist"
- emake html
- popd > /dev/null
- fi
-}
-
-src_install() {
- default
- if use devref; then
- insinto /usr/share/doc/${PF}
- doins doc/devref/devref.pdf
- fi
- if use doc; then
- insinto /usr/share/doc/${PF}
- doins doc/manual/manual.pdf
- fi
- if use doxygen; then
- dohtml -r doc/doxygen/html/*
- fi
-}