public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Ole Reifschneider" <tranquility@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/gnome:master commit in: gnome-extra/nautilus-tracker-tags/, gnome-extra/nautilus-tracker-tags/files/
Date: Fri,  8 Apr 2016 20:47:12 +0000 (UTC)	[thread overview]
Message-ID: <1459633832.5dbfbd3d6dddf960126cbb6750e2cd3630274132.tranquility@gentoo> (raw)

commit:     5dbfbd3d6dddf960126cbb6750e2cd3630274132
Author:     Ole Reifschneider <tranquility <AT> gentoo <DOT> org>
AuthorDate: Sat Apr  2 21:50:32 2016 +0000
Commit:     Ole Reifschneider <tranquility <AT> gentoo <DOT> org>
CommitDate: Sat Apr  2 21:50:32 2016 +0000
URL:        https://gitweb.gentoo.org/proj/gnome.git/commit/?id=5dbfbd3d

gnome-extra/nautilus-tracker-tags: Bump version to 1.8.0

Package-Manager: portage-2.2.28
Manifest-Sign-Key: 0xE9E568677E8B4D42

 .../nautilus-tracker-tags/files/0.12.5-Makefile    | 15 ++++++++
 gnome-extra/nautilus-tracker-tags/metadata.xml     |  8 +++++
 .../nautilus-tracker-tags-1.8.0.ebuild             | 41 ++++++++++++++++++++++
 3 files changed, 64 insertions(+)

diff --git a/gnome-extra/nautilus-tracker-tags/files/0.12.5-Makefile b/gnome-extra/nautilus-tracker-tags/files/0.12.5-Makefile
new file mode 100644
index 0000000..c2aecec
--- /dev/null
+++ b/gnome-extra/nautilus-tracker-tags/files/0.12.5-Makefile
@@ -0,0 +1,15 @@
+EXTENSIONDIR := $(shell pkg-config --variable=extensiondir libnautilus-extension)
+CFLAGS := -fPIC $(CFLAGS) $(shell pkg-config --cflags glib-2.0 gtk+-3.0 libnautilus-extension tracker-sparql-$(TRACKER_API))
+LIBS := $(shell pkg-config --libs glib-2.0 gtk+-3.0 libnautilus-extension tracker-sparql-$(TRACKER_API))
+RPATH := $(shell pkg-config --variable=libdir tracker-sparql-$(TRACKER_API))/tracker-$(TRACKER_API)
+INSTALL = install
+
+object_files = tracker-tags-extension.o tracker-tags-utils.o tracker-tags-view.o
+
+libnautilus-tracker-tags.so: $(object_files)
+	$(CC) -shared -Wl,-rpath=$(RPATH) -Wl,-soname=$@ $(LDFLAGS) $^ $(LIBS) -o $@
+
+install: libnautilus-tracker-tags.so
+	$(INSTALL) -d $(DESTDIR)$(EXTENSIONDIR)/
+	$(INSTALL) $^ $(DESTDIR)$(EXTENSIONDIR)/
+

diff --git a/gnome-extra/nautilus-tracker-tags/metadata.xml b/gnome-extra/nautilus-tracker-tags/metadata.xml
new file mode 100644
index 0000000..3998080
--- /dev/null
+++ b/gnome-extra/nautilus-tracker-tags/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer type="project">
+	<email>gnome@gentoo.org</email>
+	<name>Gentoo GNOME Desktop</name>
+</maintainer>
+</pkgmetadata>

diff --git a/gnome-extra/nautilus-tracker-tags/nautilus-tracker-tags-1.8.0.ebuild b/gnome-extra/nautilus-tracker-tags/nautilus-tracker-tags-1.8.0.ebuild
new file mode 100644
index 0000000..b773e55
--- /dev/null
+++ b/gnome-extra/nautilus-tracker-tags/nautilus-tracker-tags-1.8.0.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+GNOME_ORG_MODULE="tracker"
+
+inherit gnome.org toolchain-funcs
+
+DESCRIPTION="Nautilus extension to tag files for Tracker"
+HOMEPAGE="https://wiki.gnome.org/Projects/Tracker"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE=""
+
+COMMON_DEPEND="
+	~app-misc/tracker-${PV}
+	>=dev-libs/glib-2.38:2
+	>=gnome-base/nautilus-2.90
+	x11-libs/gtk+:3
+"
+RDEPEND="${COMMON_DEPEND}
+	!<app-misc/tracker-0.12.5-r1[nautilus]
+"
+# Before tracker-0.12.5-r1, nautilus-tracker-tags was part of tracker
+DEPEND="${COMMON_DEPEND}"
+
+S="${S}/src/plugins/nautilus"
+
+pkg_setup() {
+	tc-export CC
+	export TRACKER_API=1.0
+}
+
+src_prepare() {
+	cp "${FILESDIR}/0.12.5-Makefile" Makefile || die "cp failed"
+	# config.h is not used, but is included in every source file...
+	sed -e 's:#include "config.h"::' -i *.c *.h || die "sed failed"
+}


             reply	other threads:[~2016-04-08 20:47 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-08 20:47 Ole Reifschneider [this message]
  -- strict thread matches above, loose matches on Subject: below --
2018-01-12 13:41 [gentoo-commits] proj/gnome:master commit in: gnome-extra/nautilus-tracker-tags/, gnome-extra/nautilus-tracker-tags/files/ Dennis Lamm

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1459633832.5dbfbd3d6dddf960126cbb6750e2cd3630274132.tranquility@gentoo \
    --to=tranquility@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox