Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 705458 | Differences between
and this patch

Collapse All | Expand All

(-)a/media-fonts/vollkorn/vollkorn-2.1.ebuild (-2 / +1 lines)
Lines 6-12 EAPI=7 Link Here
6
inherit font
6
inherit font
7
7
8
DESCRIPTION="Vollkorn, the free and healthy typeface for bread and butter use"
8
DESCRIPTION="Vollkorn, the free and healthy typeface for bread and butter use"
9
HOMEPAGE="http://friedrichalthausen.de/?page_id=411"
9
HOMEPAGE="http://vollkorn-typeface.com/"
10
SRC_URI="http://friedrichalthausen.de/Vollkorn-${PV}.zip"
10
SRC_URI="http://friedrichalthausen.de/Vollkorn-${PV}.zip"
11
11
12
LICENSE="OFL-1.1"
12
LICENSE="OFL-1.1"
13
--
14
media-fonts/vollkorn/Manifest              |  1 +
13
media-fonts/vollkorn/Manifest              |  1 +
15
media-fonts/vollkorn/metadata.xml          |  7 +++++
14
media-fonts/vollkorn/metadata.xml          |  7 +++++
16
media-fonts/vollkorn/vollkorn-4.105.ebuild | 32 ++++++++++++++++++++++
15
media-fonts/vollkorn/vollkorn-4.105.ebuild | 32 ++++++++++++++++++++++
17
3 files changed, 40 insertions(+)
16
3 files changed, 40 insertions(+)
18
create mode 100644 media-fonts/vollkorn/vollkorn-4.105.ebuild
17
create mode 100644 media-fonts/vollkorn/vollkorn-4.105.ebuild
(-)a/media-fonts/vollkorn/Manifest (+1 lines)
Line 1 Link Here
1
DIST Vollkorn-2.1.zip 139737 BLAKE2B 5aa31eb1b7e493b273e7623eb22d99b629f5c044ae1ff594cb48d488cf800114a4fc4884c02e7e9400bcaa4d6b6d344283e7a2de885f9c95dd33beba690ae7d9 SHA512 f6d3283a06204491119ce3a3796dace7db640469192b9d44fd44471a185dc580a2ba8160f2983371b6160cb782adaabcd02872cfc2b1d05b10f3d6e73c60cded
1
DIST Vollkorn-2.1.zip 139737 BLAKE2B 5aa31eb1b7e493b273e7623eb22d99b629f5c044ae1ff594cb48d488cf800114a4fc4884c02e7e9400bcaa4d6b6d344283e7a2de885f9c95dd33beba690ae7d9 SHA512 f6d3283a06204491119ce3a3796dace7db640469192b9d44fd44471a185dc580a2ba8160f2983371b6160cb782adaabcd02872cfc2b1d05b10f3d6e73c60cded
2
DIST vollkorn-4-105.zip 11046213 BLAKE2B bfa8515335ab6f7eaa57ad03642b7694b41047b228e9c1c51285ac70f8d799a9d61ba0414bc91ec1fdb5e579597a8a3d5c901c1d77d1de1c425ba1822a29ced9 SHA512 847196951f842481d11d76304435f88190608cabd7ccb47ca19a10b7215b69e19c19dc85e628e6b2730dd9b8cf1850c6b30470103724dd40fcf9b5eadb88a3f8
(-)a/media-fonts/vollkorn/metadata.xml (+7 lines)
Lines 5-8 Link Here
5
	<email>fonts@gentoo.org</email>
5
	<email>fonts@gentoo.org</email>
6
	<name>Fonts</name>
6
	<name>Fonts</name>
7
</maintainer>
7
</maintainer>
8
<use>
9
	<flag name="otf">Install the OpenType version of the font</flag>
10
	<flag name="ttf">Install the TrueType version of the font</flag>
11
</use>
12
<upstream>
13
	<remote-id type="github">FAlthausen/Vollkorn-Typeface</remote-id>
14
</upstream>
8
</pkgmetadata>
15
</pkgmetadata>
(-)a/media-fonts/vollkorn/vollkorn-4.105.ebuild (+32 lines)
Line 0 Link Here
1
# Copyright 1999-2020 Gentoo Authors
2
# Distributed under the terms of the GNU General Public License v2
3
4
EAPI=7
5
6
inherit font
7
8
DESCRIPTION="Vollkorn, the free and healthy typeface for bread and butter use"
9
HOMEPAGE="http://vollkorn-typeface.com/"
10
SRC_URI="http://vollkorn-typeface.com/download/${PN}-${PV/./-}.zip"
11
12
LICENSE="OFL-1.1"
13
SLOT="0"
14
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
15
IUSE="+otf +ttf"
16
REQUIRED_USE="|| ( otf ttf )"
17
# Only installs fonts
18
RESTRICT="strip binchecks"
19
20
BDEPEND="app-arch/unzip"
21
22
S="${WORKDIR}"
23
DOCS="Fontlog.txt"
24
25
src_install() {
26
	if use otf; then
27
		FONT_S="${S}/PS-OTF" FONT_SUFFIX="otf" font_src_install
28
	fi
29
	if use ttf; then
30
		FONT_S="${S}/TTF" FONT_SUFFIX="ttf" font_src_install
31
	fi
32
}

Return to bug 705458