blob: 6cacdc1883ef16d6576ec067b548a2f8271e695a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost-numpy/boost-numpy-9999.ebuild,v 1.1 2013/12/06 13:06:15 heroxbd Exp $
EAPI=5
inherit cmake-multilib
DESCRIPTION="Boost.Python interface for NumPy"
HOMEPAGE="https://github.com/ndarray/Boost.NumPy"
if [ ${PV} == 9999 ]; then
inherit git-2
EGIT_REPO_URI="git://github.com/ndarray/Boost.NumPy.git \
https://github.com/ndarray/Boost.NumPy.git"
else
SRC_URI="http://dev.gentoo.org/~heroxbd/${P}.tar.xz"
fi
LICENSE="Boost-1.0"
SLOT=0
IUSE="doc examples"
KEYWORDS=""
CDEPEND="dev-python/numpy
dev-libs/boost"
DEPEND="${CDEPEND}"
RDEPEND="${CDEPEND}"
src_install() {
cmake-multilib_src_install
use doc && dodoc -r libs/numpy/doc/*
use examples && dodoc -r libs/numpy/example
}
|