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: Wed, 29 Nov 2017 01:40:02
Message-Id: 1511919524.521952d921b8aca613187a79d0612212bfe7a6bb.mattst88@gentoo
1 commit: 521952d921b8aca613187a79d0612212bfe7a6bb
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 29 01:23:00 2017 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 29 01:38:44 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=521952d9
7
8 x11-libs/libXfont2: Version bump to 2.0.3
9
10 x11-libs/libXfont2/Manifest | 1 +
11 x11-libs/libXfont2/libXfont2-2.0.3.ebuild | 33 +++++++++++++++++++++++++++++++
12 2 files changed, 34 insertions(+)
13
14 diff --git a/x11-libs/libXfont2/Manifest b/x11-libs/libXfont2/Manifest
15 index 82f62465abb..bb12e4365a6 100644
16 --- a/x11-libs/libXfont2/Manifest
17 +++ b/x11-libs/libXfont2/Manifest
18 @@ -1 +1,2 @@
19 DIST libXfont2-2.0.2.tar.bz2 476173 SHA256 94088d3b87f7d42c7116d9adaad155859e93330c6e47f5989f2de600b9a6c111 SHA512 d62b0c3d663a2c668796cca8c6c2a90f83feeae1253b7d946668d33502cd8099c963285b88db4f745efb0d4ff783c118eb3d84cb8e6e1724586e1ef2be23e593 WHIRLPOOL 8e04eebcf81bfcbbd02af60bc047551c30379950b50b3e9d284c918f9241fa18885b5172a416d04cfa6ff44637de1b69ab5cb51e7af37354e0f23e9a052f7600
20 +DIST libXfont2-2.0.3.tar.bz2 497085 BLAKE2B 91780c245d5e08b45fca6e940b0fe910b43417b2bed77fa600e0b8ab2b2c5a423b8a1c680349b95592a77f5bac45b1f5a7991d05df699aad080e8c3cf4d614cf SHA512 648b664e2aa58cbc7366a1b05873aa06bd4a38060f64085783043388244af8ceced77b29a22c3ac8b6d34cd226e093bbbcc785ea1748ea65720fe7ea05b4b44b
21
22 diff --git a/x11-libs/libXfont2/libXfont2-2.0.3.ebuild b/x11-libs/libXfont2/libXfont2-2.0.3.ebuild
23 new file mode 100644
24 index 00000000000..8dd2f474727
25 --- /dev/null
26 +++ b/x11-libs/libXfont2/libXfont2-2.0.3.ebuild
27 @@ -0,0 +1,33 @@
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 +DEPEND="${RDEPEND}"
49 +
50 +src_configure() {
51 + XORG_CONFIGURE_OPTIONS=(
52 + $(use_enable ipv6)
53 + $(use_enable doc devel-docs)
54 + $(use_with doc xmlto)
55 + $(use_with bzip2)
56 + $(use_enable truetype freetype)
57 + --without-fop
58 + )
59 + xorg-2_src_configure
60 +}