From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C034813835A for ; Wed, 14 Apr 2021 22:40:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1A0CAE0958; Wed, 14 Apr 2021 22:40:00 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EAF28E0958 for ; Wed, 14 Apr 2021 22:39:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E5C5033BEEA for ; Wed, 14 Apr 2021 22:39:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 822C764B for ; Wed, 14 Apr 2021 22:39:56 +0000 (UTC) From: "Ryan Fox" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ryan Fox" Message-ID: <1618439521.c3e32feb1e04ae1cdd628376e82f9ae32fc5fcb0.flewkey@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-libs/fcft/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-libs/fcft/Manifest media-libs/fcft/fcft-2.3.3.ebuild media-libs/fcft/fcft-9999.ebuild media-libs/fcft/metadata.xml X-VCS-Directories: media-libs/fcft/ X-VCS-Committer: flewkey X-VCS-Committer-Name: Ryan Fox X-VCS-Revision: c3e32feb1e04ae1cdd628376e82f9ae32fc5fcb0 X-VCS-Branch: dev Date: Wed, 14 Apr 2021 22:39:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0b8f2816-c2b0-4db2-ac6a-16eaacefa320 X-Archives-Hash: c77842baca95e694dda373d7d5a3001b commit: c3e32feb1e04ae1cdd628376e82f9ae32fc5fcb0 Author: Ryan Fox 2a03 party> AuthorDate: Wed Apr 14 22:30:36 2021 +0000 Commit: Ryan Fox 2a03 party> CommitDate: Wed Apr 14 22:32:01 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c3e32feb media-libs/fcft: New package Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Ryan Fox 2a03.party> media-libs/fcft/Manifest | 1 + media-libs/fcft/fcft-2.3.3.ebuild | 43 +++++++++++++++++++++++++++++++++++++++ media-libs/fcft/fcft-9999.ebuild | 43 +++++++++++++++++++++++++++++++++++++++ media-libs/fcft/metadata.xml | 11 ++++++++++ 4 files changed, 98 insertions(+) diff --git a/media-libs/fcft/Manifest b/media-libs/fcft/Manifest new file mode 100644 index 000000000..6999a947f --- /dev/null +++ b/media-libs/fcft/Manifest @@ -0,0 +1 @@ +DIST fcft-2.3.3.tar.gz 313168 BLAKE2B b3dbc3af511e8a8007a17400fe6880a08a62ca0cb69795438ab7c6a86f856b25a3bd26cdef8031f1c8d66f4527d191a72ce87852f001e05b8f37285dea4befb5 SHA512 91f3c1292889c2fd1cdce439e0168a37a932d3a05ea78fff93ce69ea7b1adc33424e67a0b2c36931d26128e1169e6f784f16445475c94690dedf608f92278009 diff --git a/media-libs/fcft/fcft-2.3.3.ebuild b/media-libs/fcft/fcft-2.3.3.ebuild new file mode 100644 index 000000000..6315f733f --- /dev/null +++ b/media-libs/fcft/fcft-2.3.3.ebuild @@ -0,0 +1,43 @@ +# Copyright 2020-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit meson + +if [[ ${PV} != *9999* ]]; then + SRC_URI="https://codeberg.org/dnkl/fcft/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" + S="${WORKDIR}/${PN}" +else + inherit git-r3 + EGIT_REPO_URI="https://codeberg.org/dnkl/fcft.git" +fi + +DESCRIPTION="A simple library for font loading and glyph rasterization" +HOMEPAGE="https://codeberg.org/dnkl/fcft" +LICENSE="MIT" +SLOT="0" +IUSE="+text-shaping" + +DEPEND=" + dev-libs/tllist + media-libs/fontconfig + media-libs/freetype + text-shaping? ( media-libs/harfbuzz ) + x11-libs/pixman +" +RDEPEND="${DEPEND}" +BDEPEND="" + +src_configure() { + local emesonargs=( + $(meson_feature text-shaping) + ) + meson_src_configure +} + +src_install() { + meson_src_install + mv "${D}/usr/share/doc/${PN}" "${D}/usr/share/doc/${PF}" +} diff --git a/media-libs/fcft/fcft-9999.ebuild b/media-libs/fcft/fcft-9999.ebuild new file mode 100644 index 000000000..6315f733f --- /dev/null +++ b/media-libs/fcft/fcft-9999.ebuild @@ -0,0 +1,43 @@ +# Copyright 2020-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit meson + +if [[ ${PV} != *9999* ]]; then + SRC_URI="https://codeberg.org/dnkl/fcft/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" + S="${WORKDIR}/${PN}" +else + inherit git-r3 + EGIT_REPO_URI="https://codeberg.org/dnkl/fcft.git" +fi + +DESCRIPTION="A simple library for font loading and glyph rasterization" +HOMEPAGE="https://codeberg.org/dnkl/fcft" +LICENSE="MIT" +SLOT="0" +IUSE="+text-shaping" + +DEPEND=" + dev-libs/tllist + media-libs/fontconfig + media-libs/freetype + text-shaping? ( media-libs/harfbuzz ) + x11-libs/pixman +" +RDEPEND="${DEPEND}" +BDEPEND="" + +src_configure() { + local emesonargs=( + $(meson_feature text-shaping) + ) + meson_src_configure +} + +src_install() { + meson_src_install + mv "${D}/usr/share/doc/${PN}" "${D}/usr/share/doc/${PF}" +} diff --git a/media-libs/fcft/metadata.xml b/media-libs/fcft/metadata.xml new file mode 100644 index 000000000..5a2954ab2 --- /dev/null +++ b/media-libs/fcft/metadata.xml @@ -0,0 +1,11 @@ + + + + + flewkey@2a03.party + Ryan Fox + + + Support text shaping using HarfBuzz + +