[Bug 195121] graphics/linux-c6-gdk-pixbuf: rename to -pixbuf2 to avoid conflating with 0.22.0

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Mon Nov 17 22:20:24 UTC 2014


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195121

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

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

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


More information about the freebsd-emulation mailing list