summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2011-04-16 22:21:29 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2011-04-16 22:21:29 +0000
commit48e5258ea017e809d3912555817dbfebaa08ef6b (patch)
treee66812cac1cb7d882fd99792aeaedf24505dba07 /app-i18n/ibus-anthy
parentCall Python-related functions only with USE="python". (diff)
downloadhistorical-48e5258ea017e809d3912555817dbfebaa08ef6b.tar.gz
historical-48e5258ea017e809d3912555817dbfebaa08ef6b.tar.bz2
historical-48e5258ea017e809d3912555817dbfebaa08ef6b.zip
Fix deprecation warnings.
Package-Manager: portage-2.2.0_alpha30/cvs/Linux x86_64
Diffstat (limited to 'app-i18n/ibus-anthy')
-rw-r--r--app-i18n/ibus-anthy/ChangeLog9
-rw-r--r--app-i18n/ibus-anthy/ibus-anthy-1.2.0.20100115.ebuild15
-rw-r--r--app-i18n/ibus-anthy/ibus-anthy-1.2.1.ebuild8
-rw-r--r--app-i18n/ibus-anthy/ibus-anthy-1.2.3.ebuild9
-rw-r--r--app-i18n/ibus-anthy/ibus-anthy-1.2.4.ebuild9
-rw-r--r--app-i18n/ibus-anthy/ibus-anthy-1.2.5.ebuild9
6 files changed, 33 insertions, 26 deletions
diff --git a/app-i18n/ibus-anthy/ChangeLog b/app-i18n/ibus-anthy/ChangeLog
index 936dd48d69ef..13cc4c46d98a 100644
--- a/app-i18n/ibus-anthy/ChangeLog
+++ b/app-i18n/ibus-anthy/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-i18n/ibus-anthy
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ChangeLog,v 1.26 2010/12/01 16:42:24 matsuu Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ChangeLog,v 1.27 2011/04/16 22:12:10 arfrever Exp $
+
+ 16 Apr 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ ibus-anthy-1.2.0.20100115.ebuild, ibus-anthy-1.2.1.ebuild,
+ ibus-anthy-1.2.3.ebuild, ibus-anthy-1.2.4.ebuild, ibus-anthy-1.2.5.ebuild:
+ Fix deprecation warnings.
*ibus-anthy-1.2.5 (01 Dec 2010)
diff --git a/app-i18n/ibus-anthy/ibus-anthy-1.2.0.20100115.ebuild b/app-i18n/ibus-anthy/ibus-anthy-1.2.0.20100115.ebuild
index 993c1aff3de9..cca4eb71a886 100644
--- a/app-i18n/ibus-anthy/ibus-anthy-1.2.0.20100115.ebuild
+++ b/app-i18n/ibus-anthy/ibus-anthy-1.2.0.20100115.ebuild
@@ -1,6 +1,8 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-1.2.0.20100115.ebuild,v 1.4 2010/08/11 18:19:18 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-1.2.0.20100115.ebuild,v 1.5 2011/04/16 22:12:10 arfrever Exp $
+
+EAPI=3
inherit eutils python
@@ -22,16 +24,13 @@ DEPEND="${RDEPEND}
dev-util/pkgconfig
nls? ( >=sys-devel/gettext-0.16.1 )"
-src_unpack() {
- unpack ${A}
- cd "${S}"
+src_prepare() {
mv py-compile py-compile.orig || die
ln -s "$(type -P true)" py-compile || die
}
-src_compile() {
- econf $(use_enable nls) || die
- emake || die
+src_configure() {
+ econf $(use_enable nls)
}
src_install() {
diff --git a/app-i18n/ibus-anthy/ibus-anthy-1.2.1.ebuild b/app-i18n/ibus-anthy/ibus-anthy-1.2.1.ebuild
index ad13d24c15e1..2db8c73eab20 100644
--- a/app-i18n/ibus-anthy/ibus-anthy-1.2.1.ebuild
+++ b/app-i18n/ibus-anthy/ibus-anthy-1.2.1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-1.2.1.ebuild,v 1.2 2010/08/11 18:19:18 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-1.2.1.ebuild,v 1.3 2011/04/16 22:12:10 arfrever Exp $
-EAPI=2
+EAPI=3
PYTHON_DEPEND="2:2.5"
inherit eutils python
@@ -30,7 +30,7 @@ src_prepare() {
}
src_configure() {
- econf $(use_enable nls) || die
+ econf $(use_enable nls)
}
src_install() {
diff --git a/app-i18n/ibus-anthy/ibus-anthy-1.2.3.ebuild b/app-i18n/ibus-anthy/ibus-anthy-1.2.3.ebuild
index 5f9da3bb6c07..20e74820336a 100644
--- a/app-i18n/ibus-anthy/ibus-anthy-1.2.3.ebuild
+++ b/app-i18n/ibus-anthy/ibus-anthy-1.2.3.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-1.2.3.ebuild,v 1.1 2010/10/27 16:03:38 matsuu Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-1.2.3.ebuild,v 1.2 2011/04/16 22:12:10 arfrever Exp $
-EAPI=2
+EAPI=3
PYTHON_DEPEND="2:2.5"
inherit eutils python
@@ -26,6 +26,7 @@ DEPEND="${RDEPEND}
pkg_setup() {
python_set_active_version 2
+ python_pkg_setup
}
src_prepare() {
@@ -36,7 +37,7 @@ src_prepare() {
}
src_configure() {
- econf $(use_enable nls) || die
+ econf $(use_enable nls)
}
src_install() {
diff --git a/app-i18n/ibus-anthy/ibus-anthy-1.2.4.ebuild b/app-i18n/ibus-anthy/ibus-anthy-1.2.4.ebuild
index 59902f0f2ab9..4c8aca32bb6b 100644
--- a/app-i18n/ibus-anthy/ibus-anthy-1.2.4.ebuild
+++ b/app-i18n/ibus-anthy/ibus-anthy-1.2.4.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-1.2.4.ebuild,v 1.1 2010/10/27 16:21:57 matsuu Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-1.2.4.ebuild,v 1.2 2011/04/16 22:12:10 arfrever Exp $
-EAPI=2
+EAPI=3
PYTHON_DEPEND="2:2.5"
inherit eutils python
@@ -26,6 +26,7 @@ DEPEND="${RDEPEND}
pkg_setup() {
python_set_active_version 2
+ python_pkg_setup
}
src_prepare() {
@@ -36,7 +37,7 @@ src_prepare() {
}
src_configure() {
- econf $(use_enable nls) || die
+ econf $(use_enable nls)
}
src_install() {
diff --git a/app-i18n/ibus-anthy/ibus-anthy-1.2.5.ebuild b/app-i18n/ibus-anthy/ibus-anthy-1.2.5.ebuild
index 977192a55371..f2c2ffeba4ac 100644
--- a/app-i18n/ibus-anthy/ibus-anthy-1.2.5.ebuild
+++ b/app-i18n/ibus-anthy/ibus-anthy-1.2.5.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-1.2.5.ebuild,v 1.1 2010/12/01 16:42:24 matsuu Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-1.2.5.ebuild,v 1.2 2011/04/16 22:12:10 arfrever Exp $
-EAPI=2
+EAPI=3
PYTHON_DEPEND="2:2.5"
inherit eutils python
@@ -26,6 +26,7 @@ DEPEND="${RDEPEND}
pkg_setup() {
python_set_active_version 2
+ python_pkg_setup
}
src_prepare() {
@@ -36,7 +37,7 @@ src_prepare() {
}
src_configure() {
- econf $(use_enable nls) || die
+ econf $(use_enable nls)
}
src_install() {