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/libXfont/
Date: Wed, 29 Nov 2017 01:40:02
Message-Id: 1511919525.a026452d701e5e766d32625e9977a5f5b82c97d6.mattst88@gentoo
1 commit: a026452d701e5e766d32625e9977a5f5b82c97d6
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 29 01:24:08 2017 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 29 01:38:45 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a026452d
7
8 x11-libs/libXfont: Version bump to 1.5.4
9
10 x11-libs/libXfont/Manifest | 1 +
11 x11-libs/libXfont/libXfont-1.5.4.ebuild | 34 +++++++++++++++++++++++++++++++++
12 2 files changed, 35 insertions(+)
13
14 diff --git a/x11-libs/libXfont/Manifest b/x11-libs/libXfont/Manifest
15 index 70563e119ca..0e047532079 100644
16 --- a/x11-libs/libXfont/Manifest
17 +++ b/x11-libs/libXfont/Manifest
18 @@ -1 +1,2 @@
19 DIST libXfont-1.5.3.tar.bz2 519793 SHA256 ab85c10fd2683481dfef672a77fe60e6a2039558cbc0e9bf56b5e1df471c93d0 SHA512 e7c8a09c4d174129e5d550194d3c3dc2b4abf797e52fe588c6002920727c52cf33b7db8d07fc69c2987e766d3af2d6ddda72f0c70eb21b135c691c97656a81b4 WHIRLPOOL 956af4caed82144124499f7d132a7dde21d738c3048e124b3007be65be6e093cb1247a4af24c36a1c6ef1cca52e96756c95d0b3db1940efd147fe8499378311b
20 +DIST libXfont-1.5.4.tar.bz2 528883 BLAKE2B d94a91dfa64e6b78bb4cb7f5ce59300b1cf31826308f3b3d29d495e166403ef57ddb8467033c08ea2b7a4fb0b160d25380f49aed79cd6b72a305eab07a0be25a SHA512 864edbaff45c44bd92bc4b06275c73fdf584a9b88bc523a297d4c75c01ca253f438463e929af70d753ddecfa648bb0b9bcf0ec72267db9f2b1704f7afa906cb3
21
22 diff --git a/x11-libs/libXfont/libXfont-1.5.4.ebuild b/x11-libs/libXfont/libXfont-1.5.4.ebuild
23 new file mode 100644
24 index 00000000000..30cc148e193
25 --- /dev/null
26 +++ b/x11-libs/libXfont/libXfont-1.5.4.ebuild
27 @@ -0,0 +1,34 @@
28 +# Copyright 1999-2017 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +
31 +EAPI=5
32 +
33 +XORG_DOC=doc
34 +inherit xorg-2
35 +
36 +DESCRIPTION="X.Org Xfont library"
37 +
38 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
39 +IUSE="bzip2 ipv6 truetype"
40 +
41 +RDEPEND="x11-libs/xtrans
42 + x11-libs/libfontenc
43 + sys-libs/zlib
44 + truetype? ( >=media-libs/freetype-2 )
45 + bzip2? ( app-arch/bzip2 )
46 + x11-proto/xproto
47 + >=x11-proto/fontsproto-2.1.3
48 + !<x11-base/xorg-server-1.5.99.901"
49 +DEPEND="${RDEPEND}"
50 +
51 +src_configure() {
52 + XORG_CONFIGURE_OPTIONS=(
53 + $(use_enable ipv6)
54 + $(use_enable doc devel-docs)
55 + $(use_with doc xmlto)
56 + $(use_with bzip2)
57 + $(use_enable truetype freetype)
58 + --without-fop
59 + )
60 + xorg-2_src_configure
61 +}