summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2018-06-03 14:39:59 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2018-06-06 16:54:43 +0200
commitdfae3f1ff757cb05fe4b412d105851cf020b0b46 (patch)
tree092881f11d9c8fb97392ea865e54fa8bd88ce2d5
parentsci-libs/flann: Sync live with 1.9.1 updates (diff)
downloadgentoo-dfae3f1ff757cb05fe4b412d105851cf020b0b46.tar.gz
gentoo-dfae3f1ff757cb05fe4b412d105851cf020b0b46.tar.bz2
gentoo-dfae3f1ff757cb05fe4b412d105851cf020b0b46.zip
sci-libs/cminpack: Drop old
Package-Manager: Portage-2.3.40, Repoman-2.3.9
-rw-r--r--sci-libs/cminpack/Manifest1
-rw-r--r--sci-libs/cminpack/cminpack-1.3.4.ebuild34
-rw-r--r--sci-libs/cminpack/files/cminpack-1.2.2-underlinking.patch15
3 files changed, 0 insertions, 50 deletions
diff --git a/sci-libs/cminpack/Manifest b/sci-libs/cminpack/Manifest
index 4480ec954025..cee1edd10f4c 100644
--- a/sci-libs/cminpack/Manifest
+++ b/sci-libs/cminpack/Manifest
@@ -1,2 +1 @@
-DIST cminpack-1.3.4.tar.gz 311147 BLAKE2B 031739d6932326d2b11ccda6317afd17cd610bfd394106720f1b5e18d8311f19e99ff36a3b362fd2ee37e997630a267be9bdab208add61597c23198dda4d6363 SHA512 2221dd710285e4d043ec51b296979686645ee48dad2e4bcbfef3e78ff6e8e02c09575af17edc3e9879cb9b7d4b431f0effe24640a2bdc437e32d0d0710545d7a
DIST cminpack-1.3.5.tar.gz 312932 BLAKE2B 52ab91490f7c569e3931346510e08db55166322399736ceb9cc090a3be3624e8db6de12ed33ee8f97f6c5358dc2488f8aa7c7aab81365316f1dbb8948e669a2e SHA512 bb6f1764d90ccc7cbbb114a509f5416567246a730e4329617671e01b535b3a69f6a6df0483810ad1ad28228a1061a3595a15d437647b94a8a2013203905c6fed
diff --git a/sci-libs/cminpack/cminpack-1.3.4.ebuild b/sci-libs/cminpack/cminpack-1.3.4.ebuild
deleted file mode 100644
index e4845a26287c..000000000000
--- a/sci-libs/cminpack/cminpack-1.3.4.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit cmake-utils multilib
-
-DESCRIPTION="C implementation of the MINPACK nonlinear optimization library"
-HOMEPAGE="http://devernay.free.fr/hacks/cminpack/"
-SRC_URI="${HOMEPAGE}/${P}.tar.gz"
-
-LICENSE="minpack"
-SLOT="0/1"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc test"
-
-PATCHES=( "${FILESDIR}"/${PN}-1.2.2-underlinking.patch )
-
-src_configure() {
- sed -i \
- -e "/CMINPACK_LIB_INSTALL_DIR/s:lib\(\|64\):$(get_libdir):g" \
- cmake/cminpack_utils.cmake || die
- local mycmakeargs+=(
- -DSHARED_LIBS=ON
- $(cmake-utils_use_build test examples)
- )
- cmake-utils_src_configure
-}
-
-src_install() {
- cmake-utils_src_install
- dodoc readme*
- use doc && dohtml -A .txt doc/*
-}
diff --git a/sci-libs/cminpack/files/cminpack-1.2.2-underlinking.patch b/sci-libs/cminpack/files/cminpack-1.2.2-underlinking.patch
deleted file mode 100644
index a042d4c2f72b..000000000000
--- a/sci-libs/cminpack/files/cminpack-1.2.2-underlinking.patch
+++ /dev/null
@@ -1,15 +0,0 @@
- CMakeLists.txt | 1 +
- 1 files changed, 1 insertions(+), 0 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 57394af..5a46a75 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -56,6 +56,7 @@ set (cminpack_hdrs
- cminpack.h minpack.h)
-
- add_library (cminpack ${LIB_TYPE} ${cminpack_srcs})
-+target_link_libraries (cminpack m)
-
- install (TARGETS cminpack
- LIBRARY DESTINATION ${CMINPACK_LIB_INSTALL_DIR} COMPONENT library