forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
crosstex-0.6.ebuild
51 lines (40 loc) · 985 Bytes
/
crosstex-0.6.ebuild
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
49
50
51
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="3"
PYTHON_DEPEND="2"
inherit multilib python
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"
RDEPEND="dev-python/ply"
DEPEND="${RDEPEND}"
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_install() {
emake \
ROOT="${D}" \
PREFIX="/usr" \
LIBDIR="/$(get_libdir)/python$(python_get_version)/site-packages" \
install || die "emake install failed"
python_convert_shebangs -r $(python_get_version) "${D}"
python_need_rebuild
insinto /usr/share/doc/${PF}
doins "${PN}".pdf
if use examples; then
insinto /usr/share/doc/${PF}/examples
doins tests/*
fi
}
pkg_postinst() {
python_mod_optimize ${PN}
}
pkg_postrm() {
python_mod_cleanup ${PN}
}