commit: d4dbc6a089a47f7cbc18c284e9723bf68c622c6a Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Mon Apr 5 15:07:24 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Mon Apr 5 15:07:24 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4dbc6a0
app-admin/xstow: Capitalise DESCRIPTION, change 'default' usage * DESCRTPTION is usually captalised at the beginning * Add 'default' in src_prepare before eautoreconf to allow people to apply patches in e.g. /etc/portage/patches to any part of the code * Remove 'default' in src_configure because it just calls econf without the ncurses argument (USE flag) Signed-off-by: Sam James <sam <AT> gentoo.org> app-admin/xstow/xstow-1.0.2.ebuild | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app-admin/xstow/xstow-1.0.2.ebuild b/app-admin/xstow/xstow-1.0.2.ebuild index 3e326516724..d041f7daf68 100644 --- a/app-admin/xstow/xstow-1.0.2.ebuild +++ b/app-admin/xstow/xstow-1.0.2.ebuild @@ -5,7 +5,7 @@ EAPI=7 inherit autotools -DESCRIPTION="replacement for GNU stow with extensions" +DESCRIPTION="Replacement for GNU stow with extensions" HOMEPAGE="http://xstow.sourceforge.net/" SRC_URI="mirror://sourceforge/xstow/${P}.tar.bz2" @@ -22,13 +22,12 @@ PATCHES=( ) src_prepare() { - eautoreconf default + eautoreconf } src_configure() { econf $(use_with ncurses curses) - default } src_install() {
