blob: 03be6561896c28f2d44fa511f1cf3f788b7cf757 (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit python-r1
DESCRIPTION="Statistics generator for git"
HOMEPAGE="http://gitstats.sourceforge.net/"
SRC_URI="https://dev.gentoo.org/~jlec/distfiles/${P}.tar.xz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="
sci-visualization/gnuplot[gd]
dev-vcs/git"
DEPEND=""
src_prepare() {
sed \
-e "s:basedir = os.path.dirname(os.path.abspath(__file__)):basedir = '${EPREFIX}/usr/share/gitstats':g" \
-i gitstats || die "failed to fix static files path"
epatch "${FILESDIR}"/${P}-filter-invalid-unicode.patch
}
src_compile() {
:;
}
src_install() {
emake PREFIX="${D}"/usr VERSION="${PV}" install
dodoc doc/{README,*.txt}
python_replicate_script "${ED}"/usr/bin/${PN}
}
|