diff options
author | Justin Lecher <jlec@gentoo.org> | 2013-04-30 16:42:12 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2013-04-30 16:42:12 +0000 |
commit | cfe8880898254a91ab2c162ecb0f4ae2f89c6fcc (patch) | |
tree | e2d088485e9306b5b6e7c1046d8b29c4b72b5dcc /gnome-extra/zeitgeist/zeitgeist-0.9.12-r1.ebuild | |
parent | gnome-extra/zeitgeist-datasources: vala_depend is a function not a variable; ... (diff) | |
download | gentoo-2-cfe8880898254a91ab2c162ecb0f4ae2f89c6fcc.tar.gz gentoo-2-cfe8880898254a91ab2c162ecb0f4ae2f89c6fcc.tar.bz2 gentoo-2-cfe8880898254a91ab2c162ecb0f4ae2f89c6fcc.zip |
gnome-extra/zeitgeist: Add bashcompletion
(Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key 8009D6F070EB7916)
Diffstat (limited to 'gnome-extra/zeitgeist/zeitgeist-0.9.12-r1.ebuild')
-rw-r--r-- | gnome-extra/zeitgeist/zeitgeist-0.9.12-r1.ebuild | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/gnome-extra/zeitgeist/zeitgeist-0.9.12-r1.ebuild b/gnome-extra/zeitgeist/zeitgeist-0.9.12-r1.ebuild new file mode 100644 index 000000000000..e1a21fefd409 --- /dev/null +++ b/gnome-extra/zeitgeist/zeitgeist-0.9.12-r1.ebuild @@ -0,0 +1,76 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/zeitgeist/zeitgeist-0.9.12-r1.ebuild,v 1.1 2013/04/30 16:42:12 jlec Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_6,2_7} ) +AUTOTOOLS_AUTORECONF=true +VALA_MIN_API_VERSION=0.18 + +inherit autotools-utils bash-completion-r1 eutils python-r1 versionator vala + +DIR_PV=$(get_version_component_range 1-2) +EXT_VER=0.0.13 + +DESCRIPTION="Service to log activities and present to other apps" +HOMEPAGE="http://launchpad.net/zeitgeist/" +SRC_URI="http://launchpad.net/zeitgeist/${DIR_PV}/${PV}/+download/${P}.tar.xz" + +LICENSE="LGPL-2+ LGPL-3+ GPL-2+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="+datahub +dbus downloads-monitor extensions +fts icu introspection nls plugins sql-debug telepathy" + +REQUIRED_USE="downloads-monitor? ( datahub )" + +RDEPEND=" + !gnome-extra/zeitgeist-datahub + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/pygobject:2[${PYTHON_USEDEP}] + dev-python/pyxdg[${PYTHON_USEDEP}] + dev-python/rdflib + media-libs/raptor:2 + >=dev-libs/glib-2.26.0:2 + >=dev-db/sqlite-3.7.11:3 + extensions? ( gnome-extra/zeitgeist-extensions ) + fts? ( dev-libs/xapian[inmemory] ) + icu? ( dev-libs/dee[icu?] ) + introspection? ( dev-libs/gobject-introspection ) + plugins? ( gnome-extra/zeitgeist-datasources ) + telepathy? ( net-libs/telepathy-glib ) +" +DEPEND="${RDEPEND} + $(vala_depend) + virtual/pkgconfig" + +PATCHES=( "${FILESDIR}"/${P}-download_monitor.patch ) + +src_prepare() { + vala_src_prepare + autotools-utils_src_prepare +} + +src_configure() { + local myeconfargs=( + --docdir="${EPREFIX}/usr/share/doc/${PF}" + $(use_enable sql-debug explain-queries) + $(use_enable datahub) + $(use_enable downloads-monitor) + $(use_enable telepathy) + $(use_enable introspection) + $(use_with icu dee-icu) + $(use_with dbus session-bus-services-dir /usr/share/dbus-1/services) + ) + use nls || myeconfargs+=( --disable-nls ) + use fts && myeconfargs+=( --enable-fts ) + autotools-utils_src_configure +} + +src_install() { + autotools-utils_src_install + dobashcomp bash-completion/completions/zeitgeist-daemon + cd python || die + python_moduleinto ${PN} + python_foreach_impl python_domodule *py +} |