diff options
author | Andreas Proschofsky <suka@gentoo.org> | 2007-07-23 12:14:36 +0000 |
---|---|---|
committer | Andreas Proschofsky <suka@gentoo.org> | 2007-07-23 12:14:36 +0000 |
commit | 7eab3b3fb4d82cf2fa107c61325034a9ccdf2168 (patch) | |
tree | 4c931b7dc5c7babc98cc3abe6bdebf4facff34e4 /app-admin/conduit | |
parent | Initial commit, starting with my own giver ebuilds (diff) | |
download | suka-7eab3b3fb4d82cf2fa107c61325034a9ccdf2168.tar.gz suka-7eab3b3fb4d82cf2fa107c61325034a9ccdf2168.tar.bz2 suka-7eab3b3fb4d82cf2fa107c61325034a9ccdf2168.zip |
Add conduit and evolution-python (for more dataproviders)
svn path=/; revision=2
Diffstat (limited to 'app-admin/conduit')
-rw-r--r-- | app-admin/conduit/conduit-0.3.2.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/app-admin/conduit/conduit-0.3.2.ebuild b/app-admin/conduit/conduit-0.3.2.ebuild new file mode 100644 index 0000000..f6906c5 --- /dev/null +++ b/app-admin/conduit/conduit-0.3.2.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +inherit gnome2 python multilib + +DESCRIPTION="A Desktop Synchronization Solution for GNOME" +HOMEPAGE="http://www.conduit-project.org/" +SRC_URI="http://files.conduit-project.org/releases/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="python" + +RDEPEND=">=virtual/python-2.4 + >=x11-libs/gtk+-2.10 + >=sys-apps/dbus-0.93 + >=dev-python/pygtk-2.10 + dev-python/pyxml + dev-python/vobject + dev-python/dbus-python + dev-python/pygoocanvas + dev-python/gnome-python + dev-python/python-dateutil + dev-python/elementtree + python? ( dev-python/evolution-python )" +DEPEND="${RDEPEND} + sys-devel/gettext + >=dev-util/intltool-0.35 + >=dev-util/pkgconfig-0.19" + +pkg_postinst() { + python_version + python_mod_optimize /usr/$(get_libdir)/python${PYVER}/site-packages/conduit +} + +pkg_postrm() { + python_version + python_mod_cleanup +} |