summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-libs/libevocosm/libevocosm-3.3.1-r1.ebuild')
-rw-r--r--dev-libs/libevocosm/libevocosm-3.3.1-r1.ebuild48
1 files changed, 0 insertions, 48 deletions
diff --git a/dev-libs/libevocosm/libevocosm-3.3.1-r1.ebuild b/dev-libs/libevocosm/libevocosm-3.3.1-r1.ebuild
deleted file mode 100644
index 877fc757d405..000000000000
--- a/dev-libs/libevocosm/libevocosm-3.3.1-r1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils ltprune
-
-DESCRIPTION="A C++ framework for evolutionary computing"
-HOMEPAGE="http://www.coyotegulch.com/products/libevocosm/"
-SRC_URI="http://www.coyotegulch.com/distfiles/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux"
-
-IUSE="doc static-libs"
-
-RDEPEND="dev-libs/libcoyotl
- dev-libs/libbrahe"
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )"
-
-DOCS=( AUTHORS ChangeLog NEWS README )
-
-src_prepare() {
- epatch "${FILESDIR}/${P}-gcc47.patch"
- epatch_user
-}
-
-src_configure() {
- export ac_cv_prog_HAVE_DOXYGEN="false"
- econf $(use_enable static-libs static)
-}
-
-src_compile() {
- emake
-
- if use doc ; then
- cd docs
- doxygen libevocosm.doxygen || die "generating docs failed"
- fi
-}
-
-src_install() {
- default
- prune_libtool_files
- use doc && dohtml docs/html/*
-}