diff options
author | Justin Lecher <jlec@gentoo.org> | 2013-06-19 06:32:59 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2013-06-19 06:32:59 +0000 |
commit | 5047d28c955d54d1a9930d3f80b23b6bfd7cf42b (patch) | |
tree | d840c484b1a117c4192accf53cf84ad8dd3a441d /gnome-extra/zeitgeist | |
parent | Drop old. (diff) | |
download | gentoo-2-5047d28c955d54d1a9930d3f80b23b6bfd7cf42b.tar.gz gentoo-2-5047d28c955d54d1a9930d3f80b23b6bfd7cf42b.tar.bz2 gentoo-2-5047d28c955d54d1a9930d3f80b23b6bfd7cf42b.zip |
gnome-extra/zeitgeist: Version Bump, #473702
(Portage version: 2.2.0_alpha180/cvs/Linux x86_64, signed Manifest commit with key 8009D6F070EB7916)
Diffstat (limited to 'gnome-extra/zeitgeist')
-rw-r--r-- | gnome-extra/zeitgeist/ChangeLog | 7 | ||||
-rw-r--r-- | gnome-extra/zeitgeist/zeitgeist-0.9.14.ebuild | 89 |
2 files changed, 95 insertions, 1 deletions
diff --git a/gnome-extra/zeitgeist/ChangeLog b/gnome-extra/zeitgeist/ChangeLog index ff62ac80afd5..2005c4d96c0d 100644 --- a/gnome-extra/zeitgeist/ChangeLog +++ b/gnome-extra/zeitgeist/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for gnome-extra/zeitgeist # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/zeitgeist/ChangeLog,v 1.37 2013/05/29 15:39:03 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/zeitgeist/ChangeLog,v 1.38 2013/06/19 06:32:59 jlec Exp $ + +*zeitgeist-0.9.14 (19 Jun 2013) + + 19 Jun 2013; Justin Lecher <jlec@gentoo.org> +zeitgeist-0.9.14.ebuild: + Version Bump, #473702 29 May 2013; Justin Lecher <jlec@gentoo.org> zeitgeist-0.9.5-r1.ebuild, zeitgeist-0.9.12.ebuild, zeitgeist-0.9.12-r1.ebuild: diff --git a/gnome-extra/zeitgeist/zeitgeist-0.9.14.ebuild b/gnome-extra/zeitgeist/zeitgeist-0.9.14.ebuild new file mode 100644 index 000000000000..436f1aa96eaf --- /dev/null +++ b/gnome-extra/zeitgeist/zeitgeist-0.9.14.ebuild @@ -0,0 +1,89 @@ +# 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.14.ebuild,v 1.1 2013/06/19 06:32:59 jlec Exp $ + +EAPI=5 + +AUTOTOOLS_AUTORECONF=true +PYTHON_COMPAT=( python{2_6,2_7} ) + +VALA_MIN_API_VERSION=0.20 + +inherit autotools-utils bash-completion-r1 eutils python-r1 versionator vala + +DIR_PV=$(get_version_component_range 1-2) + +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=" + ${PYTHON_REQUIRED_USE} + downloads-monitor? ( datahub )" + +RDEPEND=" + ${PYTHON_DEPS} + !gnome-extra/zeitgeist-datahub + dev-libs/json-glib + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/pygobject:2[${PYTHON_USEDEP}] + dev-python/pyxdg[${PYTHON_USEDEP}] + dev-python/rdflib[${PYTHON_USEDEP}] + media-libs/raptor:2 + >=dev-libs/glib-2.26.0:2 + >=dev-db/sqlite-3.7.11:3 + datahub? ( x11-libs/gtk+:3 ) + extensions? ( gnome-extra/zeitgeist-extensions ) + fts? ( dev-libs/xapian[inmemory] ) + icu? ( dev-libs/dee[icu?,${PYTHON_USEDEP}] ) + introspection? ( dev-libs/gobject-introspection ) + plugins? ( gnome-extra/zeitgeist-datasources ) + telepathy? ( net-libs/telepathy-glib ) +" +DEPEND="${RDEPEND} + $(vala_depend) + virtual/pkgconfig" + +src_prepare() { + local PYTHON + python_export_best + sed \ + -e 's:python::g' \ + -i Makefile.am || die + vala_src_prepare + + sed \ + -e "/import/s: python : ${PYTHON} :g" \ + -i configure.ac || die + + 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() { + dobashcomp data/completions/zeitgeist-daemon + autotools-utils_src_install + cd python || die + python_moduleinto ${PN} + python_foreach_impl python_domodule *py +} |