diff options
author | Peter Volkov <pva@gentoo.org> | 2008-05-04 13:27:42 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2008-05-04 13:27:42 +0000 |
commit | 5e00c43dc35778064816b69e88e3004c174200c4 (patch) | |
tree | 2dea8342cb8e61562ff523e3cfdb9cb0c647b884 /media-libs/fontconfig | |
parent | amd64/x86 stable, security bug #214816 (diff) | |
download | gentoo-2-5e00c43dc35778064816b69e88e3004c174200c4.tar.gz gentoo-2-5e00c43dc35778064816b69e88e3004c174200c4.tar.bz2 gentoo-2-5e00c43dc35778064816b69e88e3004c174200c4.zip |
Fixed compilation with libtool-2.2, bug #213831, thank Alessandro Guido for report.
(Portage version: 2.1.4.4)
Diffstat (limited to 'media-libs/fontconfig')
-rw-r--r-- | media-libs/fontconfig/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/fontconfig/files/fontconfig-2.5.0-libtool-2.2.patch | 76 | ||||
-rw-r--r-- | media-libs/fontconfig/fontconfig-2.5.0-r1.ebuild | 3 |
3 files changed, 84 insertions, 2 deletions
diff --git a/media-libs/fontconfig/ChangeLog b/media-libs/fontconfig/ChangeLog index 6b463f68da68..8732e2be4ec6 100644 --- a/media-libs/fontconfig/ChangeLog +++ b/media-libs/fontconfig/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/fontconfig # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/fontconfig/ChangeLog,v 1.109 2008/03/30 23:04:48 ricmm Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/fontconfig/ChangeLog,v 1.110 2008/05/04 13:27:41 pva Exp $ + + 04 May 2008; Peter Volkov <pva@gentoo.org> + +files/fontconfig-2.5.0-libtool-2.2.patch, fontconfig-2.5.0-r1.ebuild: + Fixed compilation with libtool-2.2, bug #213831, thank Alessandro Guido + for report. 30 Mar 2008; <ricmm@gentoo.org> fontconfig-2.4.2.ebuild: Drop to ~mips due to unstable deps diff --git a/media-libs/fontconfig/files/fontconfig-2.5.0-libtool-2.2.patch b/media-libs/fontconfig/files/fontconfig-2.5.0-libtool-2.2.patch new file mode 100644 index 000000000000..0da2b300680b --- /dev/null +++ b/media-libs/fontconfig/files/fontconfig-2.5.0-libtool-2.2.patch @@ -0,0 +1,76 @@ +From: Keith Packard <keithp@keithp.com> +Date: Sun, 4 May 2008 03:23:37 +0000 (-0700) +Subject: Deal with libtool 2.2 which doesn't let us use LT_ variables. (bug 15692) +X-Git-Tag: 2.5.92 +X-Git-Url: http://gitweb.freedesktop.org/?p=fontconfig;a=commitdiff;h=19d124dc4f9a68e1c9ddce58bf79a5e11d2ccbfd + +Deal with libtool 2.2 which doesn't let us use LT_ variables. (bug 15692) + +Libtool-2.2 introduces new restrictions. So now it does not allow LT_* +variables as it includes marcros: + +m4_pattern_forbid([^_?LT_[A-Z_]+$]) + +Rename the LT_ variables to LIBT_ to work around this restriction. +--- + +--- a/configure.in ++++ b/configure.in +@@ -41,17 +41,17 @@ dnl libtool versioning + dnl bump revision when fixing bugs + dnl bump current and age, reset revision to zero when adding APIs + dnl bump current, leave age, reset revision to zero when changing/removing APIS +-LT_CURRENT=4 +-LT_REVISION=0 +-AC_SUBST(LT_CURRENT) +-AC_SUBST(LT_REVISION) +-LT_AGE=3 ++LIBT_CURRENT=4 ++LIBT_REVISION=0 ++AC_SUBST(LIBT_CURRENT) ++AC_SUBST(LIBT_REVISION) ++LIBT_AGE=3 + +-LT_VERSION_INFO="$LT_CURRENT:$LT_REVISION:$LT_AGE" +-AC_SUBST(LT_VERSION_INFO) ++LIBT_VERSION_INFO="$LIBT_CURRENT:$LIBT_REVISION:$LIBT_AGE" ++AC_SUBST(LIBT_VERSION_INFO) + +-LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE` +-AC_SUBST(LT_CURRENT_MINUS_AGE) ++LIBT_CURRENT_MINUS_AGE=`expr $LIBT_CURRENT - $LIBT_AGE` ++AC_SUBST(LIBT_CURRENT_MINUS_AGE) + + dnl ========================================================================== + +--- a/fontconfig-zip.in ++++ b/fontconfig-zip.in +@@ -10,7 +10,7 @@ DEVZIP=/tmp/fontconfig-dev-@VERSION@.zip + cd @prefix@ + rm -f $ZIP + zip $ZIP -@ <<EOF +-bin/libfontconfig-@LT_CURRENT_MINUS_AGE@.dll ++bin/libfontconfig-@LIBT_CURRENT_MINUS_AGE@.dll + etc/fonts/fonts.conf + EOF + +--- a/src/Makefile.am ++++ b/src/Makefile.am +@@ -112,7 +112,7 @@ libfontconfig_la_SOURCES = \ + lib_LTLIBRARIES = libfontconfig.la + + libfontconfig_la_LDFLAGS = \ +- -version-info @LT_VERSION_INFO@ -no-undefined $(export_symbols) ++ -version-info @LIBT_VERSION_INFO@ -no-undefined $(export_symbols) + + libfontconfig_la_LIBADD = $(ICONV_LIBS) $(FREETYPE_LIBS) $(LIBXML2_LIBS) $(EXPAT_LIBS) + +@@ -148,6 +148,6 @@ fontconfig.def: $(PUBLIC_FILES) $(PUBLIC + (cat $(PUBLIC_FILES) $(PUBLIC_FT_FILES) || echo 'FcERROR ()' ) | \ + grep '^Fc[^ ]* *(' | sed -e 's/ *(.*$$//' -e 's/^/ /' | \ + sort; \ +- echo LIBRARY libfontconfig-@LT_CURRENT_MINUS_AGE@.dll; \ +- echo VERSION @LT_CURRENT@.@LT_REVISION@) >$@ ++ echo LIBRARY libfontconfig-@LIBT_CURRENT_MINUS_AGE@.dll; \ ++ echo VERSION @LIBT_CURRENT@.@LIBT_REVISION@) >$@ + @ ! grep -q FcERROR $@ || ($(RM) $@; false) diff --git a/media-libs/fontconfig/fontconfig-2.5.0-r1.ebuild b/media-libs/fontconfig/fontconfig-2.5.0-r1.ebuild index e8e5de5d10df..c6cb77ac79c3 100644 --- a/media-libs/fontconfig/fontconfig-2.5.0-r1.ebuild +++ b/media-libs/fontconfig/fontconfig-2.5.0-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/fontconfig/fontconfig-2.5.0-r1.ebuild,v 1.9 2008/01/16 15:40:47 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/fontconfig/fontconfig-2.5.0-r1.ebuild,v 1.10 2008/05/04 13:27:41 pva Exp $ inherit eutils libtool autotools @@ -27,6 +27,7 @@ src_unpack() { cd "${S}" # add docbook switch so we can disable it epatch "${FILESDIR}"/${PN}-2.3.2-docbook.patch + epatch "${FILESDIR}"/${P}-libtool-2.2.patch #213831 Fix libtool-2.2 brekage eautoreconf epunt_cxx #74077 |