diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2022-10-09 00:36:20 -0400 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2022-10-09 01:31:02 -0400 |
commit | e5ef98dd7c0c6c83d38486af828c60bb797b78f3 (patch) | |
tree | ba5baec94dc6e0510f34307673eb362ba893d667 /media-gfx/aview | |
parent | dev-python/jaraco-text: Stabilize 3.9.1 sparc, #876124 (diff) | |
download | gentoo-e5ef98dd7c0c6c83d38486af828c60bb797b78f3.tar.gz gentoo-e5ef98dd7c0c6c83d38486af828c60bb797b78f3.tar.bz2 gentoo-e5ef98dd7c0c6c83d38486af828c60bb797b78f3.zip |
media-gfx/aview: EAPI7->8, tidy
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'media-gfx/aview')
-rw-r--r-- | media-gfx/aview/aview-1.3.0_rc1-r3.ebuild | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/media-gfx/aview/aview-1.3.0_rc1-r3.ebuild b/media-gfx/aview/aview-1.3.0_rc1-r3.ebuild index 728a22350066..6c5269da95c3 100644 --- a/media-gfx/aview/aview-1.3.0_rc1-r3.ebuild +++ b/media-gfx/aview/aview-1.3.0_rc1-r3.ebuild @@ -1,24 +1,23 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit autotools MY_P=${P/_/} -DESCRIPTION="An ASCII Image Viewer" +DESCRIPTION="ASCII Image Viewer" HOMEPAGE="http://aa-project.sourceforge.net/aview/" SRC_URI="mirror://sourceforge/aa-project/${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P/rc*/}" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris" -DEPEND="media-libs/aalib:=" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${MY_P/rc*/}" +RDEPEND="media-libs/aalib" +DEPEND="${RDEPEND}" PATCHES=( "${FILESDIR}"/${P}-asciiview.patch @@ -27,6 +26,6 @@ PATCHES=( src_prepare() { default - mv configure.{in,ac} || die + eautoreconf } |