mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-21 21:13:27 -04:00
dev-util/ots: add 8.2.1
Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
This commit is contained in:
@@ -1 +1,2 @@
|
|||||||
DIST ots-8.1.4.tar.gz 28931102 BLAKE2B 18503baee9d6f63c4a54ef1f9c4dceb7b780f4940ad75028a0908479d9b9f8e947e00990c145d26c8f7db45ca1d5aa43c25f909e5c7e65ee9cc9a72cd224c484 SHA512 ef89ed28a3c8d1b25b2fb0d26beca72a017e4b37a5b02314c67dd0d6c35856bc2097bce16217546ec348a240ddc992297bcea92da24dbbc0968401051f3cab4e
|
DIST ots-8.1.4.tar.gz 28931102 BLAKE2B 18503baee9d6f63c4a54ef1f9c4dceb7b780f4940ad75028a0908479d9b9f8e947e00990c145d26c8f7db45ca1d5aa43c25f909e5c7e65ee9cc9a72cd224c484 SHA512 ef89ed28a3c8d1b25b2fb0d26beca72a017e4b37a5b02314c67dd0d6c35856bc2097bce16217546ec348a240ddc992297bcea92da24dbbc0968401051f3cab4e
|
||||||
|
DIST ots-8.2.1.tar.gz 28964437 BLAKE2B 16dcef5ec73e63ac78f128988ea16391229810cfefe28580e5be477cf743479b77eaea046172a6d3848cf17e6e159c3d7087e8546c0ebb6dc3076ca3cbfdf750 SHA512 29776a0bac8d7e5eba241bd57894def1dc7dcee5c3d10f53c1b3f5f61370524c5fdc6aec6ce0d700bbeb964cd03607c289b2bc43e096eca1299f5d1505e5b3e1
|
||||||
|
|||||||
44
dev-util/ots/ots-8.2.1.ebuild
Normal file
44
dev-util/ots/ots-8.2.1.ebuild
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
# Copyright 1999-2022 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=8
|
||||||
|
|
||||||
|
inherit meson
|
||||||
|
|
||||||
|
DESCRIPTION="An util for validating and sanitising OpenType files"
|
||||||
|
HOMEPAGE="https://github.com/khaledhosny/ots"
|
||||||
|
SRC_URI="https://github.com/khaledhosny/ots/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||||
|
|
||||||
|
KEYWORDS="~amd64 ~x86"
|
||||||
|
LICENSE="BSD"
|
||||||
|
SLOT="0"
|
||||||
|
IUSE="debug sanitize test"
|
||||||
|
|
||||||
|
RDEPEND="
|
||||||
|
media-libs/freetype
|
||||||
|
media-libs/woff2
|
||||||
|
sys-libs/zlib
|
||||||
|
|
||||||
|
sanitize? ( app-arch/lz4 )
|
||||||
|
"
|
||||||
|
DEPEND="
|
||||||
|
${RDEPEND}
|
||||||
|
test? ( dev-cpp/gtest )
|
||||||
|
"
|
||||||
|
|
||||||
|
RESTRICT="!test? ( test )"
|
||||||
|
DOCS=(
|
||||||
|
README.md
|
||||||
|
docs/{DesignDoc,HowToFix,HowToTest}.md
|
||||||
|
)
|
||||||
|
|
||||||
|
PATCHES=( "${FILESDIR}/meson-gtest.diff" )
|
||||||
|
|
||||||
|
src_configure() {
|
||||||
|
local emesonargs=(
|
||||||
|
$(meson_use debug)
|
||||||
|
$(meson_use sanitize graphite)
|
||||||
|
$(meson_use test tests)
|
||||||
|
)
|
||||||
|
meson_src_configure
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user