diff options
author | Jonas Stein <jstein@gentoo.org> | 2021-11-17 09:48:48 +0100 |
---|---|---|
committer | Jonas Stein <jstein@gentoo.org> | 2021-11-17 09:48:48 +0100 |
commit | 23b60785abde5b374f1fe5d849d400aff554ca20 (patch) | |
tree | 28e3033d225d0c12c047288b647a31d2e68ea1aa /app-misc | |
parent | profiles/arch/hppa: un-stable-mask USE=introspection (diff) | |
download | gentoo-23b60785abde5b374f1fe5d849d400aff554ca20.tar.gz gentoo-23b60785abde5b374f1fe5d849d400aff554ca20.tar.bz2 gentoo-23b60785abde5b374f1fe5d849d400aff554ca20.zip |
app-misc/bb: Fix tabs improve description
Reformat spaces to tabs in ebuild
Improved description
Closes: https://bugs.gentoo.org/824074
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Jonas Stein <jstein@gentoo.org>
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/bb/bb-1.3.0_rc1-r5.ebuild | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/app-misc/bb/bb-1.3.0_rc1-r5.ebuild b/app-misc/bb/bb-1.3.0_rc1-r5.ebuild index 23d546b2831a..1c34daad7812 100644 --- a/app-misc/bb/bb-1.3.0_rc1-r5.ebuild +++ b/app-misc/bb/bb-1.3.0_rc1-r5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -7,7 +7,7 @@ inherit autotools MY_P="${PN}-$(ver_cut 1-2)$(ver_cut 4-5)" -DESCRIPTION="Demonstration program for visual effects of aalib" +DESCRIPTION="Lightweight ASCII art demo using media-libs/aalib" HOMEPAGE="http://aa-project.sourceforge.net/" SRC_URI="mirror://sourceforge/aa-project/${MY_P}.tar.gz" @@ -42,13 +42,13 @@ src_prepare() { # unbundle lzo, #515286 rm -v README.LZO minilzo.{c,h} mylzo.h || die sed -e 's/minilzo.c//' \ - -e 's/minilzo.h//' \ - -e 's/README.LZO//' \ + -e 's/minilzo.h//' \ + -e 's/README.LZO//' \ -i Makefile.am || die echo 'bb_LDADD = -llzo2' >> Makefile.am || die # update code sed -e 's,#include "minilzo.h",#include <lzo/lzo1x.h>,' \ - -e 's,int size = image,lzo_uint size = image,' \ + -e 's,int size = image,lzo_uint size = image,' \ -i image.c || die # rename binary and manpage bb -> bb-aalib @@ -57,9 +57,9 @@ src_prepare() { sed -e 's/bb/bb-aalib/' \ -i bb-aalib.1 sed -e 's/bin_PROGRAMS = bb/bin_PROGRAMS = bb-aalib/' \ - -e 's/man_MANS = bb.1/man_MANS = bb-aalib.1/' \ - -e 's/bb_SOURCES/bb_aalib_SOURCES/' \ - -e 's/bb_LDADD/bb_aalib_LDADD/' \ + -e 's/man_MANS = bb.1/man_MANS = bb-aalib.1/' \ + -e 's/bb_SOURCES/bb_aalib_SOURCES/' \ + -e 's/bb_LDADD/bb_aalib_LDADD/' \ -i Makefile.am || die mv -v configure.{in,ac} || die |