SwordArMor-gentoo-overlay/gemini-client/lagrange/lagrange-1.13.5.ebuild

51 lines
1.3 KiB
Bash
Raw Normal View History

# Copyright 2021-2022 Gentoo Authors
2021-07-27 03:30:10 +02:00
# Distributed under the terms of the GNU General Public License v2
EAPI=8
2021-07-27 03:30:10 +02:00
inherit cmake xdg
2021-07-27 03:30:10 +02:00
DESCRIPTION="Desktop GUI client for browsing Geminispace"
HOMEPAGE="https://gmi.skyjake.fi/lagrange/ https://git.skyjake.fi/gemini/lagrange"
2021-07-27 03:30:10 +02:00
SRC_URI="https://git.skyjake.fi/gemini/${PN}/releases/download/v${PV}/${P}.tar.gz"
LICENSE="|| ( MIT Unlicense ) Apache-2.0 BSD-2 CC-BY-SA-4.0 OFL-1.1"
2021-07-27 03:30:10 +02:00
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="cpu_flags_x86_sse4_1 +fribidi +harfbuzz mp3 webp"
2021-07-27 03:30:10 +02:00
DEPEND="
dev-libs/libpcre:3
dev-libs/libunistring:=
dev-libs/openssl:=
2021-07-27 03:30:10 +02:00
media-libs/libsdl2[sound(+),video(+)]
sys-libs/zlib:=
2021-07-27 03:30:10 +02:00
fribidi? ( dev-libs/fribidi )
harfbuzz? ( media-libs/harfbuzz:=[truetype(+)] )
2021-07-27 03:30:10 +02:00
mp3? ( media-sound/mpg123 )
webp? ( media-libs/libwebp:= )
2021-07-27 03:30:10 +02:00
"
RDEPEND="${DEPEND}"
BDEPEND="app-arch/zip"
2021-07-27 03:30:10 +02:00
src_configure() {
# do not add use flags that don't pull dependencies
# and only choose which files to compile (e.g. "ipc")
local mycmakeargs=(
-DENABLE_FRIBIDI=$(usex fribidi)
-DENABLE_HARFBUZZ=$(usex harfbuzz)
-DENABLE_MPG123=$(usex mp3)
-DENABLE_WEBP=$(usex webp)
2021-07-27 03:30:10 +02:00
# never build bundled libs
-DENABLE_FRIBIDI_BUILD=OFF
-DENABLE_HARFBUZZ_MINIMAL=OFF
2021-07-27 03:30:10 +02:00
# lib/the_Foundation
-DTFDN_ENABLE_WARN_ERROR=OFF
-DTFDN_ENABLE_SSE41=$(usex cpu_flags_x86_sse4_1)
)
cmake_src_configure
}