mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-02-03 22:12:37 +01:00
40 lines
779 B
Bash
40 lines
779 B
Bash
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
if [[ -z ${PV%%*9999} ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/HOST-Oman/${PN}.git"
|
|
else
|
|
SRC_URI="https://github.com/HOST-Oman/libraqm/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="amd64 ~x86"
|
|
fi
|
|
inherit meson
|
|
|
|
DESCRIPTION="A library for complex text layout"
|
|
HOMEPAGE="https://github.com/HOST-Oman/libraqm"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
IUSE="gtk-doc"
|
|
|
|
# Option: SheenBidi can be used instead of Fribidi
|
|
RDEPEND="
|
|
media-libs/freetype:2
|
|
media-libs/harfbuzz:=
|
|
dev-libs/fribidi
|
|
"
|
|
DEPEND="
|
|
${RDEPEND}
|
|
"
|
|
BDEPEND="
|
|
gtk-doc? ( dev-util/gtk-doc )
|
|
"
|
|
|
|
src_configure() {
|
|
local emesonargs=(
|
|
$(meson_use gtk-doc docs)
|
|
)
|
|
meson_src_configure
|
|
}
|