dev-libs/libflatarray: Drop old

Package-Manager: Portage-2.3.40, Repoman-2.3.9
This commit is contained in:
Andreas Sturmlechner
2018-06-03 16:24:47 +02:00
parent a5d63e17ed
commit 57a2617160
2 changed files with 0 additions and 49 deletions

View 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

View File

@@ -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
}