diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2009-11-01 18:52:39 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2009-11-01 18:52:39 +0000 |
commit | 96d24bce89d1530ea2a4f3d3baa930c14091e5fc (patch) | |
tree | e4521b8ccd510772043e77a84dbccbeb3d6c395b /app-accessibility/accerciser/accerciser-1.6.1.ebuild | |
parent | Automated update of use.local.desc (diff) | |
download | historical-96d24bce89d1530ea2a4f3d3baa930c14091e5fc.tar.gz historical-96d24bce89d1530ea2a4f3d3baa930c14091e5fc.tar.bz2 historical-96d24bce89d1530ea2a4f3d3baa930c14091e5fc.zip |
revert unintended removal.
Diffstat (limited to 'app-accessibility/accerciser/accerciser-1.6.1.ebuild')
-rw-r--r-- | app-accessibility/accerciser/accerciser-1.6.1.ebuild | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/app-accessibility/accerciser/accerciser-1.6.1.ebuild b/app-accessibility/accerciser/accerciser-1.6.1.ebuild new file mode 100644 index 000000000000..2e82b43e71fc --- /dev/null +++ b/app-accessibility/accerciser/accerciser-1.6.1.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/accerciser/accerciser-1.6.1.ebuild,v 1.5 2009/11/01 18:35:31 eva Exp $ + +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-lang/python-2.4 + 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/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 + + # Fix intltoolize broken file, see upstream #577133 + sed "s:'\^\$\$lang\$\$':\^\$\$lang\$\$:g" -i po/Makefile.in.in || die "sed failed" +} + +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 +} |