summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDennis Lamm <expeditioneer@gentoo.org>2021-07-21 19:22:17 +0200
committerDennis Lamm <expeditioneer@gentoo.org>2021-07-21 19:48:22 +0200
commitbe9065c531c2442f72339b61186836977520ce51 (patch)
tree6025a884e2fc9cb7db8be9584a1240a4b8eb25a0 /dev-libs
parentdev-libs/libnest2d: replaced hard coded install dirs (diff)
downloadgentoo-be9065c531c2442f72339b61186836977520ce51.tar.gz
gentoo-be9065c531c2442f72339b61186836977520ce51.tar.bz2
gentoo-be9065c531c2442f72339b61186836977520ce51.zip
dev-libs/libnest2d: dropped old
Closes: https://bugs.gentoo.org/802906 Signed-off-by: Dennis Lamm <expeditioneer@gentoo.org> Package-Manager: Portage-3.0.20, Repoman-3.0.2 Closes: https://github.com/gentoo/gentoo/pull/21740 Signed-off-by: Dennis Lamm <expeditioneer@gentoo.org>
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/libnest2d/libnest2d-0.4-r1.ebuild43
1 files changed, 0 insertions, 43 deletions
diff --git a/dev-libs/libnest2d/libnest2d-0.4-r1.ebuild b/dev-libs/libnest2d/libnest2d-0.4-r1.ebuild
deleted file mode 100644
index 721bfa9f47c3..000000000000
--- a/dev-libs/libnest2d/libnest2d-0.4-r1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="Library and framework for the 2D bin packaging problem"
-HOMEPAGE="https://github.com/tamasmeszaros/libnest2d"
-SRC_URI="https://github.com/tamasmeszaros/libnest2d/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-3"
-SLOT="0/1"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-IUSE="examples static-libs test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-cpp/eigen:3
- dev-libs/boost
- dev-libs/clipper
- sci-libs/nlopt
- "
-DEPEND="${RDEPEND}
- test? ( >=dev-cpp/catch-2.9.1 )
- "
-
-PATCHES=(
- "${FILESDIR}"/${P}-add-disallowed-areas.patch
- "${FILESDIR}"/${P}-add-soversion-to-shared-library.patch
- "${FILESDIR}"/${P}-fix-cpp-version.patch
- )
-
-src_configure() {
- local mycmakeargs=(
- -DBUILD_SHARED_LIBS=ON
- -DLIBNEST2D_BUILD_EXAMPLES=$(usex examples)
- -DLIBNEST2D_HEADER_ONLY=$(usex static-libs OFF ON)
- -DLIBNEST2D_BUILD_UNITTESTS=$(usex test)
- )
- cmake_src_configure
-}