Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/libXfont2/
Date: Sat, 14 Sep 2019 19:15:22
Message-Id: 1568488509.d9e158947cac307eb1425fdab94e0fde78156018.mattst88@gentoo
1 commit: d9e158947cac307eb1425fdab94e0fde78156018
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 14 19:10:05 2019 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 14 19:15:09 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9e15894
7
8 x11-libs/libXfont2: Version bump to 2.0.4
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 x11-libs/libXfont2/Manifest | 1 +
13 x11-libs/libXfont2/libXfont2-2.0.4.ebuild | 33 +++++++++++++++++++++++++++++++
14 2 files changed, 34 insertions(+)
15
16 diff --git a/x11-libs/libXfont2/Manifest b/x11-libs/libXfont2/Manifest
17 index aba9fbc949c..911d5fdd27b 100644
18 --- a/x11-libs/libXfont2/Manifest
19 +++ b/x11-libs/libXfont2/Manifest
20 @@ -1 +1,2 @@
21 DIST libXfont2-2.0.3.tar.bz2 497085 BLAKE2B 91780c245d5e08b45fca6e940b0fe910b43417b2bed77fa600e0b8ab2b2c5a423b8a1c680349b95592a77f5bac45b1f5a7991d05df699aad080e8c3cf4d614cf SHA512 648b664e2aa58cbc7366a1b05873aa06bd4a38060f64085783043388244af8ceced77b29a22c3ac8b6d34cd226e093bbbcc785ea1748ea65720fe7ea05b4b44b
22 +DIST libXfont2-2.0.4.tar.bz2 513167 BLAKE2B 924cf8462a8fc593755080866b63d6cca6e58b5d875f1d25b95271a56d883e983445f72f8950adf1964e0bf10ca5b8bb2ddfe0c56d4395086e460952a5933bd7 SHA512 7cf6c58e520e48e24fc4f05fec760fcbeaaac0cedeed57dded262c855e1515cc34cd033222945a0b016f6857b83009fc2a6946c7d632c2f7bb0060f8e8a8a106
23
24 diff --git a/x11-libs/libXfont2/libXfont2-2.0.4.ebuild b/x11-libs/libXfont2/libXfont2-2.0.4.ebuild
25 new file mode 100644
26 index 00000000000..d51778e14c3
27 --- /dev/null
28 +++ b/x11-libs/libXfont2/libXfont2-2.0.4.ebuild
29 @@ -0,0 +1,33 @@
30 +# Copyright 1999-2019 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +XORG_PACKAGE_NAME=libxfont
36 +XORG_DOC=doc
37 +inherit xorg-3
38 +
39 +DESCRIPTION="X.Org Xfont library"
40 +
41 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
42 +IUSE="bzip2 ipv6 truetype"
43 +
44 +RDEPEND="sys-libs/zlib
45 + x11-base/xorg-proto
46 + x11-libs/libfontenc
47 + bzip2? ( app-arch/bzip2 )
48 + truetype? ( >=media-libs/freetype-2 )"
49 +DEPEND="${RDEPEND}
50 + x11-base/xorg-proto
51 + x11-libs/xtrans"
52 +
53 +pkg_setup() {
54 + XORG_CONFIGURE_OPTIONS=(
55 + $(use_enable ipv6)
56 + $(use_enable doc devel-docs)
57 + $(use_with doc xmlto)
58 + $(use_with bzip2)
59 + $(use_enable truetype freetype)
60 + --without-fop
61 + )
62 +}