diff options
author | Donnie Berkholz <dberkholz@gentoo.org> | 2009-01-13 02:40:07 +0000 |
---|---|---|
committer | Donnie Berkholz <dberkholz@gentoo.org> | 2009-01-13 02:40:07 +0000 |
commit | e0d5836177a97877bc2326380f03b8189f558a09 (patch) | |
tree | 179960ad0eec43feb08fbe6bcb2037b40e15736a /x11-libs/libXfont | |
parent | Fixup ssp detection patch #254365 by Felix Riemann. (diff) | |
download | gentoo-2-e0d5836177a97877bc2326380f03b8189f558a09.tar.gz gentoo-2-e0d5836177a97877bc2326380f03b8189f558a09.tar.bz2 gentoo-2-e0d5836177a97877bc2326380f03b8189f558a09.zip |
Bump. Adds support for bzip2 bitmap-font compression. Other bugfixes.
(Portage version: 2.1.6.4/cvs/Linux 2.6.28 x86_64)
Diffstat (limited to 'x11-libs/libXfont')
-rw-r--r-- | x11-libs/libXfont/ChangeLog | 10 | ||||
-rw-r--r-- | x11-libs/libXfont/libXfont-1.3.4.ebuild | 35 |
2 files changed, 43 insertions, 2 deletions
diff --git a/x11-libs/libXfont/ChangeLog b/x11-libs/libXfont/ChangeLog index aec3c1fe2673..64fb1903f4bc 100644 --- a/x11-libs/libXfont/ChangeLog +++ b/x11-libs/libXfont/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-libs/libXfont -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libXfont/ChangeLog,v 1.94 2008/07/05 06:26:38 dberkholz Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libXfont/ChangeLog,v 1.95 2009/01/13 02:40:07 dberkholz Exp $ + +*libXfont-1.3.4 (13 Jan 2009) + + 13 Jan 2009; Donnie Berkholz <dberkholz@gentoo.org>; + +libXfont-1.3.4.ebuild: + Bump. Adds support for bzip2 bitmap-font compression. Other bugfixes. *libXfont-1.3.3 (05 Jul 2008) diff --git a/x11-libs/libXfont/libXfont-1.3.4.ebuild b/x11-libs/libXfont/libXfont-1.3.4.ebuild new file mode 100644 index 000000000000..f31bea4fc121 --- /dev/null +++ b/x11-libs/libXfont/libXfont-1.3.4.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libXfont/libXfont-1.3.4.ebuild,v 1.1 2009/01/13 02:40:07 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) + --with-bzip2 + --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 +} |