diff options
author | Michael Palimaka <kensington@gentoo.org> | 2015-09-21 01:15:57 +1000 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2015-09-21 01:18:15 +1000 |
commit | b95b7363db24abdaeea48a094abe168f097be349 (patch) | |
tree | 459209f257de04da646c8ac814e6eadd35433220 /app-misc | |
parent | www-plugins/kpartsplugins: remove old. (diff) | |
download | gentoo-b95b7363db24abdaeea48a094abe168f097be349.tar.gz gentoo-b95b7363db24abdaeea48a094abe168f097be349.tar.bz2 gentoo-b95b7363db24abdaeea48a094abe168f097be349.zip |
app-misc/fslint: remove old.
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/fslint/Manifest | 1 | ||||
-rw-r--r-- | app-misc/fslint/fslint-2.42.ebuild | 62 |
2 files changed, 0 insertions, 63 deletions
diff --git a/app-misc/fslint/Manifest b/app-misc/fslint/Manifest index 6c0de116d951..39c7f633a1d5 100644 --- a/app-misc/fslint/Manifest +++ b/app-misc/fslint/Manifest @@ -1,2 +1 @@ -DIST fslint-2.42.tar.gz 111520 SHA256 babbef4a34f42ab1d396152fd79b4353adc114b2e8d68b838e20a8067c5a3273 SHA512 e32575827769a6e0e1847f6edb4ed5337fc5705d65f327e93510af29cafe11df175eec9924f15e9525ff7c320048940e9341e9e62b4ec717b2630aa405a484e6 WHIRLPOOL fc74fb8ddd9d03283d6f7ec7763c2efef9036242ab5ba487046af14f880f0bc8661cec07614fc61fcee684933614abe49142f6dde4c3ef1d42d0f5292437be67 DIST fslint-2.44.tar.gz 116654 SHA256 8491a9cd76725e652ac8fe07288ba1f896d9331e30593c0ff3ab9e82e863f0ae SHA512 9ebb6d23186ed9a7194c854c3f3352cd787f01a71d6197aa0c53f5ff0dcb2e24004cfdddee3345655ae179f4397eba95120a5c08f25c5c0f807dab486226844b WHIRLPOOL d06bfdd29ce00a052de89757244f823fba2a30ef51c09bcf58248f73d2ecd33c859a52f172cf2c9f558d00274011083c2851bf47a5e40771fff6d4a0ba081f9b diff --git a/app-misc/fslint/fslint-2.42.ebuild b/app-misc/fslint/fslint-2.42.ebuild deleted file mode 100644 index c0968ad67a76..000000000000 --- a/app-misc/fslint/fslint-2.42.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# 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 -} |