diff options
author | Tom Wijsman <tomwij@gentoo.org> | 2013-04-09 15:49:50 +0000 |
---|---|---|
committer | Tom Wijsman <tomwij@gentoo.org> | 2013-04-09 15:49:50 +0000 |
commit | 8ca435b340081dbc3d25141b178e2a8e51e51a63 (patch) | |
tree | 67ae945c6d39be3560b254d2da707163d9503e05 /app-misc/fslint | |
parent | Fixing minorsyn's (diff) | |
download | gentoo-2-8ca435b340081dbc3d25141b178e2a8e51e51a63.tar.gz gentoo-2-8ca435b340081dbc3d25141b178e2a8e51e51a63.tar.bz2 gentoo-2-8ca435b340081dbc3d25141b178e2a8e51e51a63.zip |
No PN variable in HOMEPAGE as per the dev manual.
(Portage version: 2.1.11.60/cvs/Linux x86_64, signed Manifest commit with key 6D34E57D)
Diffstat (limited to 'app-misc/fslint')
-rw-r--r-- | app-misc/fslint/ChangeLog | 5 | ||||
-rw-r--r-- | app-misc/fslint/fslint-2.42.ebuild | 10 |
2 files changed, 9 insertions, 6 deletions
diff --git a/app-misc/fslint/ChangeLog b/app-misc/fslint/ChangeLog index dce6e5938cb9..42928e22bfb1 100644 --- a/app-misc/fslint/ChangeLog +++ b/app-misc/fslint/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-misc/fslint # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/fslint/ChangeLog,v 1.2 2013/03/29 18:31:15 tomwij Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/fslint/ChangeLog,v 1.3 2013/04/09 15:49:50 tomwij Exp $ + + 09 Apr 2013; Tom Wijsman <TomWij@gentoo.org> fslint-2.42.ebuild: + No PN variable in HOMEPAGE as per the dev manual. 29 Mar 2013; Tom Wijsman <TomWij@gentoo.org> fslint-2.42.ebuild: Removed fperms calls, instead the doins calls have been replaced by doexe diff --git a/app-misc/fslint/fslint-2.42.ebuild b/app-misc/fslint/fslint-2.42.ebuild index d19b01a5b36c..a114fbfe6643 100644 --- a/app-misc/fslint/fslint-2.42.ebuild +++ b/app-misc/fslint/fslint-2.42.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/fslint/fslint-2.42.ebuild,v 1.2 2013/03/29 18:31:15 tomwij Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/fslint/fslint-2.42.ebuild,v 1.3 2013/04/09 15:49:50 tomwij Exp $ EAPI="5" @@ -9,7 +9,7 @@ PYTHON_DEPEND="2" inherit eutils python DESCRIPTION="An utility to find various forms of lint on a filesystem." -HOMEPAGE="http://www.pixelbeat.org/${PN}/" +HOMEPAGE="http://www.pixelbeat.org/fslint/" SRC_URI="http://www.pixelbeat.org/${PN}/${P}.tar.gz" LICENSE="GPL-2" @@ -23,10 +23,10 @@ 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. + # 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 fslint-gui || die "sed failed" + -i ${PN}-gui || die "sed failed" } src_install() { @@ -53,7 +53,7 @@ src_install() { domenu ${PN}.desktop dodoc doc/{FAQ,NEWS,README,TODO} - doman man/{fslint.1,fslint-gui.1} + doman man/${PN}{.1,-gui.1} if use nls ; then cd po |