From d4dbc6a089a47f7cbc18c284e9723bf68c622c6a Mon Sep 17 00:00:00 2001 From: Sam James Date: Mon, 5 Apr 2021 15:07:24 +0000 Subject: 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 --- app-admin/xstow/xstow-1.0.2.ebuild | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'app-admin/xstow') diff --git a/app-admin/xstow/xstow-1.0.2.ebuild b/app-admin/xstow/xstow-1.0.2.ebuild index 3e3265167241..d041f7daf686 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() { -- cgit v1.2.3-65-gdbad