blob: 21ef0a138707999d01fd0174bb94d9d0bba0fe40 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/polib/polib-1.0.4.ebuild,v 1.5 2014/07/23 15:15:14 ago Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} )
inherit distutils-r1
DESCRIPTION="A library to manipulate gettext files (.po and .mo files)"
HOMEPAGE="https://bitbucket.org/izi/polib/wiki/Home"
SRC_URI="https://www.bitbucket.org/izi/polib/downloads/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="doc"
RDEPEND=""
DEPEND="${RDEPEND}
doc? ( dev-python/sphinx )
"
python_compile_all() {
if use doc; then
cd docs || die
emake html
fi
}
python_test() {
python tests/tests.py || die
}
python_install_all() {
local DOCS="CHANGELOG README.rst"
use doc && local HTML_DOCS=( docs/_build/html/. )
distutils-r1_python_install_all
}
|