diff options
author | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-05-20 08:41:00 +0000 |
---|---|---|
committer | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-05-20 08:41:00 +0000 |
commit | fc2a32f9eaae914dc8d009df5b8dae68d3d0e4d7 (patch) | |
tree | c2aa2001092f6ed28358684535c3b75b442d970d /app-accessibility | |
parent | Introduce debug USE flag, fixes #415769 by A.C.Heron <acheron@front.ru> (diff) | |
download | gentoo-2-fc2a32f9eaae914dc8d009df5b8dae68d3d0e4d7.tar.gz gentoo-2-fc2a32f9eaae914dc8d009df5b8dae68d3d0e4d7.tar.bz2 gentoo-2-fc2a32f9eaae914dc8d009df5b8dae68d3d0e4d7.zip |
Version bump for gnome-3.4, improves ipython-0.12 compatibility.
(Portage version: 2.2.0_alpha107/cvs/Linux x86_64)
Diffstat (limited to 'app-accessibility')
-rw-r--r-- | app-accessibility/accerciser/ChangeLog | 8 | ||||
-rw-r--r-- | app-accessibility/accerciser/accerciser-3.4.1.ebuild | 62 |
2 files changed, 69 insertions, 1 deletions
diff --git a/app-accessibility/accerciser/ChangeLog b/app-accessibility/accerciser/ChangeLog index 5fbbb30b32f7..3da7f524d90a 100644 --- a/app-accessibility/accerciser/ChangeLog +++ b/app-accessibility/accerciser/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-accessibility/accerciser # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/accerciser/ChangeLog,v 1.26 2012/02/10 04:04:50 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/accerciser/ChangeLog,v 1.27 2012/05/20 08:41:00 tetromino Exp $ + +*accerciser-3.4.1 (20 May 2012) + + 20 May 2012; Alexandre Rostovtsev <tetromino@gentoo.org> + +accerciser-3.4.1.ebuild: + Version bump for gnome-3.4, improves ipython-0.12 compatibility. 10 Feb 2012; Patrick Lauer <patrick@gentoo.org> accerciser-1.12.1.ebuild, accerciser-3.2.1.ebuild: diff --git a/app-accessibility/accerciser/accerciser-3.4.1.ebuild b/app-accessibility/accerciser/accerciser-3.4.1.ebuild new file mode 100644 index 000000000000..80ecc0b66de4 --- /dev/null +++ b/app-accessibility/accerciser/accerciser-3.4.1.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/accerciser/accerciser-3.4.1.ebuild,v 1.1 2012/05/20 08:41:00 tetromino Exp $ + +EAPI="4" +GCONF_DEBUG="no" +PYTHON_DEPEND="2:2.5" +PYTHON_USE_WITH="xml" + +inherit gnome2 python + +DESCRIPTION="Interactive Python accessibility explorer" +HOMEPAGE="http://live.gnome.org/Accerciser" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=app-accessibility/at-spi2-core-2.1.5:2 + >=dev-python/pygobject-2.90.3:3 + >=x11-libs/gtk+-3.1.13:3[introspection] + + dev-libs/atk[introspection] + >=dev-libs/glib-2.28:2 + dev-libs/gobject-introspection + >=dev-python/ipython-0.11 + >=dev-python/pyatspi-2.1.5 + dev-python/pycairo + x11-libs/gdk-pixbuf[introspection] + x11-libs/libwnck:3[introspection] + x11-libs/pango[introspection]" +DEPEND="${RDEPEND} + >=app-text/gnome-doc-utils-0.17.3 + app-text/scrollkeeper + >=dev-util/intltool-0.35 + sys-devel/gettext + virtual/pkgconfig" + +pkg_setup() { + DOCS="AUTHORS ChangeLog NEWS README" + python_set_active_version 2 + python_pkg_setup +} + +src_prepare() { + gnome2_src_prepare + + python_clean_py-compile_files + python_convert_shebangs -r 2 . +} + +pkg_postinst() { + gnome2_pkg_postinst + python_need_rebuild + python_mod_optimize "${PN}" /usr/share/${PN} +} + +pkg_postrm() { + gnome2_pkg_postrm + python_mod_cleanup "${PN}" /usr/share/${PN} +} |