commit: db039bd0d329cd00925311a4ecb376931a789232
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 20 23:37:46 2016 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Oct 20 23:38:55 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db039bd0
sci-libs/beagle: Remove old ebuild
Package-Manager: portage-2.3.2
sci-libs/beagle/beagle-3.0.3.ebuild | 55 -------------------------------------
1 file changed, 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 52ba7e8..00000000
--- 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
-}