aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAstroFloyd <AstroFloyd@gmail.com>2022-07-24 16:32:21 +0200
committerAstroFloyd <AstroFloyd@gmail.com>2022-07-24 16:32:21 +0200
commit94a9e3ae765a72887b7d2eb02502ca90a8817683 (patch)
treea5e977b11b6c74ba064d76f179ab57cbe6e52816 /sci-libs/levmar/levmar-2.6-r2.ebuild
parentsci-astronomy/soltrack: revision bump to v2.2-r1. (diff)
downloadAstroFloyd-94a9e3ae765a72887b7d2eb02502ca90a8817683.tar.gz
AstroFloyd-94a9e3ae765a72887b7d2eb02502ca90a8817683.tar.bz2
AstroFloyd-94a9e3ae765a72887b7d2eb02502ca90a8817683.zip
sci-libs/levmar: remove package.
Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: AstroFloyd <AstroFloyd@gmail.com>
Diffstat (limited to 'sci-libs/levmar/levmar-2.6-r2.ebuild')
-rw-r--r--sci-libs/levmar/levmar-2.6-r2.ebuild44
1 files changed, 0 insertions, 44 deletions
diff --git a/sci-libs/levmar/levmar-2.6-r2.ebuild b/sci-libs/levmar/levmar-2.6-r2.ebuild
deleted file mode 100644
index 39a9932..0000000
--- a/sci-libs/levmar/levmar-2.6-r2.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit cmake-utils eutils toolchain-funcs
-
-DESCRIPTION="Levenberg-Marquardt nonlinear least squares C library"
-HOMEPAGE="http://www.ics.forth.gr/~lourakis/levmar/"
-SRC_URI="${HOMEPAGE}/${P}.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-RDEPEND="
- virtual/blas
- virtual/lapack"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-PATCHES=( "${FILESDIR}"/${P}-shared.patch )
-
-src_configure() {
- local mycmakeargs+=(
- -DNEED_F2C=OFF
- -DHAVE_LAPACK=ON
- -DLAPACKBLAS_LIB_NAMES="$($(tc-getPKG_CONFIG) --libs blas lapack)"
- $(cmake-utils_use test BUILD_DEMO)
- )
- cmake-utils_src_configure
-}
-
-src_test() {
- cd ${CMAKE_BUILD_DIR}
- ./lmdemo || die
-}
-
-src_install() {
- dolib.so ${CMAKE_BUILD_DIR}/liblevmar.so
- insinto /usr/include
- doins levmar.h
-}