diff options
author | Pacho Ramos <pacho@gentoo.org> | 2014-09-02 11:13:08 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2014-09-02 11:13:08 +0000 |
commit | cdb9d92eec9618450f412a013449584036c7b488 (patch) | |
tree | 104476d2ab9d572dc209e864b47ca1eab2287064 /app-editors | |
parent | Use the correct slots for the jruby mask and add missing virtual/rubygems. (diff) | |
download | gentoo-2-cdb9d92eec9618450f412a013449584036c7b488.tar.gz gentoo-2-cdb9d92eec9618450f412a013449584036c7b488.tar.bz2 gentoo-2-cdb9d92eec9618450f412a013449584036c7b488.zip |
Fix build with freetype-2.5
(Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/ted/ChangeLog | 7 | ||||
-rw-r--r-- | app-editors/ted/ted-2.23.ebuild | 7 |
2 files changed, 10 insertions, 4 deletions
diff --git a/app-editors/ted/ChangeLog b/app-editors/ted/ChangeLog index e9c6889b8450..6ac3c1b2efba 100644 --- a/app-editors/ted/ChangeLog +++ b/app-editors/ted/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-editors/ted -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/ted/ChangeLog,v 1.63 2013/07/03 07:46:23 kensington Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/ted/ChangeLog,v 1.64 2014/09/02 11:13:08 pacho Exp $ + + 02 Sep 2014; Pacho Ramos <pacho@gentoo.org> ted-2.23.ebuild: + Fix build with freetype-2.5 03 Jul 2013; Michael Palimaka <kensington@gentoo.org> -files/ted-2.21-make.patch, -ted-2.22.ebuild: diff --git a/app-editors/ted/ted-2.23.ebuild b/app-editors/ted/ted-2.23.ebuild index 20a3ea8b92f0..b63ea0e1f60b 100644 --- a/app-editors/ted/ted-2.23.ebuild +++ b/app-editors/ted/ted-2.23.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/ted/ted-2.23.ebuild,v 1.5 2013/06/29 16:25:48 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/ted/ted-2.23.ebuild,v 1.6 2014/09/02 11:13:08 pacho Exp $ EAPI=5 inherit eutils toolchain-funcs @@ -40,6 +40,9 @@ src_prepare() { -e '/strip/d' \ tedPackage/makefile.in || die 'sed failed on tedPackage/makefile.in' + # Fix build with freetype-2.5 + sed -i "s|^\(#[ \t]*include[ \t]*<\)freetype/|\1|" appFrame/appFontConfig.c || die + mkdir lib || die } |