pacho       15/01/14 13:21:19

  Modified:             ChangeLog
  Added:                synapse-0.2.10-r1.ebuild
  Log:
  Apply opensuse and Arch patches to fix support for current gnome, newer vala 
and newer libgee (#527854)
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
A188FBD4)

Revision  Changes    Path
1.24                 gnome-extra/synapse/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/synapse/ChangeLog?rev=1.24&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/synapse/ChangeLog?rev=1.24&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/synapse/ChangeLog?r1=1.23&r2=1.24

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/synapse/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog   19 Jan 2014 15:20:08 -0000      1.23
+++ ChangeLog   14 Jan 2015 13:21:19 -0000      1.24
@@ -1,6 +1,18 @@
 # ChangeLog for gnome-extra/synapse
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/synapse/ChangeLog,v 1.23 
2014/01/19 15:20:08 jlec Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/synapse/ChangeLog,v 1.24 
2015/01/14 13:21:19 pacho Exp $
+
+*synapse-0.2.10-r1 (14 Jan 2015)
+
+  14 Jan 2015; Pacho Ramos <[email protected]>
+  +files/synapse-0.2.10-check-null-exec.patch,
+  +files/synapse-0.2.10-fix-border-painting.patch,
+  +files/synapse-0.2.10-fix-check-desktop.patch,
+  +files/synapse-0.2.10-gnome-3.10.patch,
+  +files/synapse-0.2.10-libgee-0.8.patch, 
+files/synapse-0.2.10-zeitgeist.patch,
+  +synapse-0.2.10-r1.ebuild:
+  Apply opensuse and Arch patches to fix support for current gnome, newer vala
+  and newer libgee (#527854)
 
   19 Jan 2014; Justin Lecher <[email protected]> synapse-0.2.10.ebuild:
   Set max version for vala
@@ -91,4 +103,3 @@
   02 Mar 2011; Kevin McCarthy <[email protected]> +synapse-0.2.4.ebuild,
   +metadata.xml:
   Initial commit. Ebuild by [email protected].
-



1.1                  gnome-extra/synapse/synapse-0.2.10-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/synapse/synapse-0.2.10-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/synapse/synapse-0.2.10-r1.ebuild?rev=1.1&content-type=text/plain

Index: synapse-0.2.10-r1.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/gnome-extra/synapse/synapse-0.2.10-r1.ebuild,v 1.1 
2015/01/14 13:21:19 pacho Exp $

EAPI=5
GCONF_DEBUG="no" # gnome2_src_configure is not being used
AUTOTOOLS_AUTORECONF=true

inherit gnome2 autotools-utils vala

DESCRIPTION="A program launcher in the style of GNOME Do"
HOMEPAGE="http://launchpad.net/synapse-project/";
SRC_URI="http://launchpad.net/synapse-project/${PV%.*}/${PV}/+download/${P}.tar.gz";

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
# "ayatana" support pending on GTK+-3.x version of synapse wrt #411613
IUSE="plugins +zeitgeist"

RDEPEND="
        dev-libs/libgee:0.8
        dev-libs/glib:2
        dev-libs/json-glib
        dev-libs/libunique:1
        sys-apps/dbus
        x11-libs/cairo
        x11-libs/gdk-pixbuf:2
        x11-libs/gtkhotkey
        x11-libs/gtk+:2
        x11-libs/libnotify
        x11-libs/pango
        x11-themes/gnome-icon-theme
        plugins? ( net-libs/rest )
        zeitgeist? (
                dev-libs/libzeitgeist
                gnome-extra/zeitgeist
                gnome-extra/zeitgeist-extensions
                || ( gnome-extra/zeitgeist[fts] 
gnome-extra/zeitgeist-extensions[fts] )
                )"
        #ayatana? ( dev-libs/libappindicator )
DEPEND="${RDEPEND}
        $(vala_depend)
        dev-util/intltool
        virtual/pkgconfig"

PATCHES=(
        "${FILESDIR}"/${PN}-0.2.8.2-underlinking.patch

        # Don't crash on empty string (from Arch)
        "${FILESDIR}"/${PN}-0.2.10-check-null-exec.patch

        # XDG_CURRENT_DESKTOP fix (from Arch)
        "${FILESDIR}"/${PN}-0.2.10-fix-check-desktop.patch

        # Fix newer gnome support (from OpenSuSE)
        "${FILESDIR}"/${PN}-0.2.10-gnome-3.10.patch

        # Port to gee-0.8 (from Arch)
        "${FILESDIR}"/${PN}-0.2.10-libgee-0.8.patch

        # Fix border painting (from OpenSuSE)
        "${FILESDIR}"/${PN}-0.2.10-fix-border-painting.patch

        "${FILESDIR}"/${PN}-0.2.10-zeitgeist.patch
)

src_prepare() {
        sed -i -e 's/GNOME/GNOME;GTK/' data/synapse.desktop.in || die
        vala_src_prepare
        autotools-utils_src_prepare
}

src_configure() {
        local myeconfargs=(
                --enable-indicator=no
                $(use_enable plugins librest yes)
                $(use_enable zeitgeist)
                )
        autotools-utils_src_configure
}




Reply via email to