diff options
author | 2010-06-13 16:34:00 +0000 | |
---|---|---|
committer | 2010-06-13 16:34:00 +0000 | |
commit | a0b6240bcf39aea3a09d68bb8e767d58eca3e2bd (patch) | |
tree | dd32394ff7127a2b9c4b67272d2a442b58e77380 /app-accessibility/accerciser | |
parent | x86 stable wrt bug #321931 (diff) | |
download | historical-a0b6240bcf39aea3a09d68bb8e767d58eca3e2bd.tar.gz historical-a0b6240bcf39aea3a09d68bb8e767d58eca3e2bd.tar.bz2 historical-a0b6240bcf39aea3a09d68bb8e767d58eca3e2bd.zip |
Add new version for Gnome 2.30
Package-Manager: portage-2.1.8.3/cvs/Linux x86_64
Diffstat (limited to 'app-accessibility/accerciser')
-rw-r--r-- | app-accessibility/accerciser/ChangeLog | 7 | ||||
-rw-r--r-- | app-accessibility/accerciser/accerciser-1.10.1.ebuild | 58 |
2 files changed, 64 insertions, 1 deletions
diff --git a/app-accessibility/accerciser/ChangeLog b/app-accessibility/accerciser/ChangeLog index 50aab5f82f8b..9c8f8339be45 100644 --- a/app-accessibility/accerciser/ChangeLog +++ b/app-accessibility/accerciser/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-accessibility/accerciser # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/accerciser/ChangeLog,v 1.8 2010/03/07 15:36:09 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/accerciser/ChangeLog,v 1.9 2010/06/13 16:27:52 pacho Exp $ + +*accerciser-1.10.1 (13 Jun 2010) + + 13 Jun 2010; Pacho Ramos <pacho@gentoo.org> +accerciser-1.10.1.ebuild: + Add new version for Gnome 2.30. 07 Mar 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> accerciser-1.6.1.ebuild, accerciser-1.8.0.ebuild: diff --git a/app-accessibility/accerciser/accerciser-1.10.1.ebuild b/app-accessibility/accerciser/accerciser-1.10.1.ebuild new file mode 100644 index 000000000000..fd549d57859b --- /dev/null +++ b/app-accessibility/accerciser/accerciser-1.10.1.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/accerciser/accerciser-1.10.1.ebuild,v 1.1 2010/06/13 16:27:52 pacho Exp $ + +PYTHON_DEPEND="2" # Support for Python 3 not verified +GCONF_DEBUG="no" + +inherit gnome2 python + +DESCRIPTION="Interactive Python accessibility explorer" +HOMEPAGE="http://live.gnome.org/Accerciser" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DOCS="AUTHORS COPYING ChangeLog NEWS README" + +RDEPEND="dev-python/ipython + dev-python/pygtk + dev-python/pygobject + dev-python/pycairo + dev-python/libgnome-python + dev-python/libwnck-python + dev-python/gtksourceview-python + dev-python/gconf-python + dev-python/librsvg-python + >=gnome-extra/at-spi-1.7 + >=dev-libs/glib-2" +DEPEND="${RDEPEND} + sys-devel/gettext + >=dev-util/intltool-0.35 + app-text/scrollkeeper + >=app-text/gnome-doc-utils-0.12" + +pkg_setup() { + G2CONF="${G2CONF} --without-pyreqs" +} + +src_unpack() { + gnome2_src_unpack + + # disable pyc compiling + mv "${S}"/py-compile "${S}"/py-compile.orig + ln -s $(type -P true) "${S}"/py-compile +} + +pkg_postinst() { + gnome2_pkg_postinst + python_need_rebuild + python_mod_optimize "$(python_get_sitedir)/accerciser" +} + +pkg_postrm() { + gnome2_pkg_postrm + python_mod_cleanup /usr/$(get_libdir)/python*/site-packages/accerciser +} |