dev-libs/libflatarray: Drop old
authorAndreas Sturmlechner <asturm@gentoo.org>
Sun, 3 Jun 2018 14:24:47 +0000 (16:24 +0200)
committerAndreas Sturmlechner <asturm@gentoo.org>
Mon, 25 Jun 2018 04:43:48 +0000 (06:43 +0200)
Package-Manager: Portage-2.3.40, Repoman-2.3.9

dev-libs/libflatarray/Manifest
dev-libs/libflatarray/libflatarray-0.1.1.ebuild [deleted file]

index d2a9541035394b953f2b13140fd22fc34965633f..40387084ff3be89cc2a11dcd9ad127ee5185a020 100644 (file)
@@ -1,2 +1 @@
-DIST libflatarray-0.1.1.tar.bz2 16866 BLAKE2B 71adb98c369ad4eb556d63270d74bca301fa8a8e6864e87f569c90e3024c2fbac937276e508e2e1ab1f610c3c04a8d4351dacfc48f934157545d1c3f41cf5839 SHA512 feed796e3932fc0131634f2f83415372e8046ee137502614de5bfb5af88db2fc44afcdd995d9b2f245737d223b79fdae33ba772b154b4dac064eeed67d489542
 DIST libflatarray-0.3.0.tar.bz2 104544 BLAKE2B 9ac490a526fbd71478ac569538bad28e01a1a91bd71d37e85bf89181e856e79b2dec6af5415f238e5f72fbbe57cda59ee87ebd79cd273887061e2bbb93a7ce31 SHA512 c58339cdadf98f552d2f1b440a293c48923f32fc43a5a06ee8b8a40835a5f6c21514f7a9efa0ff23930ab9fdda8d4389641ec83c589e1982dbf5a3f75d2ffd37
diff --git a/dev-libs/libflatarray/libflatarray-0.1.1.ebuild b/dev-libs/libflatarray/libflatarray-0.1.1.ebuild
deleted file mode 100644 (file)
index 0c41a78..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit cmake-utils cuda
-
-SRC_URI="http://www.libgeodecomp.org/archive/${P}.tar.bz2"
-KEYWORDS="~amd64 ~ppc ~x86"
-
-DESCRIPTION="Struct of arrays library with object oriented interface for C++"
-HOMEPAGE="http://www.libgeodecomp.org/libflatarray.html"
-
-SLOT="0"
-LICENSE="Boost-1.0"
-IUSE="cuda doc"
-
-RDEPEND="
-       >=dev-libs/boost-1.48"
-DEPEND="${RDEPEND}
-       doc? ( app-doc/doxygen )
-       cuda? ( dev-util/nvidia-cuda-toolkit )"
-
-src_prepare() {
-       if use cuda; then
-               cuda_src_prepare
-       fi
-}
-
-src_configure() {
-       local mycmakeargs=(
-               $(cmake-utils_use_with cuda CUDA)
-       )
-       cmake-utils_src_configure
-}
-
-src_compile() {
-       cmake-utils_src_compile
-}
-
-src_install() {
-       DOCS=( README )
-       cmake-utils_src_install
-}
-
-src_test() {
-       cmake-utils_src_make test
-}