Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 17 Nov 2014 22:20:24 +0000
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
Message-ID:  <bug-195121-4077-GD66daCiFC@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-195121-4077@https.bugs.freebsd.org/bugzilla/>
References:  <bug-195121-4077@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195121

Johannes Jost Meixner <xmj@FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|Needs Triage                |In Discussion
                 CC|                            |xmj@FreeBSD.org

--- Comment #2 from Johannes Jost Meixner <xmj@FreeBSD.org> ---
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.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-195121-4077-GD66daCiFC>