From: "Ryan Fox" <flewkey@2a03.party>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-libs/fcft/
Date: Wed, 14 Apr 2021 22:39:56 +0000 (UTC) [thread overview]
Message-ID: <1618439521.c3e32feb1e04ae1cdd628376e82f9ae32fc5fcb0.flewkey@gentoo> (raw)
commit: c3e32feb1e04ae1cdd628376e82f9ae32fc5fcb0
Author: Ryan Fox <flewkey <AT> 2a03 <DOT> party>
AuthorDate: Wed Apr 14 22:30:36 2021 +0000
Commit: Ryan Fox <flewkey <AT> 2a03 <DOT> 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 <flewkey <AT> 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 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>flewkey@2a03.party</email>
+ <name>Ryan Fox</name>
+ </maintainer>
+ <use>
+ <flag name="text-shaping">Support text shaping using HarfBuzz</flag>
+ </use>
+</pkgmetadata>
next reply other threads:[~2021-04-14 22:40 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-14 22:39 Ryan Fox [this message]
-- strict thread matches above, loose matches on Subject: below --
2021-04-18 9:10 [gentoo-commits] repo/proj/guru:master commit in: media-libs/fcft/ Andrew Ammerlaan
2021-04-18 8:59 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2021-04-19 3:50 Ryan Fox
2021-05-13 9:17 Haelwenn Monnier
2021-06-24 7:07 Ryan Fox
2021-07-08 6:18 Ryan Fox
2021-07-19 17:32 Ryan Fox
2021-07-22 15:47 Ryan Fox
2021-07-27 4:20 Leonardo H. Neumann
2021-08-14 18:02 Ryan Fox
2021-10-23 18:26 Ryan Fox
2021-10-25 15:58 Ryan Fox
2021-11-14 18:38 Ryan Fox
2021-12-16 22:07 Ryan Fox
2022-02-05 22:31 Leonardo H. Neumann
2022-02-07 20:40 [gentoo-commits] repo/proj/guru:master " Arthur Zamarin
2022-02-07 20:37 ` [gentoo-commits] repo/proj/guru:dev " Arthur Zamarin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1618439521.c3e32feb1e04ae1cdd628376e82f9ae32fc5fcb0.flewkey@gentoo \
--to=flewkey@2a03.party \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox