SwordArMor-gentoo-overlay/gemini-client/lagrange/lagrange-1.4.0.ebuild
Alarig Le Lay 4db0c5a340
gemini-client/lagrange: gemini-client/lagrange: bump to 1.4.0, drop old
* Fix automagic mpg123 dependency
* Improve perfomance with ENABLE_IDLE_SLEEP=OFF

Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Alarig Le Lay <alarig@swordarmor.fr>
2021-05-08 14:18:48 +02:00

41 lines
811 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"
IUSE="+mp3"
DEPEND="dev-libs/libpcre
dev-libs/libunistring
dev-libs/openssl
media-libs/libsdl2
mp3? ( media-sound/mpg123 )
sys-libs/zlib
"
RDEPEND="${DEPEND}"
BDEPEND=""
src_configure() {
local mycmakeargs=(
-DENABLE_MPG123=$(usex mp3)
-DENABLE_IDLE_SLEEP=OFF # improves perfomance
)
cmake_src_configure
}
pkg_postinst() {
xdg_desktop_database_update
xdg_icon_cache_update
}