diff options
author | Kevin McCarthy <signals@gentoo.org> | 2011-03-02 02:03:10 +0000 |
---|---|---|
committer | Kevin McCarthy <signals@gentoo.org> | 2011-03-02 02:03:10 +0000 |
commit | c7be6c89e152375c7ea42d16cb0cedcc6c8f513b (patch) | |
tree | 5f29cc7783d78adc08aa15f83349164880961776 /gnome-extra/synapse | |
parent | New ebuild gnome-extra/zeitgeist-datahub (diff) | |
download | historical-c7be6c89e152375c7ea42d16cb0cedcc6c8f513b.tar.gz historical-c7be6c89e152375c7ea42d16cb0cedcc6c8f513b.tar.bz2 historical-c7be6c89e152375c7ea42d16cb0cedcc6c8f513b.zip |
New ebuild gnome-extra/synapse
Package-Manager: portage-2.2.0_alpha25/cvs/Linux x86_64
Diffstat (limited to 'gnome-extra/synapse')
-rw-r--r-- | gnome-extra/synapse/ChangeLog | 10 | ||||
-rw-r--r-- | gnome-extra/synapse/metadata.xml | 9 | ||||
-rw-r--r-- | gnome-extra/synapse/synapse-0.2.4.ebuild | 55 |
3 files changed, 74 insertions, 0 deletions
diff --git a/gnome-extra/synapse/ChangeLog b/gnome-extra/synapse/ChangeLog new file mode 100644 index 000000000000..1305cae8f206 --- /dev/null +++ b/gnome-extra/synapse/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for gnome-extra/synapse +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/synapse/ChangeLog,v 1.1 2011/03/02 02:03:10 signals Exp $ + +*synapse-0.2.4 (02 Mar 2011) + + 02 Mar 2011; Kevin McCarthy <signals@gentoo.org> +synapse-0.2.4.ebuild, + +metadata.xml: + Initial commit. Ebuild by signals@gentoo.org. + diff --git a/gnome-extra/synapse/metadata.xml b/gnome-extra/synapse/metadata.xml new file mode 100644 index 000000000000..57b20782f75d --- /dev/null +++ b/gnome-extra/synapse/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>desktop-misc</herd> + <maintainer> + <email>signals@gentoo.org</email> + <name>Kevin McCarthy</name> + </maintainer> +</pkgmetadata> diff --git a/gnome-extra/synapse/synapse-0.2.4.ebuild b/gnome-extra/synapse/synapse-0.2.4.ebuild new file mode 100644 index 000000000000..9e5682e9e3fa --- /dev/null +++ b/gnome-extra/synapse/synapse-0.2.4.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/synapse/synapse-0.2.4.ebuild,v 1.1 2011/03/02 02:03:10 signals Exp $ + +EAPI=4 +inherit gnome2-utils + +DESCRIPTION="A program launcher in the style of GNOME Do" +HOMEPAGE="http://launchpad.net/synapse-project" +SRC_URI="http://launchpad.net/synapse-project/0.2/${PV}/+download/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-lang/vala:0.12 + x11-libs/gtkhotkey + dev-libs/libgee + dev-libs/json-glib + x11-libs/gtk+:2 + dev-libs/glib:2 + x11-libs/libnotify + dev-libs/libunique + gnome-extra/zeitgeist[fts] + dev-libs/libzeitgeist + dev-libs/dbus-glib + sys-apps/dbus + x11-libs/cairo + x11-libs/gdk-pixbuf + x11-libs/gtkhotkey + x11-libs/pango" +DEPEND="${RDEPEND} + dev-util/pkgconfig + dev-util/intltool" + +pkg_preinst() { + gnome2_icon_savelist +} + +src_prepare() { + sed -i -e 's/GNOME/GNOME;GTK/' data/synapse.desktop.in +} + +src_configure() { + econf VALAC="$(type -P valac-0.12)" +} + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +} |