Date: Wed, 26 Jan 2005 17:37:09 +0100 From: Danny Pansters <danny@ricin.com> To: FreeBSD-gnats-submit@FreeBSD.org Cc: danny@ricin.com Subject: ports/76718: [MAINTAINER] x11-themes/gtk-qt-engine: update to 0.6 Message-ID: <20050126163722.2B58343D31@mx1.FreeBSD.org> Resent-Message-ID: <200501261640.j0QGeTq6092536@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 76718 >Category: ports >Synopsis: [MAINTAINER] x11-themes/gtk-qt-engine: update to 0.6 >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: Wed Jan 26 16:40:29 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Danny Pansters >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD workstation.homenet 5.3-STABLE FreeBSD 5.3-STABLE #2: Fri Jan 21 19:51:02 CET 2005 >Description: - Update to 0.6 See http://www.freedesktop.org/Software/gtk-qt for changelog. Tested with KDE 3.3.2 and GTK-2.4.14. Removed file(s): - files/patch-qt_qt_wrapper.cpp - files/patch-qt_theme_draw.c #1 is obsolete, #2 appears to have been included in the source tarball now. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- gtk-qt-engine-0.6.patch begins here --- diff -ruN --exclude=CVS /usr/ports/x11-themes/gtk-qt-engine/Makefile /usr/ports/x11-themes/gtk-qt-engine.new/Makefile --- /usr/ports/x11-themes/gtk-qt-engine/Makefile Fri Jan 21 02:13:08 2005 +++ /usr/ports/x11-themes/gtk-qt-engine.new/Makefile Wed Jan 26 15:11:54 2005 @@ -6,8 +6,7 @@ # PORTNAME= gtk-qt-engine -PORTVERSION= 0.5 -PORTREVISION= 2 +PORTVERSION= 0.6 CATEGORIES= x11-themes MASTER_SITES= http://www.freedesktop.org/~davidsansome/ @@ -41,10 +40,8 @@ ${WRKSRC}/kcm_gtk/Makefile post-install: - @# Remove Debian stuff we didn't want in the first place @${RM} /tmp/menu/kcmgtk.menu @if [ "`ls /tmp/menu`" = "" ]; then ${RMDIR} /tmp/menu; fi - @# We do want this archive! @${INSTALL_DATA} ${WRKSRC}/kcm_gtk/kcm_kcmgtk.la ${LOCALBASE}/lib/kde3/ @${ECHO} @${ECHO} "Use \"GTK styles and fonts\" from the KDE control center to set or" diff -ruN --exclude=CVS /usr/ports/x11-themes/gtk-qt-engine/distinfo /usr/ports/x11-themes/gtk-qt-engine.new/distinfo --- /usr/ports/x11-themes/gtk-qt-engine/distinfo Fri Jan 21 02:13:08 2005 +++ /usr/ports/x11-themes/gtk-qt-engine.new/distinfo Wed Jan 26 14:29:53 2005 @@ -1,2 +1,2 @@ -MD5 (gtk-qt-engine-0.5.tar.bz2) = c1952ac83bccb6a07fc16afd02718499 -SIZE (gtk-qt-engine-0.5.tar.bz2) = 476677 +MD5 (gtk-qt-engine-0.6.tar.bz2) = 9c02c95a6e8d304b1f2801429759e1c0 +SIZE (gtk-qt-engine-0.6.tar.bz2) = 435510 diff -ruN --exclude=CVS /usr/ports/x11-themes/gtk-qt-engine/files/patch-qt_qt_wrapper.cpp /usr/ports/x11-themes/gtk-qt-engine.new/files/patch-qt_qt_wrapper.cpp --- /usr/ports/x11-themes/gtk-qt-engine/files/patch-qt_qt_wrapper.cpp Sun Nov 7 17:34:31 2004 +++ /usr/ports/x11-themes/gtk-qt-engine.new/files/patch-qt_qt_wrapper.cpp Thu Jan 1 01:00:00 1970 @@ -1,10 +0,0 @@ ---- src/qt_qt_wrapper.cpp.orig Sun Nov 7 14:47:15 2004 -+++ src/qt_qt_wrapper.cpp Sun Nov 7 14:47:30 2004 -@@ -5,7 +5,6 @@ - #include <qimage.h> - #include <qstylefactory.h> - #include <kapplication.h> --#include <kcmdlineargs.h> - #include <qtabbar.h> - #include <qcheckbox.h> - #include <qradiobutton.h> diff -ruN --exclude=CVS /usr/ports/x11-themes/gtk-qt-engine/files/patch-qt_theme_draw.c /usr/ports/x11-themes/gtk-qt-engine.new/files/patch-qt_theme_draw.c --- /usr/ports/x11-themes/gtk-qt-engine/files/patch-qt_theme_draw.c Fri Jan 21 02:13:08 2005 +++ /usr/ports/x11-themes/gtk-qt-engine.new/files/patch-qt_theme_draw.c Thu Jan 1 01:00:00 1970 @@ -1,24 +0,0 @@ ---- src/qt_theme_draw.c.orig Sun Nov 7 13:41:29 2004 -+++ src/qt_theme_draw.c Sun Nov 7 13:55:19 2004 -@@ -625,17 +625,18 @@ - if (DETAIL("tooltip")) - { - GdkColor tooltipColor; -+ GdkGC* tooltipGc; -+ GdkGCValues gc_values; -+ GdkGCValuesMask gc_values_mask; - tooltipColor.red = 255*257; - tooltipColor.green = 255*257; - tooltipColor.blue = 220*257; - gdk_colormap_alloc_color(style->colormap, &tooltipColor, FALSE, TRUE); - -- GdkGCValues gc_values; -- GdkGCValuesMask gc_values_mask; - gc_values_mask = GDK_GC_FOREGROUND; - gc_values.foreground = tooltipColor; - -- GdkGC* tooltipGc = (GdkGC*) gtk_gc_get (style->depth, style->colormap, &gc_values, gc_values_mask); -+ tooltipGc = (GdkGC*) gtk_gc_get (style->depth, style->colormap, &gc_values, gc_values_mask); - gdk_draw_rectangle(window, tooltipGc, TRUE, x, y, width, height); - gdk_draw_rectangle(window, style->black_gc, FALSE, x, y, width - 1, height - 1); - --- gtk-qt-engine-0.6.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20050126163722.2B58343D31>