- Update to 0.1.8
PR: ports/97139 Submitted by: Martin Wilke <freebsd@unixfreunde.de> Approved by: maintainer timeout (14 days)
This commit is contained in:
parent
ee8465886d
commit
7600998fd7
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=163393
5 changed files with 25 additions and 76 deletions
|
@ -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+
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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);
|
|
@ -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);
|
|
@ -1,11 +1,30 @@
|
|||
include/libsexy/sexy-enum-types.h
|
||||
include/libsexy/sexy-icon-entry.h
|
||||
include/libsexy/sexy-spell-entry.h
|
||||
include/libsexy/sexy-tooltip.h
|
||||
include/libsexy/sexy-tree-view.h
|
||||
include/libsexy/sexy-url-label.h
|
||||
include/libsexy/sexy.h
|
||||
lib/libsexy.a
|
||||
lib/libsexy.la
|
||||
lib/libsexy.so
|
||||
lib/libsexy.so.1
|
||||
lib/libsexy.so.2
|
||||
libdata/pkgconfig/libsexy.pc
|
||||
share/gtk-doc/html/libsexy/SexyIconEntry.html
|
||||
share/gtk-doc/html/libsexy/SexySpellEntry.html
|
||||
share/gtk-doc/html/libsexy/SexyTooltip.html
|
||||
share/gtk-doc/html/libsexy/SexyTreeView.html
|
||||
share/gtk-doc/html/libsexy/SexyUrlLabel.html
|
||||
share/gtk-doc/html/libsexy/ch01.html
|
||||
share/gtk-doc/html/libsexy/home.png
|
||||
share/gtk-doc/html/libsexy/index.html
|
||||
share/gtk-doc/html/libsexy/index.sgml
|
||||
share/gtk-doc/html/libsexy/left.png
|
||||
share/gtk-doc/html/libsexy/libsexy.devhelp
|
||||
share/gtk-doc/html/libsexy/right.png
|
||||
share/gtk-doc/html/libsexy/style.css
|
||||
share/gtk-doc/html/libsexy/up.png
|
||||
@dirrm share/gtk-doc/html/libsexy
|
||||
@dirrmtry share/gtk-doc/html
|
||||
@dirrmtry share/gtk-doc
|
||||
@dirrm include/libsexy
|
||||
|
|
Loading…
Reference in a new issue