mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
media-libs/fcft: add 3.1.9
Signed-off-by: Arsen Arsenović <arsen@gentoo.org>
This commit is contained in:
@@ -4,3 +4,4 @@ DIST fcft-3.1.5.tar.gz 742014 BLAKE2B 39266ab2a7ea422671414d97c21a90b0eeabe9ed74
|
||||
DIST fcft-3.1.6.tar.gz 699121 BLAKE2B 597ce1a701db29d3a8b913d831f1847c9526c450352b565436c843388447d8203b54b3d24ab668690986488c102f281c46685a2072bf4afee2bf58465ab9d6c3 SHA512 4fe4e318561706bd446e79b0df8df4fa5b542b9d546aa7361a1523593c26040d827ce059658c0eac89a77b83c771fd43bc74e2fe29cd16b2846a2db7ec733f49
|
||||
DIST fcft-3.1.7.tar.gz 697694 BLAKE2B 2afdd26c631d365ae450691a2073fc61d361c759886e77781b6438e0d8e0db6626230bcc70b99ef2d5a5a05006280bca93d2433157a6974093f1af932952b4c2 SHA512 e862856dfb85c5df85f9f32dce8ed9e7fed8b3dc8435876994f53d276a2c597d0cee0b4fbcbb62362a3771e9ca82c49db95da989404d0c8aa5f604dd50c79075
|
||||
DIST fcft-3.1.8.tar.gz 697836 BLAKE2B da7de65e2fb7ce6d2244d8ea3839a62953cbe772a7388cdb15d8f849c139e2e9124b3ad12113fcd90d4055b38a269bf7bfeba5a408f31469a95b56d4e770e992 SHA512 1b1cfbed4e99db8e290a1dcf6c124949f5fb317e225996e63913974f4a52748a04be053cff934c8f8c0b3add22c87f9e3b1c793366431f788529e62d7a7be69c
|
||||
DIST fcft-3.1.9.tar.gz 701854 BLAKE2B 0d7500749a311ae5d4f1586a85901884583ae036af2d70765a97c7adb3ff15eec4c94eda5fa960b660911c66a01c6ae6f1c75423b912bf3babd505f1d6a1ab92 SHA512 a6a400baf35ea2780da6acc5e703755349474d82f3bad081ed0551d1d6b724247476bfae6aeab06238a37df269afa4fb7a774501a4665e1e90d6ed9f241307b2
|
||||
|
||||
94
media-libs/fcft/fcft-3.1.9.ebuild
Normal file
94
media-libs/fcft/fcft-3.1.9.ebuild
Normal file
@@ -0,0 +1,94 @@
|
||||
# Copyright 2020-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
inherit meson python-any-r1
|
||||
|
||||
DESCRIPTION="Simple library for font loading and glyph rasterization"
|
||||
HOMEPAGE="https://codeberg.org/dnkl/fcft"
|
||||
SRC_URI="https://codeberg.org/dnkl/fcft/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/${PN}"
|
||||
|
||||
# MIT for fcft
|
||||
# ZLIB for nanosvg
|
||||
LICENSE="MIT ZLIB"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv"
|
||||
IUSE="examples +harfbuzz +libutf8proc test"
|
||||
REQUIRED_USE="
|
||||
libutf8proc? ( harfbuzz )
|
||||
examples? ( libutf8proc )
|
||||
"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="
|
||||
media-libs/fontconfig
|
||||
media-libs/freetype
|
||||
x11-libs/pixman
|
||||
examples? (
|
||||
dev-libs/libutf8proc:=
|
||||
dev-libs/wayland
|
||||
)
|
||||
harfbuzz? (
|
||||
media-libs/harfbuzz:=[truetype]
|
||||
)
|
||||
libutf8proc? (
|
||||
dev-libs/libutf8proc:=
|
||||
)
|
||||
"
|
||||
DEPEND="
|
||||
${RDEPEND}
|
||||
app-i18n/unicode-data
|
||||
dev-libs/tllist
|
||||
examples? (
|
||||
dev-libs/wayland-protocols
|
||||
)
|
||||
test? (
|
||||
dev-libs/check
|
||||
harfbuzz? ( media-fonts/noto-emoji )
|
||||
)
|
||||
"
|
||||
BDEPEND="
|
||||
${PYTHON_DEPS}
|
||||
app-text/scdoc
|
||||
virtual/pkgconfig
|
||||
examples? (
|
||||
dev-util/wayland-scanner
|
||||
)
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
rm -r unicode || die "Failed removing vendored unicode-data"
|
||||
|
||||
sed -i "s;unicode/UnicodeData.txt;${EPREFIX}/usr/share/unicode-data/UnicodeData.txt;" \
|
||||
meson.build || die "Failed changing UnicodeData.txt to system's copy"
|
||||
sed -i "s;unicode/emoji-data.txt;${EPREFIX}/usr/share/unicode-data/emoji/emoji-data.txt;" \
|
||||
meson.build || die "Failed changing emoji-data.txt to system's copy"
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local emesonargs=(
|
||||
$(meson_feature harfbuzz grapheme-shaping)
|
||||
$(meson_feature libutf8proc run-shaping)
|
||||
$(meson_use examples)
|
||||
$(use test && meson_use harfbuzz test-text-shaping)
|
||||
# bundled, tiny, I believe this means we should always include it
|
||||
-Dsvg-backend=nanosvg
|
||||
-Ddocs=enabled
|
||||
)
|
||||
|
||||
meson_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
local DOCS=( CHANGELOG.md README.md )
|
||||
meson_src_install
|
||||
|
||||
rm -r "${ED}"/usr/share/doc/${PN} || die
|
||||
|
||||
use examples && newbin "${BUILD_DIR}/example/example" fcft-example
|
||||
}
|
||||
Reference in New Issue
Block a user