From owner-freebsd-emulation@FreeBSD.ORG Mon Nov 17 22:20:24 2014 Return-Path: Delivered-To: emulation@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B2AB4AC1 for ; Mon, 17 Nov 2014 22:20:24 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 7FDCCE84 for ; Mon, 17 Nov 2014 22:20:24 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sAHMKO6P075454 for ; Mon, 17 Nov 2014 22:20:24 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: emulation@FreeBSD.org Subject: [Bug 195121] graphics/linux-c6-gdk-pixbuf: rename to -pixbuf2 to avoid conflating with 0.22.0 Date: Mon, 17 Nov 2014 22:20:24 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: xmj@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: emulation@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_status cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Nov 2014 22:20:24 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195121 Johannes Jost Meixner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Triage |In Discussion CC| |xmj@FreeBSD.org --- Comment #2 from Johannes Jost Meixner --- While I generally like the idea of having the upstreamed naming scheme in our portstree, here's the problem: Instead of your patch to www/linux-opera and www/linux-seamonkey you will need to discriminate the USE_LINUX_APPS= setting based on which linux distribution is used, given that you cannot use either gdkpixbuf2 with -f10, or gdkpixbuf with -c6. So, something like -USE_LINUX_APPS= gdkpixbuf gtk2 naslibs png sqlite3 xorglibs +USE_LINUX_APPS= gtk2 naslibs png sqlite3 xorglibs +.if ${USE_LINUX} == "f10" +USE_LINUX_APPS+= gdkpixbuf +.else +USE_LINUX_APPS+= gdkpixbuf2 +.endif for www/linux-opera and something like USE_LINUX_APPS+=alsalib alsa-plugins-oss atk dbusglib dbuslibs \ - fontconfig gdkpixbuf gtk2 hicontheme pango + fontconfig gtk2 hicontheme pango +.if ${USE_LINUX} == "f10" +USE_LINUX_APPS+= gdkpixbuf +.else +USE_LINUX_APPS+= gdkpixbuf2 +.endif for www/linux-seamonkey becomes necessary, along with entry in MOVED and UPDATING telling users to reinstall (pkg set -o etc) instructions. -- You are receiving this mail because: You are the assignee for the bug.