summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2022-02-18 03:02:48 +0000
committerSam James <sam@gentoo.org>2022-02-18 03:03:28 +0000
commitd99562d1416dbeac17da45eaf5d7d70e0cad1def (patch)
treec1a69be02e6379f7e9cd4c13d8d55927e73de99d /media-gfx/jp2a
parentmedia-gfx/jp2a: add 1.1.1 (diff)
downloadgentoo-d99562d1416dbeac17da45eaf5d7d70e0cad1def.tar.gz
gentoo-d99562d1416dbeac17da45eaf5d7d70e0cad1def.tar.bz2
gentoo-d99562d1416dbeac17da45eaf5d7d70e0cad1def.zip
media-gfx/jp2a: drop vestigial ncurses dependency
It freaks out because it can't find tinfo so let's just drop it for now. It won't have done anything for ages (it just skips over it). Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-gfx/jp2a')
-rw-r--r--media-gfx/jp2a/jp2a-1.1.1.ebuild10
1 files changed, 6 insertions, 4 deletions
diff --git a/media-gfx/jp2a/jp2a-1.1.1.ebuild b/media-gfx/jp2a/jp2a-1.1.1.ebuild
index 3e88e9c7644d..6b66aafdfe5b 100644
--- a/media-gfx/jp2a/jp2a-1.1.1.ebuild
+++ b/media-gfx/jp2a/jp2a-1.1.1.ebuild
@@ -5,17 +5,19 @@ EAPI=8
DESCRIPTION="JPEG image to ASCII art converter"
HOMEPAGE="https://github.com/Talinx/jp2a/"
-SRC_URI="https://github.com/Talinx/jp2a/releases/download/v${PV}/jp2a-${PV}.tar.gz"
+SRC_URI="https://github.com/Talinx/jp2a/releases/download/v${PV}/${P}.tar.gz"
+
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos ~x64-solaris"
IUSE="curl"
-RDEPEND="sys-libs/ncurses
- virtual/jpeg
+# TODO: restore ncurses support?
+# See https://github.com/gentoo/gentoo/pull/24218#issuecomment-1043795319
+RDEPEND="virtual/jpeg
curl? ( net-misc/curl )"
DEPEND="${RDEPEND}"
src_configure() {
- econf "$(use_enable curl)"
+ econf $(use_enable curl)
}