From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QGFnE-0005lW-HS for garchives@archives.gentoo.org; Sat, 30 Apr 2011 19:25:29 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 703E51C04B; Sat, 30 Apr 2011 19:25:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 39F211C057 for ; Sat, 30 Apr 2011 19:25:06 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A77211B4024 for ; Sat, 30 Apr 2011 19:15:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 07B2B80507 for ; Sat, 30 Apr 2011 19:15:53 +0000 (UTC) From: "Andreas K. Huettel" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Huettel" Message-ID: <800a48408b30f8c6b082e5d634d19e35623b8309.dilfridge@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: sci-libs/flann/ X-VCS-Repository: proj/kde X-VCS-Files: sci-libs/flann/flann-1.6.8.ebuild X-VCS-Directories: sci-libs/flann/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Huettel X-VCS-Revision: 800a48408b30f8c6b082e5d634d19e35623b8309 Date: Sat, 30 Apr 2011 19:15:53 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 8c93732dff53795b03ccfb6e71d7c9f8 commit: 800a48408b30f8c6b082e5d634d19e35623b8309 Author: Andreas K. Huettel (dilfridge) akhuettel de> AuthorDate: Sat Apr 30 19:17:48 2011 +0000 Commit: Andreas K. Huettel gentoo org> CommitDate: Sat Apr 30 19:17:48 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/kde.git;a=3Dc= ommit;h=3D800a4840 [sci-libs/flann] Moved to main tree --- sci-libs/flann/flann-1.6.8.ebuild | 43 -------------------------------= ------ 1 files changed, 0 insertions(+), 43 deletions(-) diff --git a/sci-libs/flann/flann-1.6.8.ebuild b/sci-libs/flann/flann-1.6= .8.ebuild deleted file mode 100644 index 09d4c0a..0000000 --- a/sci-libs/flann/flann-1.6.8.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=3D3 - -PYTHON_DEPEND=3D"python? 2:2.5" - -inherit python cmake-utils - -DESCRIPTION=3D"Library for performing fast approximate nearest neighbor = searches in high dimensional spaces" -HOMEPAGE=3D"http://www.cs.ubc.ca/~mariusm/index.php/FLANN/FLANN" -SRC_URI=3D"http://people.cs.ubc.ca/~mariusm/uploads/FLANN/${P}-src.zip" - -LICENSE=3D"BSD" -SLOT=3D"0" -KEYWORDS=3D"~amd64 ~x86" -IUSE=3D"python test" - -RDEPEND=3D"sci-libs/hdf5[mpi,threads] - python? ( dev-python/numpy )" -DEPEND=3D"${DEPEND} - test? ( dev-util/gtest )" - -S=3D${WORKDIR}/${P}-src - -src_prepare() { - sed -i -e "s:share/doc/flann:share/doc/${PF}:" doc/CMakeLists.txt || di= e -} - -src_configure() { - local mycmakeargs=3D( - "-DBUILD_C_BINDINGS=3DON" - "-DBUILD_MATLAB_BINDINGS=3DOFF" - $(cmake-utils_use_build python PYTHON_BINDINGS) - ) - cmake-utils_src_configure -} - -src_test() { - cd "${CMAKE_BUILD_DIR}" - make test || die -}