From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 230E2139085 for ; Mon, 9 Jan 2017 21:11:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 41540E0C0E; Mon, 9 Jan 2017 21:11:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 04FF5E0C0E for ; Mon, 9 Jan 2017 21:11:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 862323413FD for ; Mon, 9 Jan 2017 21:11:31 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A70582624 for ; Mon, 9 Jan 2017 21:11:29 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1483996275.80ba07d5250ba5ddd08568d10934023bbb558016.sping@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/gegl/, media-libs/gegl/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/gegl/files/gegl-0.2.0-underlinking.patch media-libs/gegl/gegl-0.2.0-r2.ebuild X-VCS-Directories: media-libs/gegl/ media-libs/gegl/files/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 80ba07d5250ba5ddd08568d10934023bbb558016 X-VCS-Branch: master Date: Mon, 9 Jan 2017 21:11:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b33e9d45-19eb-4e78-9fad-049b52d1a1eb X-Archives-Hash: c186c6e3e80c40c1f8800e8bf73e5077 commit: 80ba07d5250ba5ddd08568d10934023bbb558016 Author: Sebastian Pipping gentoo org> AuthorDate: Mon Jan 9 20:58:19 2017 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Mon Jan 9 21:11:15 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80ba07d5 media-libs/gegl: Fix linking (bug #605216) Package-Manager: Portage-2.3.3, Repoman-2.3.1 .../gegl/files/gegl-0.2.0-underlinking.patch | 38 ++++++++++++++++++++++ media-libs/gegl/gegl-0.2.0-r2.ebuild | 5 ++- 2 files changed, 42 insertions(+), 1 deletion(-) diff --git a/media-libs/gegl/files/gegl-0.2.0-underlinking.patch b/media-libs/gegl/files/gegl-0.2.0-underlinking.patch new file mode 100644 index 00000000..4468f38 --- /dev/null +++ b/media-libs/gegl/files/gegl-0.2.0-underlinking.patch @@ -0,0 +1,38 @@ +From db19965ad957edee3c2ef3e321c3904b436749da Mon Sep 17 00:00:00 2001 +From: Sebastian Pipping +Date: Mon, 9 Jan 2017 21:38:42 +0100 +Subject: [PATCH] Backport $(MATH_LIB) patch to GEGL 0.2 + +Source: +https://git.gnome.org/browse/gegl/patch/?id=c9bbc815378cb81ba8a48be35f615e7e2d74dffc +--- + bin/Makefile.am | 2 +- + examples/Makefile.am | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/bin/Makefile.am b/bin/Makefile.am +index c85ecbd..08a156b 100644 +--- a/bin/Makefile.am ++++ b/bin/Makefile.am +@@ -23,7 +23,7 @@ AM_CFLAGS = \ + + AM_LDFLAGS = \ + $(no_undefined) ../gegl/libgegl-$(GEGL_API_VERSION).la \ +- $(DEP_LIBS) $(BABL_LIBS) $(PNG_LIBS) $(LIBSPIRO) ++ $(DEP_LIBS) $(BABL_LIBS) $(PNG_LIBS) $(LIBSPIRO) $(MATH_LIB) + + bin_PROGRAMS = gegl + +diff --git a/examples/Makefile.am b/examples/Makefile.am +index c29a1dd..5c4ac3a 100644 +--- a/examples/Makefile.am ++++ b/examples/Makefile.am +@@ -42,4 +42,4 @@ AM_CFLAGS = $(DEP_CFLAGS) $(GTK_CFLAGS) $(BABL_CFLAGS) $(PNG_CFLAGS) + + AM_LDFLAGS = \ + $(top_builddir)/gegl/libgegl-$(GEGL_API_VERSION).la \ +- $(DEP_LIBS) $(GTK_LIBS) $(BABL_LIBS) $(PNG_LIBS) ++ $(DEP_LIBS) $(GTK_LIBS) $(BABL_LIBS) $(PNG_LIBS) $(MATH_LIB) +-- +2.11.0 + diff --git a/media-libs/gegl/gegl-0.2.0-r2.ebuild b/media-libs/gegl/gegl-0.2.0-r2.ebuild index fec143c..2e8582a 100644 --- a/media-libs/gegl/gegl-0.2.0-r2.ebuild +++ b/media-libs/gegl/gegl-0.2.0-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -72,6 +72,9 @@ src_prepare() { fi epatch "${FILESDIR}"/${P}-g_log_domain.patch + + # https://bugs.gentoo.org/show_bug.cgi?id=605216 + epatch "${FILESDIR}"/${P}-underlinking.patch eautoreconf # https://bugs.gentoo.org/show_bug.cgi?id=468248