diff options
author | Donnie Berkholz <dberkholz@gentoo.org> | 2006-07-08 17:31:25 +0000 |
---|---|---|
committer | Donnie Berkholz <dberkholz@gentoo.org> | 2006-07-08 17:31:25 +0000 |
commit | 5ee8c2b687b428eec19a8227282322998948c358 (patch) | |
tree | c90fc5a4318bd330ba97bcbbceeb839fc9b1622c /x11-libs/libXfont | |
parent | Bump, compatible with xorg-server 1.0 and 1.1. Adds new chip support and more... (diff) | |
download | gentoo-2-5ee8c2b687b428eec19a8227282322998948c358.tar.gz gentoo-2-5ee8c2b687b428eec19a8227282322998948c358.tar.bz2 gentoo-2-5ee8c2b687b428eec19a8227282322998948c358.zip |
FreeType 2.2 compatibility, and some other fixes.
(Portage version: 2.1.1_pre2-r4)
Diffstat (limited to 'x11-libs/libXfont')
-rw-r--r-- | x11-libs/libXfont/ChangeLog | 8 | ||||
-rw-r--r-- | x11-libs/libXfont/files/digest-libXfont-1.2.0 | 3 | ||||
-rw-r--r-- | x11-libs/libXfont/libXfont-1.2.0.ebuild | 33 |
3 files changed, 43 insertions, 1 deletions
diff --git a/x11-libs/libXfont/ChangeLog b/x11-libs/libXfont/ChangeLog index 761d795a4bd2..449e18df96cb 100644 --- a/x11-libs/libXfont/ChangeLog +++ b/x11-libs/libXfont/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-libs/libXfont # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libXfont/ChangeLog,v 1.37 2006/06/30 23:28:01 spyderous Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libXfont/ChangeLog,v 1.38 2006/07/08 17:31:25 dberkholz Exp $ + +*libXfont-1.2.0 (08 Jul 2006) + + 08 Jul 2006; Donnie Berkholz <spyderous@gentoo.org>; + +libXfont-1.2.0.ebuild: + FreeType 2.2 compatibility, and some other fixes. 30 Jun 2006; Donnie Berkholz <spyderous@gentoo.org>; libXfont-1.1.0-r1.ebuild: diff --git a/x11-libs/libXfont/files/digest-libXfont-1.2.0 b/x11-libs/libXfont/files/digest-libXfont-1.2.0 new file mode 100644 index 000000000000..76e060720c53 --- /dev/null +++ b/x11-libs/libXfont/files/digest-libXfont-1.2.0 @@ -0,0 +1,3 @@ +MD5 038315ade283d8da92422baebac553a2 libXfont-1.2.0.tar.bz2 591129 +RMD160 8faaeb2514390fe2f17534c27a5ad20e2f177ff0 libXfont-1.2.0.tar.bz2 591129 +SHA256 130d6991971a10ba8b54f52848bcb00cbb7b4229eb839f88500972e11fecf8f0 libXfont-1.2.0.tar.bz2 591129 diff --git a/x11-libs/libXfont/libXfont-1.2.0.ebuild b/x11-libs/libXfont/libXfont-1.2.0.ebuild new file mode 100644 index 000000000000..874834e335fd --- /dev/null +++ b/x11-libs/libXfont/libXfont-1.2.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libXfont/libXfont-1.2.0.ebuild,v 1.1 2006/07/08 17:31:25 dberkholz Exp $ + +# Must be before x-modular eclass is inherited +# SNAPSHOT="yes" + +inherit x-modular flag-o-matic + +DESCRIPTION="X.Org Xfont library" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="ipv6" +RDEPEND="x11-libs/xtrans + x11-libs/libfontenc + x11-proto/xproto + x11-proto/fontsproto + >=media-libs/freetype-2" +DEPEND="${RDEPEND} + x11-proto/fontcacheproto" + +CONFIGURE_OPTIONS="$(use_enable ipv6) + --enable-type1 + --with-encodingsdir=/usr/share/fonts/encodings" + +pkg_setup() { + # No such function yet + # x-modular_pkg_setup + + # (#125465) Broken with Bdirect support + filter-flags -Wl,-Bdirect + filter-ldflags -Bdirect + filter-ldflags -Wl,-Bdirect +} |