diff options
author | Matt Turner <mattst88@gentoo.org> | 2014-07-19 18:03:27 +0000 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2014-07-19 18:03:27 +0000 |
commit | de7a5fbf62d5596b2746af1da52e6c4d75a44fd3 (patch) | |
tree | 17509d07152fa31de36c5ae602c39699e65b7152 /x11-libs/libXfont | |
parent | Stable on alpha, bug #506100 (diff) | |
download | gentoo-2-de7a5fbf62d5596b2746af1da52e6c4d75a44fd3.tar.gz gentoo-2-de7a5fbf62d5596b2746af1da52e6c4d75a44fd3.tar.bz2 gentoo-2-de7a5fbf62d5596b2746af1da52e6c4d75a44fd3.zip |
Version bump to 1.5.0.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 974CA72A)
Diffstat (limited to 'x11-libs/libXfont')
-rw-r--r-- | x11-libs/libXfont/ChangeLog | 7 | ||||
-rw-r--r-- | x11-libs/libXfont/libXfont-1.5.0.ebuild | 34 |
2 files changed, 40 insertions, 1 deletions
diff --git a/x11-libs/libXfont/ChangeLog b/x11-libs/libXfont/ChangeLog index e06a7ae5c7a8..fa8247bcc9f0 100644 --- a/x11-libs/libXfont/ChangeLog +++ b/x11-libs/libXfont/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-libs/libXfont # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libXfont/ChangeLog,v 1.211 2014/06/10 08:02:19 chithanh Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libXfont/ChangeLog,v 1.212 2014/07/19 18:03:27 mattst88 Exp $ + +*libXfont-1.5.0 (19 Jul 2014) + + 19 Jul 2014; Matt Turner <mattst88@gentoo.org> +libXfont-1.5.0.ebuild: + Version bump to 1.5.0. 10 Jun 2014; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> -libXfont-1.4.7.ebuild: diff --git a/x11-libs/libXfont/libXfont-1.5.0.ebuild b/x11-libs/libXfont/libXfont-1.5.0.ebuild new file mode 100644 index 000000000000..62be136a8e13 --- /dev/null +++ b/x11-libs/libXfont/libXfont-1.5.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libXfont/libXfont-1.5.0.ebuild,v 1.1 2014/07/19 18:03:27 mattst88 Exp $ + +EAPI=5 + +XORG_DOC=doc +inherit xorg-2 + +DESCRIPTION="X.Org Xfont library" + +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +IUSE="bzip2 ipv6 truetype" + +RDEPEND="x11-libs/xtrans + x11-libs/libfontenc + truetype? ( >=media-libs/freetype-2 ) + bzip2? ( app-arch/bzip2 ) + x11-proto/xproto + >=x11-proto/fontsproto-2.1.3 + !<x11-base/xorg-server-1.5.99.901" +DEPEND="${RDEPEND}" + +src_configure() { + XORG_CONFIGURE_OPTIONS=( + $(use_enable ipv6) + $(use_enable doc devel-docs) + $(use_with doc xmlto) + $(use_with bzip2) + $(use_enable truetype freetype) + --without-fop + ) + xorg-2_src_configure +} |