summaryrefslogtreecommitdiff
blob: 76695906068df848e7150bcb7b7e0ebd2d1911ca (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=5

PYTHON_COMPAT=( python2_7 python3_{4,5,6} )

inherit distutils-r1

DESCRIPTION="Lightweight library that exposes C++ types in Python and vice versa"
HOMEPAGE="https://github.com/wjakob/pybind11"
SRC_URI="https://github.com/pybind/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc man info"

RDEPEND="info? ( sys-apps/texinfo )"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
	doc? (
		dev-python/sphinx[${PYTHON_USEDEP}]
		dev-python/breathe[${PYTHON_USEDEP}]
	)
	man? (
		dev-python/sphinx[${PYTHON_USEDEP}]
		dev-python/breathe[${PYTHON_USEDEP}]
	)
	info? (
		dev-python/sphinx[${PYTHON_USEDEP}]
		dev-python/breathe[${PYTHON_USEDEP}]
	)"

python_compile_all() {
	if use doc || use man || use info; then
		cd docs || die
		emake $(use doc && echo html) $(use man && echo man) $(use info && echo info)
	fi
}

python_install_all() {
	distutils-r1_python_install_all

	dodoc README.md
	use doc && dodoc -r docs/.build/html
	use man && doman docs/.build/man/pybind11.1
	use info && doinfo docs/.build/texinfo/pybind11.info
}