diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2008-11-16 17:14:56 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2008-11-16 17:14:56 +0000 |
commit | 70af0b087983a5f3bed902d35ea2ecad2a54af9f (patch) | |
tree | 4825bef845df34d08743f7a47d5eb0cbed71cb4c /app-i18n | |
parent | Keyworded on alpha, bug #245771 (diff) | |
download | gentoo-2-70af0b087983a5f3bed902d35ea2ecad2a54af9f.tar.gz gentoo-2-70af0b087983a5f3bed902d35ea2ecad2a54af9f.tar.bz2 gentoo-2-70af0b087983a5f3bed902d35ea2ecad2a54af9f.zip |
Version bumped.
(Portage version: 2.2_rc14/cvs/Linux 2.6.27-gentoo x86_64)
Diffstat (limited to 'app-i18n')
-rw-r--r-- | app-i18n/ibus-table/ChangeLog | 8 | ||||
-rw-r--r-- | app-i18n/ibus-table/ibus-table-0.1.1.20081115.ebuild (renamed from app-i18n/ibus-table/ibus-table-0.1.1.20080901.ebuild) | 16 |
2 files changed, 21 insertions, 3 deletions
diff --git a/app-i18n/ibus-table/ChangeLog b/app-i18n/ibus-table/ChangeLog index d29eea1344b0..3f495fce1cb3 100644 --- a/app-i18n/ibus-table/ChangeLog +++ b/app-i18n/ibus-table/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-i18n/ibus-table # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-table/ChangeLog,v 1.2 2008/10/19 14:18:23 matsuu Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-table/ChangeLog,v 1.3 2008/11/16 17:14:56 matsuu Exp $ + +*ibus-table-0.1.1.20081115 (16 Nov 2008) + + 16 Nov 2008; MATSUU Takuto <matsuu@gentoo.org> + -ibus-table-0.1.1.20080901.ebuild, +ibus-table-0.1.1.20081115.ebuild: + Version bumped. *ibus-table-0.1.1.20081014 (19 Oct 2008) diff --git a/app-i18n/ibus-table/ibus-table-0.1.1.20080901.ebuild b/app-i18n/ibus-table/ibus-table-0.1.1.20081115.ebuild index 7719a50debc7..d402964fb3c1 100644 --- a/app-i18n/ibus-table/ibus-table-0.1.1.20080901.ebuild +++ b/app-i18n/ibus-table/ibus-table-0.1.1.20081115.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-table/ibus-table-0.1.1.20080901.ebuild,v 1.1 2008/09/10 00:18:25 matsuu Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-table/ibus-table-0.1.1.20081115.ebuild,v 1.1 2008/11/16 17:14:56 matsuu Exp $ EAPI="1" -inherit eutils +inherit eutils python DESCRIPTION="The Table Engine for IBus Framework" HOMEPAGE="http://code.google.com/p/ibus/" @@ -27,6 +27,13 @@ pkg_setup() { fi } +src_unpack() { + unpack ${A} + cd "${S}" + mv py-compile py-compile.orig || die + ln -s "$(type -P true)" py-compile || die +} + src_compile() { econf \ $(use_enable additional) \ @@ -54,4 +61,9 @@ pkg_postinst() { elog elog "You should run ibus-setup and enable IM Engines you want to use!" elog + python_mod_optimize /usr/share/${PN}/engine +} + +pkg_postrm() { + python_mod_cleanup /usr/share/${PN}/engine } |