diff options
Diffstat (limited to 'app-misc/fslint/fslint-2.42.ebuild')
-rw-r--r-- | app-misc/fslint/fslint-2.42.ebuild | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/app-misc/fslint/fslint-2.42.ebuild b/app-misc/fslint/fslint-2.42.ebuild new file mode 100644 index 000000000000..c0968ad67a76 --- /dev/null +++ b/app-misc/fslint/fslint-2.42.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +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 ${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 "sed failed" +} + +src_install() { + insinto /usr/share/${PN} + doins ${PN}{.glade,.gladep,_icon.png} + + exeinto /usr/share/${PN}/${PN} + doexe ${PN}/find* + doexe ${PN}/${PN} + doexe ${PN}/zipdir + + exeinto /usr/share/${PN}/${PN}/fstool/ + doexe ${PN}/fstool/* + + exeinto /usr/share/${PN}/${PN}/supprt/ + doexe ${PN}/supprt/{fslver,getffl,getffp,getfpf,md5sum_approx} + + exeinto /usr/share/${PN}/${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 +} |