diff options
author | Hanno Böck <hanno@gentoo.org> | 2010-08-03 23:09:25 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2010-08-03 23:09:25 +0000 |
commit | 9e87651931d4903a64f723178378cd6a3d27417a (patch) | |
tree | e74775a9058acd950687bc022fa7d077800ba866 /app-editors | |
parent | Add pypi mirrors as requested in bug 331109 by LiuCougar (diff) | |
download | gentoo-2-9e87651931d4903a64f723178378cd6a3d27417a.tar.gz gentoo-2-9e87651931d4903a64f723178378cd6a3d27417a.tar.bz2 gentoo-2-9e87651931d4903a64f723178378cd6a3d27417a.zip |
Fix compilation with latest gettext.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/bluefish/ChangeLog | 5 | ||||
-rw-r--r-- | app-editors/bluefish/bluefish-2.0.1.ebuild | 9 |
2 files changed, 12 insertions, 2 deletions
diff --git a/app-editors/bluefish/ChangeLog b/app-editors/bluefish/ChangeLog index 8666e427f211..89eadc278611 100644 --- a/app-editors/bluefish/ChangeLog +++ b/app-editors/bluefish/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-editors/bluefish # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/bluefish/ChangeLog,v 1.72 2010/07/15 20:22:16 billie Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/bluefish/ChangeLog,v 1.73 2010/08/03 23:09:25 hanno Exp $ + + 03 Aug 2010; Hanno Boeck <hanno@gentoo.org> bluefish-2.0.1.ebuild: + Fix compilation with latest gettext. 15 Jul 2010; Daniel Pielmeier <billie@gentoo.org> bluefish-2.0.1.ebuild: Fix Bug #311171 - Take two. diff --git a/app-editors/bluefish/bluefish-2.0.1.ebuild b/app-editors/bluefish/bluefish-2.0.1.ebuild index 374df28007cb..6ddd141ed3f8 100644 --- a/app-editors/bluefish/bluefish-2.0.1.ebuild +++ b/app-editors/bluefish/bluefish-2.0.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/bluefish/bluefish-2.0.1.ebuild,v 1.2 2010/07/15 20:22:16 billie Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/bluefish/bluefish-2.0.1.ebuild,v 1.3 2010/08/03 23:09:25 hanno Exp $ EAPI=2 @@ -41,6 +41,13 @@ pkg_setup() { } src_prepare () { + if use nls ; then + intltoolize --copy --force || die "intltoolize failed" + for po_dir in src/plugin_*/po ; do + cp po/Makefile.in.in ${po_dir} + done + fi + # Fixes automagic installation of charmap plugin # Upstream bug: https://bugzilla.gnome.org/show_bug.cgi?id=570990 epatch "${FILESDIR}"/${PN}-2.0.0-gucharmap-automagic.patch |