Alarig Le Lay
80c4e99106
Signed-off-by: Anna Vyalkova <cyber@sysrq.in> Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Alarig Le Lay <alarig@swordarmor.fr>
33 lines
704 B
Bash
33 lines
704 B
Bash
# Copyright 2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit cmake optfeature xdg-utils
|
|
|
|
DESCRIPTION="Desktop GUI client for browsing Geminispace"
|
|
HOMEPAGE="https://gmi.skyjake.fi/lagrange/
|
|
https://git.skyjake.fi/gemini/lagrange"
|
|
SRC_URI="https://git.skyjake.fi/gemini/${PN}/releases/download/v${PV}/${P}.tar.gz"
|
|
|
|
LICENSE="BSD-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
DEPEND="
|
|
dev-libs/libpcre
|
|
dev-libs/libunistring
|
|
dev-libs/openssl
|
|
media-libs/libsdl2
|
|
sys-libs/zlib
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
BDEPEND=""
|
|
|
|
pkg_postinst() {
|
|
elog "Optional dependencies:"
|
|
optfeature "MPEG audio support" media-sound/mpg123
|
|
xdg_desktop_database_update
|
|
xdg_icon_cache_update
|
|
}
|