blob: 8d401f359f57dc5fc0d6d13da2e57ee30a58cf3f (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="3"
RESTRICT_PYTHON_ABIS="3.*"
inherit distutils mercurial
EHG_REPO_URI="http://www.logilab.org/cgi-bin/hgwebdir.cgi/hgview"
DESCRIPTION="PyQt4 based Mercurial log navigator"
HOMEPAGE="http://www.logilab.org/project/name/hgview"
SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="doc"
DEPEND="dev-vcs/mercurial
dev-python/egenix-mx-base
dev-python/PyQt4[X]
dev-python/qscintilla-python
dev-python/docutils
doc? ( app-text/asciidoc )"
RDEPEND="${DEPEND}"
S="${WORKDIR}"/"${PN}"
src_prepare() {
distutils_src_prepare
# fix mercurial extension install path
if ! use doc; then
sed -i '/make -C doc/d' "${S}/setup.py" || die "sed failed"
sed -i '/share\/man\/man1/,+1 d' "${S}/hgviewlib/__pkginfo__.py" || die "sed failed"
fi
}
src_install() {
distutils_src_install
# install the mercurial extension config
insinto /etc/mercurial/hgrc.d || die
doins hgext/hgview.rc || die
}
|