diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2012-07-22 13:22:18 +0400 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2012-07-22 13:22:18 +0400 |
commit | e303376fdcec6942f3f920b2af1d37579b8e1d00 (patch) | |
tree | 4943878fe9997701397d4616007441267a6534b3 /sci-libs/cuba/cuba-3.0.ebuild | |
parent | 2114044825a17fa3fc65e4216261f1e8212e7ffa (diff) | |
download | ebuilds-e303376fdcec6942f3f920b2af1d37579b8e1d00.tar.gz |
New upstream version. Removed shared library support. Removed cuba-2.1-r1.ebuild and cuba-3.0.ebuild
Diffstat (limited to 'sci-libs/cuba/cuba-3.0.ebuild')
-rw-r--r-- | sci-libs/cuba/cuba-3.0.ebuild | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/sci-libs/cuba/cuba-3.0.ebuild b/sci-libs/cuba/cuba-3.0.ebuild deleted file mode 100644 index 8f3b6c3..0000000 --- a/sci-libs/cuba/cuba-3.0.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -inherit eutils - -EAPI="3" - -DESCRIPTION="A library for multidimensional numerical integration" -HOMEPAGE="http://www.feynarts.de/cuba/" -LICENSE="LGPL" -SRC_URI="http://www.feynarts.de/cuba/Cuba-${PV}.tar.gz" -S=${WORKDIR}/Cuba-${PV} - -KEYWORDS="~amd64 ~x86" -IUSE="+static-libs +shared-libs doc examples" -SLOT="0" - - -src_prepare() { - if use shared-libs; then - epatch "${FILESDIR}/${PV}-shared.patch" - elif use !static-libs; then - eerror "Must USE shared-libs or static-libs" - die - fi -} - -src_configure() { - econf -} - -src_compile() { - if [ -f Makefile ] || [ -f GNUmakefile ] || [ -f makefile ]; then - emake lib || die "emake failed" - else - die "No Makefile" - fi -} - -#src_test() { -# emake check -#} - - -src_install() { - use static-libs && dolib.a libcuba.a - use shared-libs && dolib.so libcuba.so* - use doc && dodoc cuba.pdf ChangeLog - if use examples; then - insinto /usr/share/doc/${PF} - doins -r demo - fi - insinto /usr/include - doins cuba.h -} - |