Files
guru/net-client/telescope/telescope-0.5.2.ebuild
Anna (cybertailor) Vyalkova 2a134fe241 net-client/telescope: rename net-misc/telescope
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
2021-12-20 14:03:50 +05:00

28 lines
609 B
Bash

# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="w3m-like browser for Gemini"
HOMEPAGE="https://telescope.omarpolo.com"
SRC_URI="https://github.com/omar-polo/${PN}/releases/download/${PV}/${P}.tar.gz"
LICENSE="!libbsd? ( BSD MIT ) ISC unicode"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE="+libbsd"
DEPEND="
dev-libs/imsg-compat
dev-libs/libevent:=
dev-libs/libretls
sys-libs/ncurses:=
libbsd? ( dev-libs/libbsd )
"
RDEPEND="${DEPEND}"
BDEPEND="virtual/pkgconfig"
src_configure() {
econf --with-libimsg $(use_with libbsd)
}