diff options
author | 2012-11-30 05:58:39 +0000 | |
---|---|---|
committer | 2012-11-30 05:58:39 +0000 | |
commit | d6373c1dde683499cdacb5bd5c0afa123abeb474 (patch) | |
tree | 11309dee7678c7efb2341b637d59178b8d8fff4c /dev-libs/libotf | |
parent | Revision bump. Do not append 'Categories' to .desktop file, bug 443562. Add p... (diff) | |
download | gentoo-2-d6373c1dde683499cdacb5bd5c0afa123abeb474.tar.gz gentoo-2-d6373c1dde683499cdacb5bd5c0afa123abeb474.tar.bz2 gentoo-2-d6373c1dde683499cdacb5bd5c0afa123abeb474.zip |
Version bump wrt #439900 by James Cloos
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'dev-libs/libotf')
-rw-r--r-- | dev-libs/libotf/ChangeLog | 8 | ||||
-rw-r--r-- | dev-libs/libotf/files/libotf-0.9.13-build.patch | 22 | ||||
-rw-r--r-- | dev-libs/libotf/libotf-0.9.13.ebuild | 45 |
3 files changed, 74 insertions, 1 deletions
diff --git a/dev-libs/libotf/ChangeLog b/dev-libs/libotf/ChangeLog index f225418eb641..e19ae7168c8b 100644 --- a/dev-libs/libotf/ChangeLog +++ b/dev-libs/libotf/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-libs/libotf # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libotf/ChangeLog,v 1.51 2012/11/14 14:13:40 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libotf/ChangeLog,v 1.52 2012/11/30 05:58:39 ssuominen Exp $ + +*libotf-0.9.13 (30 Nov 2012) + + 30 Nov 2012; Samuli Suominen <ssuominen@gentoo.org> +libotf-0.9.13.ebuild, + +files/libotf-0.9.13-build.patch: + Version bump wrt #439900 by James Cloos 14 Nov 2012; Justin Lecher <jlec@gentoo.org> libotf-0.9.9.ebuild: Keyworded for ~linux, tested by me diff --git a/dev-libs/libotf/files/libotf-0.9.13-build.patch b/dev-libs/libotf/files/libotf-0.9.13-build.patch new file mode 100644 index 000000000000..519722f43371 --- /dev/null +++ b/dev-libs/libotf/files/libotf-0.9.13-build.patch @@ -0,0 +1,22 @@ +--- example/Makefile.am ++++ example/Makefile.am +@@ -37,8 +37,7 @@ + otfdump_LDADD = ${CommonLDADD} + + otfview_SOURCE = otfview.c +-otfview_LDADD = ${CommonLDADD} +-otfview_LDFLAGS = ${X_LIBS} ${X_PRE_LIBS} @X11_XT_XAW_XMU@ ${X_EXTRA_LIBS} ++otfview_LDADD = ${CommonLDADD} ${X_LIBS} ${X_PRE_LIBS} @X11_XT_XAW_XMU@ ${X_EXTRA_LIBS} + + otftobdf_SOURCE = otftobdf.c + otftobdf_LDADD = ${CommonLDADD} +--- libotf.pc.in ++++ libotf.pc.in +@@ -7,5 +7,6 @@ + Description: OpenType font library + Version: @PACKAGE_VERSION@ + Requires: freetype2 +-Libs: @FREETYPE_LD_FLAGS@ -L${libdir} -lotf ++Libs: -L${libdir} -lotf ++Libs.private: @FREETYPE_LD_FLAGS@ + Cflags: @FREETYPE_INC@ -I${includedir} diff --git a/dev-libs/libotf/libotf-0.9.13.ebuild b/dev-libs/libotf/libotf-0.9.13.ebuild new file mode 100644 index 000000000000..c017e8b05274 --- /dev/null +++ b/dev-libs/libotf/libotf-0.9.13.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libotf/libotf-0.9.13.ebuild,v 1.1 2012/11/30 05:58:39 ssuominen Exp $ + +EAPI=5 +inherit autotools eutils + +DESCRIPTION="Library for handling OpenType fonts (OTF)" +HOMEPAGE="http://www.nongnu.org/m17n/" +SRC_URI="mirror://nongnu/m17n/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86" +IUSE="static-libs X" + +RDEPEND=">=media-libs/freetype-2.4.9 + X? ( + x11-libs/libX11 + x11-libs/libXaw + x11-libs/libXt + )" +DEPEND="${RDEPEND} + X? ( + x11-libs/libICE + x11-libs/libXmu + x11-proto/xproto + )" + +DOCS="AUTHORS ChangeLog NEWS README" + +src_prepare() { + epatch "${FILESDIR}"/${P}-build.patch + eautoreconf +} + +src_configure() { + export ac_cv_header_X11_Xaw_Command_h=$(usex X) + econf $(use_enable static-libs static) +} + +src_install() { + default + prune_libtool_files +} |