Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 18 May 2006 07:28:44 -0500 (CDT)
From:      Tim Welch <twelch@thepentagon.org>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/97455: update x11-wm/libsexy to 0.1.8
Message-ID:  <200605181228.k4ICSigI066151@pluto.thepentagon.org>
Resent-Message-ID: <200605181230.k4ICUPYf080556@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         97455
>Category:       ports
>Synopsis:       update x11-wm/libsexy to 0.1.8
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Thu May 18 12:30:24 GMT 2006
>Closed-Date:
>Last-Modified:
>Originator:     Tim Welch
>Release:        FreeBSD 6.1-RELEASE i386
>Organization:
>Environment:
System: FreeBSD 6.1-RELEASE

>Description:
	- Update to 0.1.8
	- Fix Master site url

>How-To-Repeat:
	
>Fix:

	

--- sexy.diff begins here ---
diff -ruN libsexy/Makefile libsexy.new/Makefile
--- libsexy/Makefile	Thu Feb 23 04:40:30 2006
+++ libsexy.new/Makefile	Thu May 18 06:58:21 2006
@@ -6,10 +6,9 @@
 #
 
 PORTNAME=		libsexy
-PORTVERSION=		0.1.5
-PORTREVISION=	1
+PORTVERSION=		0.1.8
 CATEGORIES=		x11-toolkits devel
-MASTER_SITES=		http://osiris.chipx86.com/projects/libsexy/releases/
+MASTER_SITES=		http://releases.chipx86.com/libsexy/libsexy/
 
 MAINTAINER=		andreas@syndrom23.de
 COMMENT=		Extension widgets for GTK+
diff -ruN libsexy/distinfo libsexy.new/distinfo
--- libsexy/distinfo	Tue Jan 24 05:40:45 2006
+++ libsexy.new/distinfo	Thu May 18 07:01:21 2006
@@ -1,4 +1,3 @@
-MD5 (libsexy-0.1.5.tar.gz) = e726d86193aa963221a9797f6d6b4288
-SHA256 (libsexy-0.1.5.tar.gz) = 2d2d0748b097ec5bafe1303d9320df59244667e0fee85c09ac9307df8c1301c5
-SIZE (libsexy-0.1.5.tar.gz) = 331558
-SIZE (libsexy-0.1.3.1.tar.gz) = 314762
+MD5 (libsexy-0.1.8.tar.gz) = ddc52cc8196f9f0bf48a5c7569b6bb38
+SHA256 (libsexy-0.1.8.tar.gz) = 83e82b9afe296584a6c9f1f8b3e3a70d324209021e0049f68d28bd1de8c18136
+SIZE (libsexy-0.1.8.tar.gz) = 370540
diff -ruN libsexy/files/patch-libsexy-sexy-icon-entry.c libsexy.new/files/patch-libsexy-sexy-icon-entry.c
--- libsexy/files/patch-libsexy-sexy-icon-entry.c	Tue Nov  8 15:36:33 2005
+++ libsexy.new/files/patch-libsexy-sexy-icon-entry.c	Wed Dec 31 18:00:00 1969
@@ -1,20 +0,0 @@
---- libsexy/sexy-icon-entry.c.orig	Fri Oct 14 10:48:10 2005
-+++ libsexy/sexy-icon-entry.c	Tue Nov  8 21:09:27 2005
-@@ -316,6 +316,8 @@
- 
- 	for (i = 0; i < MAX_ICONS; i++)
- 	{
-+		SexyIconInfo *icon_info;
-+
- 		attributes.window_type = GDK_WINDOW_CHILD;
- 		attributes.wclass = GDK_INPUT_OUTPUT;
- 		attributes.visual = gtk_widget_get_visual(widget);
-@@ -329,7 +331,7 @@
- 		attributes_mask = GDK_WA_X | GDK_WA_Y |
- 		                  GDK_WA_VISUAL | GDK_WA_COLORMAP;
- 
--		SexyIconInfo *icon_info = &entry->priv->icons[i];
-+		icon_info = &entry->priv->icons[i];
- 		icon_info->window = gdk_window_new(widget->window, &attributes,
- 										   attributes_mask);
- 		gdk_window_set_user_data(icon_info->window, widget);
diff -ruN libsexy/files/patch-libsexy-sexy-spell-entry.c libsexy.new/files/patch-libsexy-sexy-spell-entry.c
--- libsexy/files/patch-libsexy-sexy-spell-entry.c	Tue Jan 24 05:40:46 2006
+++ libsexy.new/files/patch-libsexy-sexy-spell-entry.c	Wed Dec 31 18:00:00 1969
@@ -1,48 +0,0 @@
---- libsexy/sexy-spell-entry.c.orig	Wed Nov 16 04:45:57 2005
-+++ libsexy/sexy-spell-entry.c	Thu Jan 12 00:57:57 2006
-@@ -880,10 +880,10 @@
- static gchar *
- get_lang_from_dict(struct EnchantDict *dict)
- {
-+	gchar *lang;
- 	if (!have_enchant)
- 		return NULL;
- 
--	gchar *lang;
- 	enchant_dict_describe(dict, get_lang_from_dict_cb, &lang);
- 	return lang;
- }
-@@ -938,14 +938,14 @@
- GSList *
- sexy_spell_entry_get_languages(const SexySpellEntry *entry)
- {
-+	GSList *langs = NULL;
-+
- 	g_return_val_if_fail(entry != NULL, NULL);
- 	g_return_val_if_fail(SEXY_IS_SPELL_ENTRY(entry), NULL);
- 
- 	if (enchant_broker_list_dicts == NULL)
- 		return NULL;
- 
--	GSList *langs = NULL;
--
- 	if (!entry->priv->broker)
- 		return NULL;
- 
-@@ -1002,14 +1002,14 @@
- gboolean
- sexy_spell_entry_activate_language(SexySpellEntry *entry, const gchar *lang, GError **error)
- {
-+	gboolean ret;
-+
- 	g_return_val_if_fail(entry != NULL, FALSE);
- 	g_return_val_if_fail(SEXY_IS_SPELL_ENTRY(entry), FALSE);
- 	g_return_val_if_fail(lang != NULL && lang != '\0', FALSE);
- 
- 	if (!have_enchant)
- 		return FALSE;
--
--	gboolean ret;
- 
- 	if (error)
- 		g_return_val_if_fail(*error == NULL, FALSE);
--- sexy.diff ends here ---


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200605181228.k4ICSigI066151>