From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Apr 3 17:00:02 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F05CD69B for ; Thu, 3 Apr 2014 17:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CCF6E5ED for ; Thu, 3 Apr 2014 17:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s33H01s1087823 for ; Thu, 3 Apr 2014 17:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s33H01or087822; Thu, 3 Apr 2014 17:00:01 GMT (envelope-from gnats) Resent-Date: Thu, 3 Apr 2014 17:00:01 GMT Resent-Message-Id: <201404031700.s33H01or087822@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ivan Klymenko Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 830EE3DA for ; Thu, 3 Apr 2014 16:53:50 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6EF523B1 for ; Thu, 3 Apr 2014 16:53:50 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s33Gro7Z022173 for ; Thu, 3 Apr 2014 16:53:50 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s33GrokW022172; Thu, 3 Apr 2014 16:53:50 GMT (envelope-from nobody) Message-Id: <201404031653.s33GrokW022172@cgiserv.freebsd.org> Date: Thu, 3 Apr 2014 16:53:50 GMT From: Ivan Klymenko To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/188233: [patch] deskutils/cairo-dock-plugins fix bug build with option XFCE_INTEGRATION X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 17:00:02 -0000 >Number: 188233 >Category: ports >Synopsis: [patch] deskutils/cairo-dock-plugins fix bug build with option XFCE_INTEGRATION >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Apr 03 17:00:01 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Ivan Klymenko >Release: >Organization: individual >Environment: >Description: Unfortunately in port deskutils/cairo-dock-plugins there conflicts between libraries libthunar-vfs-1.so and libgio-2.0.so.0 >How-To-Repeat: >Fix: Try the following to resolve this issue: 1. apply the following patch: --- Makefile.orig 2014-04-01 17:55:11.000000000 +0300 +++ Makefile 2014-03-24 23:19:49.000000000 +0200 @@ -56,8 +56,8 @@ s|/usr/share/cairo-dock|${LOCALBASE}/share/cairo-dock|g' .if ${PORT_OPTIONS:MXFCE_INTEGRATION} -LIB_DEPENDS+= libthunar-vfs-1.so:${PORTSDIR}/x11-fm/thunar-vfs \ - libexif.so:${PORTSDIR}/graphics/libexif +#LIB_DEPENDS+= libthunar-vfs-1.so:${PORTSDIR}/x11-fm/thunar-vfs \ +LIB_DEPENDS+= libexif.so:${PORTSDIR}/graphics/libexif CMAKE_ARGS+= -Denable-xfce-integration:BOOL=TRUE .else CMAKE_ARGS+= -Denable-xfce-integration:BOOL=FALSE 2. if thunar-vfs installed: make -C /usr/ports/x11-fm/thunar-vfs deinstall 3. make -C /usr/ports/deskutils/cairo-dock-plugins build deinstall install clean Patch attached with submission follows: diff --git a/cairo-dock-plugins.orig/Makefile b/cairo-dock-plugins/Makefile index 177aa38..502bb4a 100644 --- a/cairo-dock-plugins.orig/Makefile +++ b/cairo-dock-plugins/Makefile @@ -56,8 +56,8 @@ post-patch: s|/usr/share/cairo-dock|${LOCALBASE}/share/cairo-dock|g' .if ${PORT_OPTIONS:MXFCE_INTEGRATION} -LIB_DEPENDS+= libthunar-vfs-1.so:${PORTSDIR}/x11-fm/thunar-vfs \ - libexif.so:${PORTSDIR}/graphics/libexif +#LIB_DEPENDS+= libthunar-vfs-1.so:${PORTSDIR}/x11-fm/thunar-vfs \ +LIB_DEPENDS+= libexif.so:${PORTSDIR}/graphics/libexif CMAKE_ARGS+= -Denable-xfce-integration:BOOL=TRUE .else CMAKE_ARGS+= -Denable-xfce-integration:BOOL=FALSE >Release-Note: >Audit-Trail: >Unformatted: