diff options
author | 2011-07-17 07:42:27 +0000 | |
---|---|---|
committer | 2011-07-17 07:42:27 +0000 | |
commit | 603175c68adb1521c5b3f8147ca1a1e4ae342e2d (patch) | |
tree | 42bac46094f16ef00d173ccbdd40a93490ebb4c0 /app-i18n | |
parent | Version bump. (diff) | |
download | gentoo-2-603175c68adb1521c5b3f8147ca1a1e4ae342e2d.tar.gz gentoo-2-603175c68adb1521c5b3f8147ca1a1e4ae342e2d.tar.bz2 gentoo-2-603175c68adb1521c5b3f8147ca1a1e4ae342e2d.zip |
Fix underlinking. bug #369557
(Portage version: 2.2.0_alpha45/cvs/Linux x86_64)
Diffstat (limited to 'app-i18n')
-rw-r--r-- | app-i18n/kimera/ChangeLog | 10 | ||||
-rw-r--r-- | app-i18n/kimera/files/kimera-2.11-underlinking.patch | 13 | ||||
-rw-r--r-- | app-i18n/kimera/kimera-2.11-r1.ebuild | 32 |
3 files changed, 53 insertions, 2 deletions
diff --git a/app-i18n/kimera/ChangeLog b/app-i18n/kimera/ChangeLog index 0e86d1e93e0e..851528c0edfd 100644 --- a/app-i18n/kimera/ChangeLog +++ b/app-i18n/kimera/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-i18n/kimera -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/kimera/ChangeLog,v 1.17 2010/03/27 00:18:15 yngwin Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/kimera/ChangeLog,v 1.18 2011/07/17 07:42:26 naota Exp $ + +*kimera-2.11-r1 (17 Jul 2011) + + 17 Jul 2011; Naohiro Aota <naota@gentoo.org> +kimera-2.11-r1.ebuild, + +files/kimera-2.11-underlinking.patch: + Fix underlinking. bug #369557 27 Mar 2010; Ben de Groot <yngwin@gentoo.org> kimera-2.11.ebuild, -files/kimera-2.11-gentoo.patch: diff --git a/app-i18n/kimera/files/kimera-2.11-underlinking.patch b/app-i18n/kimera/files/kimera-2.11-underlinking.patch new file mode 100644 index 000000000000..dab4b63e7c14 --- /dev/null +++ b/app-i18n/kimera/files/kimera-2.11-underlinking.patch @@ -0,0 +1,13 @@ +diff --git a/kimera.pro b/kimera.pro +index 0d4f0be..a2b63da 100644 +--- a/kimera.pro ++++ b/kimera.pro +@@ -90,7 +90,7 @@ SOURCES = \ + isEmpty( no_anthy ) { + HEADERS += src/anthyengine.h + SOURCES += src/anthyengine.cpp +-# LIBS += -ldl ++ LIBS += $$QMAKE_LIBS_DYNLOAD + isEmpty( default_kanjiengine ) { + default_kanjiengine = Anthy + } diff --git a/app-i18n/kimera/kimera-2.11-r1.ebuild b/app-i18n/kimera/kimera-2.11-r1.ebuild new file mode 100644 index 000000000000..65f638e9d8a0 --- /dev/null +++ b/app-i18n/kimera/kimera-2.11-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/kimera/kimera-2.11-r1.ebuild,v 1.1 2011/07/17 07:42:26 naota Exp $ + +EAPI=3 +inherit qt4-r2 eutils + +DESCRIPTION="A Japanese input method which supports the XIM protocol" +SRC_URI="mirror://sourceforge.jp/kimera/37271/${P}.tar.gz" +HOMEPAGE="http://kimera.sourceforge.jp/" + +SLOT="0" +LICENSE="GPL-3" +KEYWORDS="~amd64 ~x86" +IUSE="+anthy" + +DEPEND="x11-libs/qt-core:4 + anthy? ( app-i18n/anthy ) + !anthy? ( app-i18n/canna )" +RDEPEND="${DEPEND}" + +DOCS="AUTHORS README*" + +src_configure() { + local myconf="target.path=/usr/$(get_libdir)/${P}" + use anthy || myconf="${myconf} no_anthy=1" + eqmake4 kimera.pro ${myconf} +} + +src_prepare() { + epatch "${FILESDIR}"/${P}-underlinking.patch +} |