summaryrefslogtreecommitdiff
blob: 80c05769a27ab381dc0c7469018ed3a28b33b641 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI="5"

PYTHON_COMPAT=( python2_7 )

inherit eutils python-r1

DESCRIPTION="A utility to find various forms of lint on a filesystem"
HOMEPAGE="http://www.pixelbeat.org/fslint/"
SRC_URI="http://www.pixelbeat.org/${PN}/${P}.tar.gz"

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

RDEPEND="${PYTHON_DEPS}
	dev-python/pygtk:2[${PYTHON_USEDEP}]
	gnome-base/libglade:2.0"

DEPEND="${RDEPEND}
	nls? ( sys-devel/gettext:* )"

src_prepare() {
	# Change some paths to make ${PN}-gui run when installed in /usr/bin.
	sed -e "s:^liblocation=.*$:liblocation='${EROOT}usr/share/${PN}' #Gentoo:" \
		-e "s:^locale_base=.*$:locale_base=None #Gentoo:" \
		-i ${PN}-gui || die
}

src_install() {
	share=/usr/share/${PN}

	insinto ${share}
	doins ${PN}{.glade,.gladep,_icon.png}

	exeinto ${share}/${PN}
	doexe ${PN}/find*
	doexe ${PN}/${PN}
	doexe ${PN}/zipdir

	exeinto ${share}/${PN}/fstool/
	doexe ${PN}/fstool/*

	exeinto ${share}/${PN}/supprt/
	doexe ${PN}/supprt/{fslver,getffl,getffp,getfpf,md5sum_approx}

	exeinto ${share}/${PN}/supprt/rmlint
	doexe ${PN}/supprt/rmlint/*

	dobin ${PN}-gui

	doicon ${PN}_icon.png
	domenu ${PN}.desktop

	dodoc doc/{FAQ,NEWS,README,TODO}
	doman man/${PN}{.1,-gui.1}

	if use nls ; then
		cd po
		emake DESTDIR="${D}" install
	fi

	# Fix Python shebangs.
	python_replicate_script "${ED}"${share}/${PN}/fstool/dupwaste
	python_replicate_script "${ED}"${share}/${PN}/supprt/md5sum_approx
	python_replicate_script "${ED}"${share}/${PN}/supprt/rmlint/merge_hardlinks
	python_replicate_script "${ED}"${share}/${PN}/supprt/rmlint/fixdup
	python_replicate_script "${ED}"/usr/bin/${PN}-gui
}