blob: 625ffd388a41101882f403cb13b069f3698c9d22 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=3
PYTHON_DEPEND="2"
inherit eutils python
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"
DEPEND="nls? ( sys-devel/gettext )"
RDEPEND="dev-python/pygtk:2"
src_prepare() {
python_convert_shebangs -r 2 .
# change some paths to make fslint-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 fslint-gui || die "sed failed"
}
src_install() {
# the only sane way of installing dozens of files, most (but not all!)
# of them executable scripts, spread over multiple subdirectories
dodir /usr/share/${PN}
cp -R ${PN}/ "${ED}"/usr/share/${PN} || die "cp failed"
insinto /usr/share/${PN}
doins ${PN}{.glade,.gladep,_icon.png} || die "doins failed"
dobin ${PN}-gui || die "dobin failed"
doicon ${PN}_icon.png || die "doicon failed"
domenu ${PN}.desktop || die "domenu failed"
dodoc doc/{FAQ,NEWS,README,TODO} || die "dodoc failed"
doman man/{fslint.1,fslint-gui.1} || die "doman failed"
if use nls ; then
cd po
emake DESTDIR="${D}" install || die "locales install failed"
fi
}
|