FreeBSD Bugzilla – Attachment 183784 Details for
Bug 220266
textproc/xfce4-dict-plugin: Update to 0.8.0
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch to update textproc/xfce4-dict-plugin
xfce4-dict-plugin.diff (text/plain), 5.16 KB, created by
Olivier Duchateau
on 2017-06-25 14:13:44 UTC
(
hide
)
Description:
Patch to update textproc/xfce4-dict-plugin
Filename:
MIME Type:
Creator:
Olivier Duchateau
Created:
2017-06-25 14:13:44 UTC
Size:
5.16 KB
patch
obsolete
>Index: Makefile >=================================================================== >--- Makefile (révision 444263) >+++ Makefile (copie de travail) >@@ -2,7 +2,7 @@ > # $FreeBSD$ > > PORTNAME= xfce4-dict >-PORTVERSION= 0.7.2 >+PORTVERSION= 0.8.0 > CATEGORIES= textproc xfce > MASTER_SITES= XFCE/src/apps/${PORTNAME}/${PORTVERSION:R} > PKGNAMESUFFIX= -plugin >@@ -9,7 +9,7 @@ > DIST_SUBDIR= xfce4 > > MAINTAINER= xfce@FreeBSD.org >-COMMENT= Xfce4 plugin to query different dictionaries >+COMMENT= Client program to query different dictionaries > > LICENSE= GPLv2 > LICENSE_FILE= ${WRKSRC}/COPYING >@@ -16,8 +16,8 @@ > > GNU_CONFIGURE= yes > INSTALLS_ICONS= yes >-USES= gettext pkgconfig gmake libtool xfce tar:bzip2 >-USE_GNOME= glib20 gtk20 intltool intlhack >+USES= gettext gmake libtool pkgconfig tar:bzip2 xfce:gtk3 >+USE_GNOME= glib20 gtk30 intltool cairo > USE_XFCE= panel > USE_XORG= x11 > USE_LDCONFIG= yes >Index: distinfo >=================================================================== >--- distinfo (révision 444263) >+++ distinfo (copie de travail) >@@ -1,2 +1,3 @@ >-SHA256 (xfce4/xfce4-dict-0.7.2.tar.bz2) = e5a2b3ec2a665f53534f57cfeb8b2a4ad28d56c13cf8503b4b329377683b11c7 >-SIZE (xfce4/xfce4-dict-0.7.2.tar.bz2) = 489918 >+TIMESTAMP = 1498398539 >+SHA256 (xfce4/xfce4-dict-0.8.0.tar.bz2) = 3a2fa72a3fe1816e16a50327fac1926bb0167a905c9b1e313a2bf5e3163ea32a >+SIZE (xfce4/xfce4-dict-0.8.0.tar.bz2) = 483618 >Index: files/patch-lib__dictd.c >=================================================================== >--- files/patch-lib__dictd.c (révision 444263) >+++ files/patch-lib__dictd.c (nonexistent) >@@ -1,19 +0,0 @@ >-g_thread_create has been deprecated since version 2.32. >- >-https://developer.gnome.org/glib/2.34/glib-Deprecated-Thread-APIs.html#g-thread-create >- >---- ./lib/dictd.c.orig 2013-05-20 12:27:17.000000000 +0000 >-+++ ./lib/dictd.c 2013-05-20 21:15:01.000000000 +0000 >-@@ -678,7 +678,11 @@ >- dictd_init(); >- >- /* start the thread to query the server */ >-- g_thread_create((GThreadFunc) ask_server, dd, FALSE, NULL); >-+ #if GLIB_CHECK_VERSION(2, 32, 0) >-+ g_thread_new("ask_server", (GThreadFunc) ask_server, dd); >-+ #else >-+ g_thread_create((GThreadFunc) ask_server, dd, FALSE, NULL); >-+ #endif >- } >- } >- > >Modification de propriétés sur files/patch-lib__dictd.c >___________________________________________________________________ >Deleted: fbsd:nokeywords >## -1 +0,0 ## >-yes >\ No newline at end of property >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: files/patch-panel-plugin__xfce4-dict-plugin.c >=================================================================== >--- files/patch-panel-plugin__xfce4-dict-plugin.c (révision 444263) >+++ files/patch-panel-plugin__xfce4-dict-plugin.c (nonexistent) >@@ -1,16 +0,0 @@ >-g_thread_init has been deprecated since version 2.32. >- >-https://developer.gnome.org/glib/2.34/glib-Deprecated-Thread-APIs.html#g-thread-init >- >---- ./panel-plugin/xfce4-dict-plugin.c.orig 2012-05-04 22:41:55.000000000 +0000 >-+++ ./panel-plugin/xfce4-dict-plugin.c 2013-05-20 20:12:34.000000000 +0000 >-@@ -417,7 +417,9 @@ >- >- xfce_textdomain(GETTEXT_PACKAGE, PACKAGE_LOCALE_DIR, "UTF-8"); >- >-+ #if !GLIB_CHECK_VERSION(2, 32, 0) >- g_thread_init(NULL); >-+ #endif >- >- dpd->dd = dict_create_dictdata(); >- dpd->dd->is_plugin = TRUE; > >Modification de propriétés sur files/patch-panel-plugin__xfce4-dict-plugin.c >___________________________________________________________________ >Deleted: fbsd:nokeywords >## -1 +0,0 ## >-yes >\ No newline at end of property >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: files/patch-src__xfce4-dict.c >=================================================================== >--- files/patch-src__xfce4-dict.c (révision 444263) >+++ files/patch-src__xfce4-dict.c (nonexistent) >@@ -1,16 +0,0 @@ >-g_thread_init has been deprecated since version 2.32. >- >-https://developer.gnome.org/glib/2.34/glib-Deprecated-Thread-APIs.html#g-thread-init >- >---- ./src/xfce4-dict.c.orig 2012-05-04 23:07:31.000000000 +0000 >-+++ ./src/xfce4-dict.c 2013-05-20 20:14:48.000000000 +0000 >-@@ -175,7 +175,9 @@ >- dd->is_plugin = FALSE; >- dd->verbose_mode = verbose_mode; >- >-+ #if !GLIB_CHECK_VERSION(2, 32, 0) >- g_thread_init(NULL); >-+ #endif >- >- dict_read_rc_file(dd); >- > >Modification de propriétés sur files/patch-src__xfce4-dict.c >___________________________________________________________________ >Deleted: fbsd:nokeywords >## -1 +0,0 ## >-yes >\ No newline at end of property >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: pkg-plist >=================================================================== >--- pkg-plist (révision 444263) >+++ pkg-plist (copie de travail) >@@ -38,6 +38,7 @@ > share/locale/pt_BR/LC_MESSAGES/xfce4-dict.mo > share/locale/ru/LC_MESSAGES/xfce4-dict.mo > share/locale/sk/LC_MESSAGES/xfce4-dict.mo >+share/locale/sl/LC_MESSAGES/xfce4-dict.mo > share/locale/sq/LC_MESSAGES/xfce4-dict.mo > share/locale/sr/LC_MESSAGES/xfce4-dict.mo > share/locale/sv/LC_MESSAGES/xfce4-dict.mo
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 220266
: 183784