diff options
author | Michael Weber <xmw@gentoo.org> | 2011-11-10 10:27:24 +0000 |
---|---|---|
committer | Michael Weber <xmw@gentoo.org> | 2011-11-10 10:27:24 +0000 |
commit | c87833bc32e80803a5b20a19bdff9537233d6f18 (patch) | |
tree | 28a0641d7201f2ad2c3f18116c29397c375ba138 /dev-vcs/rabbitvcs/rabbitvcs-0.14.1.1.ebuild | |
parent | Marked stable on AMD64 based on arch testing by Agostino "ago" Sarubbo & Elij... (diff) | |
download | historical-c87833bc32e80803a5b20a19bdff9537233d6f18.tar.gz historical-c87833bc32e80803a5b20a19bdff9537233d6f18.tar.bz2 historical-c87833bc32e80803a5b20a19bdff9537233d6f18.zip |
Version bump
Package-Manager: portage-2.1.10.11/cvs/Linux x86_64
Diffstat (limited to 'dev-vcs/rabbitvcs/rabbitvcs-0.14.1.1.ebuild')
-rw-r--r-- | dev-vcs/rabbitvcs/rabbitvcs-0.14.1.1.ebuild | 88 |
1 files changed, 0 insertions, 88 deletions
diff --git a/dev-vcs/rabbitvcs/rabbitvcs-0.14.1.1.ebuild b/dev-vcs/rabbitvcs/rabbitvcs-0.14.1.1.ebuild deleted file mode 100644 index 69f7e1b8cf52..000000000000 --- a/dev-vcs/rabbitvcs/rabbitvcs-0.14.1.1.ebuild +++ /dev/null @@ -1,88 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/rabbitvcs/rabbitvcs-0.14.1.1.ebuild,v 1.3 2011/10/24 05:45:29 tetromino Exp $ - -EAPI=2 - -PYTHON_DEPEND="2:2.5" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="2.4 3.*" - -inherit gnome2-utils distutils - -DESCRIPTION="Integrated version control support for your desktop" -HOMEPAGE="http://rabbitvcs.org" -SRC_URI="http://rabbitvcs.googlecode.com/files/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="cli diff gedit git nautilus spell thunar" - -RDEPEND="dev-python/configobj - dev-python/pygobject:2 - dev-python/pygtk - dev-python/pysvn - dev-python/simplejson - diff? ( dev-util/meld ) - gedit? ( app-editors/gedit ) - git? ( dev-python/dulwich ) - nautilus? ( >=dev-python/nautilus-python-0.7.0 - dev-python/dbus-python - dev-python/gnome-vfs-python ) - spell? ( dev-python/gtkspell-python ) - thunar? ( dev-python/thunarx-python - dev-python/dbus-python )" - -src_prepare() { - python_convert_shebangs -r 2 . - - distutils_src_prepare - - # we should not do gtk-update-icon-cache from setup script - # we prefer portage for that - sed -e 's/"install"/"fakeinstall"/' -i "${S}/setup.py" || die -} - -src_install() { - distutils_src_install - - if use cli ; then - dobin clients/cli/${PN} || die - fi - if use gedit ; then - insinto /usr/$(get_libdir)/gedit-2/plugins - doins clients/gedit/${PN}-plugin.py || die - doins clients/gedit/${PN}.gedit-plugin || die - fi - if use nautilus ; then - insinto /usr/$(get_libdir)/nautilus/extensions-2.0/python - doins clients/nautilus/RabbitVCS.py || die - fi - if use thunar ; then - has_version '>=xfce-base/thunar-1.1.0' && tv=2 || tv=1 - insinto "/usr/$(get_libdir)/thunarx-${tv}/python" - doins clients/thunar/RabbitVCS.py || die - fi -} - -pkg_preinst() { - gnome2_icon_savelist -} - -pkg_postinst() { - distutils_pkg_postinst - gnome2_icon_cache_update - - elog "You should restart file manager to changes take effect:" - use nautilus && elog "\$ nautilus -q && nautilus &" - use thunar && elog "\$ thunar -q && thunar &" - elog "" - elog "Also you should really look at known issues page:" - elog "http://wiki.rabbitvcs.org/wiki/support/known-issues" -} - -pkg_postrm() { - distutils_pkg_postrm - gnome2_icon_cache_update -} |