summaryrefslogtreecommitdiff
blob: ab2375f5c2c6e8c1f6d1e2482a621c769c2f1fc3 (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
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=6

PYTHON_COMPAT=( python2_7 )

inherit python-single-r1

DESCRIPTION="CrossTeX - object oriented BibTeX replacement"
HOMEPAGE="http://www.cs.cornell.edu/people/egs/crosstex/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="examples"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"

RDEPEND="${PYTHON_DEPS}
	$(python_gen_cond_dep '
		dev-python/ply[${PYTHON_MULTI_USEDEP}]
	')"
DEPEND="${RDEPEND}"

src_install() {
	# NB: LIBDIR changed from site-packages to avoid installing .xtx
	# files to top site-packages dir
	emake \
		ROOT="${D}" \
		PREFIX="${EPREFIX}/usr" \
		LIBDIR="/lib/crosstex" \
		install

	python_fix_shebang "${ED%/}/usr/bin"
	python_optimize "${ED%/}/usr/lib/crosstex"

	dodoc crosstex.pdf
	if use examples; then
		docinto examples
		dodoc -r tests/.
	fi
}