summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2016-10-21 01:37:46 +0200
committerDavid Seifert <soap@gentoo.org>2016-10-21 01:38:55 +0200
commitdb039bd0d329cd00925311a4ecb376931a789232 (patch)
treef8426ef3638e8a29a275ad3be815e0d6f1bf4752 /sci-libs/beagle
parentsci-libs/beagle: Allow for compiling with GCC 6 (diff)
downloadgentoo-db039bd0d329cd00925311a4ecb376931a789232.tar.gz
gentoo-db039bd0d329cd00925311a4ecb376931a789232.tar.bz2
gentoo-db039bd0d329cd00925311a4ecb376931a789232.zip
sci-libs/beagle: Remove old ebuild
Package-Manager: portage-2.3.2
Diffstat (limited to 'sci-libs/beagle')
-rw-r--r--sci-libs/beagle/beagle-3.0.3.ebuild55
1 files changed, 0 insertions, 55 deletions
diff --git a/sci-libs/beagle/beagle-3.0.3.ebuild b/sci-libs/beagle/beagle-3.0.3.ebuild
deleted file mode 100644
index 52ba7e8f86b2..000000000000
--- a/sci-libs/beagle/beagle-3.0.3.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit autotools-utils
-
-DESCRIPTION="Open BEAGLE, a versatile EC/GA/GP framework"
-SRC_URI="mirror://sourceforge/beagle/${P}.tar.gz"
-HOMEPAGE="http://beagle.gel.ulaval.ca/"
-
-SLOT="0"
-LICENSE="LGPL-2.1"
-KEYWORDS="~amd64 x86"
-IUSE="doc static-libs"
-
-RDEPEND="
- sys-libs/zlib
- !app-misc/beagle
- !dev-libs/libbeagle"
-DEPEND="${DEPEND}
- doc? ( app-doc/doxygen )"
-
-PATCHES=( "${FILESDIR}"/${PN}-3.0.3-gcc43.patch "${FILESDIR}"/${PN}-3.0.3-gcc47.patch )
-
-AUTOTOOLS_IN_SOURCE_BUILD=1
-
-src_prepare() {
- autotools-utils_src_prepare
- sed -e "s:@LIBS@:@LIBS@ -lpthread:" \
- -i PACC/Threading/Makefile.in || \
- die "Failed to fix threading libs makefile."
-}
-
-src_configure() {
- local myeconfargs=( --enable-optimization )
- autotools-utils_src_configure
-}
-
-src_compile() {
- autotools-utils_src_compile
-
- use doc && autotools-utils_src_compile doc
-}
-
-src_install () {
- autotools-utils_src_install
-
- if use doc; then
- cp -pPR examples "${D}"/usr/share/doc/${PF} || \
- die "Failed to install examples."
- dohtml -r refman/*
- fi
-}