2019-02-04 08:56:14 +03:00
|
|
|
# Copyright 1999-2019 Gentoo Authors
|
2011-11-09 11:33:19 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2012-08-06 12:57:37 +04:00
|
|
|
|
2019-12-14 12:24:29 +03:00
|
|
|
EAPI=7
|
2011-11-09 11:33:19 +04:00
|
|
|
|
2019-12-14 12:24:29 +03:00
|
|
|
inherit autotools
|
2011-11-09 11:33:19 +04:00
|
|
|
|
|
|
|
MY_P=${P/_/}
|
2019-12-14 12:24:29 +03:00
|
|
|
|
2011-11-09 11:33:19 +04:00
|
|
|
DESCRIPTION="An ASCII Image Viewer"
|
|
|
|
HOMEPAGE="http://aa-project.sourceforge.net/aview/"
|
2019-12-14 12:24:29 +03:00
|
|
|
SRC_URI="mirror://sourceforge/aa-project/${MY_P}.tar.gz"
|
2011-11-09 11:33:19 +04:00
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
2019-12-14 12:24:29 +03:00
|
|
|
SLOT="0"
|
2019-02-17 13:21:39 +03:00
|
|
|
KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris"
|
2011-11-09 11:33:19 +04:00
|
|
|
|
2019-12-14 12:24:29 +03:00
|
|
|
DEPEND="media-libs/aalib:="
|
2011-11-09 11:33:19 +04:00
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
|
2019-12-14 12:24:29 +03:00
|
|
|
S="${WORKDIR}/${MY_P/rc*/}"
|
|
|
|
|
2011-11-09 11:33:19 +04:00
|
|
|
PATCHES=(
|
|
|
|
"${FILESDIR}"/${P}-asciiview.patch
|
|
|
|
"${FILESDIR}"/${P}-includes.patch
|
|
|
|
)
|
|
|
|
|
2012-08-06 12:57:37 +04:00
|
|
|
src_prepare() {
|
2019-12-14 12:24:29 +03:00
|
|
|
default
|
|
|
|
mv configure.{in,ac} || die
|
|
|
|
eautoreconf
|
2011-11-09 11:33:19 +04:00
|
|
|
}
|