public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-i18n/fcitx: ChangeLog fcitx-3.6.2.ebuild
@ 2009-11-07  7:07 Matsuu Takuto (matsuu)
  0 siblings, 0 replies; 2+ messages in thread
From: Matsuu Takuto (matsuu) @ 2009-11-07  7:07 UTC (permalink / raw
  To: gentoo-commits

matsuu      09/11/07 07:07:26

  Modified:             ChangeLog
  Added:                fcitx-3.6.2.ebuild
  Log:
  Version bumped. Removed xft USE flag, Fixed --as-need issue, bug #276302.
  (Portage version: 2.1.7.4/cvs/Linux x86_64)

Revision  Changes    Path
1.27                 app-i18n/fcitx/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/fcitx/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/fcitx/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/fcitx/ChangeLog?r1=1.26&r2=1.27

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-i18n/fcitx/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	16 Sep 2009 17:36:33 -0000	1.26
+++ ChangeLog	7 Nov 2009 07:07:25 -0000	1.27
@@ -1,6 +1,11 @@
 # ChangeLog for app-i18n/fcitx
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/fcitx/ChangeLog,v 1.26 2009/09/16 17:36:33 matsuu Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/fcitx/ChangeLog,v 1.27 2009/11/07 07:07:25 matsuu Exp $
+
+*fcitx-3.6.2 (07 Nov 2009)
+
+  07 Nov 2009; MATSUU Takuto <matsuu@gentoo.org> +fcitx-3.6.2.ebuild:
+  Version bumped. Removed xft USE flag. Fixed --as-need issue, bug #276302.
 
 *fcitx-3.6.1 (16 Sep 2009)
 
@@ -25,7 +30,7 @@
   fcitx-3.4.2.ebuild, fcitx-3.5_pre070703.ebuild, +fcitx-3.5.ebuild:
   Version bumped. Fxied HOMEPAGE and SRC_URI, bug #196078.
 
-  07 Jun 2008; Diego Pettenò <flameeyes@gentoo.org>
+  07 Jun 2008; Diego Petten嘆 <flameeyes@gentoo.org>
   +files/fcitx-3.5_pre070703-asneeded.patch, fcitx-3.5_pre070703.ebuild:
   Add patch to fix building with --as-needed, closes bug #225211. Thanks to
   Hong Hao for reporting.
@@ -50,7 +55,7 @@
   +fcitx-3.5_pre070403.ebuild:
   Version bumped, bug #168303.
 
-  05 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> fcitx-3.1.1.ebuild,
+  05 Jan 2007; Diego Petten嘆 <flameeyes@gentoo.org> fcitx-3.1.1.ebuild,
   fcitx-3.2.1.ebuild, fcitx-3.4.ebuild:
   Convert to use elog.
 



1.1                  app-i18n/fcitx/fcitx-3.6.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/fcitx/fcitx-3.6.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/fcitx/fcitx-3.6.2.ebuild?rev=1.1&content-type=text/plain

Index: fcitx-3.6.2.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/fcitx/fcitx-3.6.2.ebuild,v 1.1 2009/11/07 07:07:25 matsuu Exp $

EAPI=2

inherit flag-o-matic

DESCRIPTION="Free Chinese Input Toy for X. Another Chinese XIM Input Method"
HOMEPAGE="http://www.fcitx.org/"
SRC_URI="http://www.fcitx.org/download/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""

RDEPEND="x11-libs/libX11
	x11-libs/libXpm
	x11-libs/libXrender
	x11-libs/libXt
	x11-libs/libXft"
DEPEND="${RDEPEND}
	dev-util/pkgconfig"

src_configure() {
	append-ldflags $(no-as-needed)

	# --disable-xft doesn't work
	# econf $(use_enable xft) || die
	econf || die
}

src_install() {
	emake DESTDIR="${D}" install || die

	dodoc AUTHORS ChangeLog README THANKS TODO || die

	rm -rf "${D}"/usr/share/fcitx/doc/ || die
	dodoc doc/pinyin.txt doc/cjkvinput.txt || die
	dohtml doc/wb_fh.htm || die
}

pkg_postinst() {
	elog
	elog "You should export the following variables to use fcitx"
	elog " export XMODIFIERS=\"@im=fcitx\""
	elog " export XIM=fcitx"
	elog " export XIM_PROGRAM=fcitx"
	elog
	elog "If you want to use WuBi ,ErBi or something else."
	elog " mkdir -p ~/.fcitx"
	elog " cp /usr/share/fcitx/data/wbx.mb ~/.fcitx"
	elog " cp /usr/share/fcitx/data/erbi.mb ~/.fcitx"
	elog " cp /usr/share/fcitx/data/tables.conf ~/.fcitx"
	elog
}






^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-i18n/fcitx: ChangeLog fcitx-3.6.2.ebuild
@ 2010-02-06 15:36 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 2+ messages in thread
From: Samuli Suominen (ssuominen) @ 2010-02-06 15:36 UTC (permalink / raw
  To: gentoo-commits

ssuominen    10/02/06 15:36:36

  Modified:             ChangeLog fcitx-3.6.2.ebuild
  Log:
  Fix building with -Wl,--as-needed wrt #276302 by Kacper Kowalik.
  (Portage version: 2.2_rc62/cvs/Linux x86_64)

Revision  Changes    Path
1.29                 app-i18n/fcitx/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/fcitx/ChangeLog?rev=1.29&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/fcitx/ChangeLog?rev=1.29&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/fcitx/ChangeLog?r1=1.28&r2=1.29

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-i18n/fcitx/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog	9 Nov 2009 07:06:06 -0000	1.28
+++ ChangeLog	6 Feb 2010 15:36:35 -0000	1.29
@@ -1,6 +1,10 @@
 # ChangeLog for app-i18n/fcitx
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/fcitx/ChangeLog,v 1.28 2009/11/09 07:06:06 tove Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/fcitx/ChangeLog,v 1.29 2010/02/06 15:36:35 ssuominen Exp $
+
+  06 Feb 2010; Samuli Suominen <ssuominen@gentoo.org> fcitx-3.6.2.ebuild,
+  +files/fcitx-3.6.2-asneeded.patch:
+  Fix building with -Wl,--as-needed wrt #276302 by Kacper Kowalik.
 
 *fcitx-3.6.2 (07 Nov 2009)
 



1.2                  app-i18n/fcitx/fcitx-3.6.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/fcitx/fcitx-3.6.2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/fcitx/fcitx-3.6.2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/fcitx/fcitx-3.6.2.ebuild?r1=1.1&r2=1.2

Index: fcitx-3.6.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-i18n/fcitx/fcitx-3.6.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- fcitx-3.6.2.ebuild	7 Nov 2009 07:07:25 -0000	1.1
+++ fcitx-3.6.2.ebuild	6 Feb 2010 15:36:35 -0000	1.2
@@ -1,10 +1,9 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/fcitx/fcitx-3.6.2.ebuild,v 1.1 2009/11/07 07:07:25 matsuu Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/fcitx/fcitx-3.6.2.ebuild,v 1.2 2010/02/06 15:36:35 ssuominen Exp $
 
 EAPI=2
-
-inherit flag-o-matic
+inherit autotools eutils
 
 DESCRIPTION="Free Chinese Input Toy for X. Another Chinese XIM Input Method"
 HOMEPAGE="http://www.fcitx.org/"
@@ -19,13 +18,18 @@
 	x11-libs/libXpm
 	x11-libs/libXrender
 	x11-libs/libXt
+	x11-libs/libXtst
+	x11-libs/libXext
 	x11-libs/libXft"
 DEPEND="${RDEPEND}
 	dev-util/pkgconfig"
 
-src_configure() {
-	append-ldflags $(no-as-needed)
+src_prepare() {
+	epatch "${FILESDIR}"/${P}-asneeded.patch
+	eautoreconf
+}
 
+src_configure() {
 	# --disable-xft doesn't work
 	# econf $(use_enable xft) || die
 	econf || die






^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-02-06 15:36 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-06 15:36 [gentoo-commits] gentoo-x86 commit in app-i18n/fcitx: ChangeLog fcitx-3.6.2.ebuild Samuli Suominen (ssuominen)
  -- strict thread matches above, loose matches on Subject: below --
2009-11-07  7:07 Matsuu Takuto (matsuu)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox