View | Details | Raw Unified | Return to bug 163000
Collapse All | Expand All

(-)thunar-media-tags-plugin/Makefile (-10 / +2 lines)
Lines 6-13 Link Here
6
#
6
#
7
7
8
PORTNAME=	thunar-media-tags-plugin
8
PORTNAME=	thunar-media-tags-plugin
9
PORTVERSION=	0.1.2
9
PORTVERSION=	0.2.0
10
PORTREVISION=	20
11
CATEGORIES=	audio xfce
10
CATEGORIES=	audio xfce
12
MASTER_SITES=	${MASTER_SITE_XFCE}
11
MASTER_SITES=	${MASTER_SITE_XFCE}
13
MASTER_SITE_SUBDIR=/src/thunar-plugins//${PORTNAME}/${PORTVERSION:R}
12
MASTER_SITE_SUBDIR=/src/thunar-plugins//${PORTNAME}/${PORTVERSION:R}
Lines 23-36 Link Here
23
USE_GETTEXT=	yes
22
USE_GETTEXT=	yes
24
GNU_CONFIGURE=	yes
23
GNU_CONFIGURE=	yes
25
USE_GNOME=	gnomehack gtk20 intltool intlhack pkgconfig
24
USE_GNOME=	gnomehack gtk20 intltool intlhack pkgconfig
26
USE_XFCE=	configenv libexo thunar thunarvfs
25
USE_XFCE=	configenv libexo thunar
27
USE_AUTOTOOLS=	libtool
26
USE_AUTOTOOLS=	libtool
28
27
29
post-patch:
30
	@${REINPLACE_CMD} -e 's|exo-0\.3|exo-1|g; \
31
		s|thunarx-1|thunarx-2|g' \
32
		${WRKSRC}/configure
33
	@${REINPLACE_CMD} -e 's|(libdir)/thunarx-1|(libdir)/thunarx-2|' \
34
		${WRKSRC}/thunar-plugin/Makefile.in
35
36
.include <bsd.port.mk>
28
.include <bsd.port.mk>
(-)thunar-media-tags-plugin/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (xfce4/thunar-media-tags-plugin-0.1.2.tar.bz2) = 41305171a3f2a0962b1324fa402bc97e3e1e93595dd3168f6fe778f079bb0240
1
SHA256 (xfce4/thunar-media-tags-plugin-0.2.0.tar.bz2) = 721b34a8a801ebd039469c8b8605b0bb332d498a6018a1b978df5c87bdb8750f
2
SIZE (xfce4/thunar-media-tags-plugin-0.1.2.tar.bz2) = 282877
2
SIZE (xfce4/thunar-media-tags-plugin-0.2.0.tar.bz2) = 321001
(-)thunar-media-tags-plugin/files/patch-thunar-plugin_Makefile.am (-10 lines)
Lines 1-10 Link Here
1
--- thunar-plugin/Makefile.am.orig	2006-06-08 15:04:45.000000000 +0200
2
+++ thunar-plugin/Makefile.am	2011-05-15 19:53:34.000000000 +0200
3
@@ -33,6 +33,7 @@
4
 	-avoid-version							\
5
 	-export-dynamic							\
6
 	-module								\
7
+	$(EXO_LIBS)	\
8
 	$(THUNARX_LIBS)							\
9
 	$(THUNARVFS_LIBS)						\
10
 	$(TAGLIB_LIBS)							\
(-)thunar-media-tags-plugin/files/patch-thunar-plugin_audio-tags-page.c (-95 lines)
Lines 1-95 Link Here
1
--- thunar-plugin/audio-tags-page.c.orig	2006-09-11 11:40:56.000000000 +0200
2
+++ thunar-plugin/audio-tags-page.c	2011-05-15 19:44:12.000000000 +0200
3
@@ -90,7 +90,6 @@
4
   ThunarxPropertyPage __parent__;
5
 
6
   /* Widgets */
7
-  GtkTooltips     *tooltips;
8
   GtkWidget       *table;
9
   GtkWidget       *save_button;
10
   GtkWidget       *info_button;
11
@@ -282,10 +281,6 @@
12
 
13
   gtk_container_set_border_width (GTK_CONTAINER (page), 8);
14
 
15
-  /* Allocate the shared tooltips */
16
-  page->tooltips = gtk_tooltips_new ();
17
-  exo_gtk_object_ref_sink (GTK_OBJECT (page->tooltips));
18
-
19
   /* Main container */
20
   vbox = gtk_vbox_new (FALSE, 8);
21
   gtk_container_add (GTK_CONTAINER (page), vbox);
22
@@ -317,7 +312,8 @@
23
   /* Track spin button */
24
   spin = gtk_spin_button_new (GTK_ADJUSTMENT (adjustment), 1, 0);
25
   exo_mutual_binding_new (G_OBJECT (adjustment), "value", G_OBJECT (page), "track");
26
-  gtk_tooltips_set_tip (page->tooltips, spin, _("Enter the track number here."), NULL);
27
+  gtk_widget_set_tooltip_text (GTK_WIDGET (spin), _("Enter the track number here."));
28
+
29
   gtk_container_add (GTK_CONTAINER (alignment), spin);
30
   gtk_label_set_mnemonic_widget (GTK_LABEL (label), spin);
31
   gtk_widget_show (spin);
32
@@ -340,7 +336,7 @@
33
   /* Year spin button */
34
   spin = gtk_spin_button_new (GTK_ADJUSTMENT (adjustment), 1, 0);
35
   exo_mutual_binding_new (G_OBJECT (adjustment), "value", G_OBJECT (page), "year");
36
-  gtk_tooltips_set_tip (page->tooltips, spin, _("Enter the release year here."), NULL);
37
+  gtk_widget_set_tooltip_text (GTK_WIDGET (spin), _("Enter the release year here."));
38
   gtk_container_add (GTK_CONTAINER (alignment), spin);
39
   gtk_label_set_mnemonic_widget (GTK_LABEL (label), spin);
40
   gtk_widget_show (spin);
41
@@ -355,7 +351,7 @@
42
   /* Artist entry */
43
   entry = gtk_entry_new ();
44
   exo_mutual_binding_new (G_OBJECT (entry), "text", G_OBJECT (page), "artist");
45
-  gtk_tooltips_set_tip (page->tooltips, entry, _("Enter the name of the artist or author of this file here."), NULL);
46
+  gtk_widget_set_tooltip_text (GTK_WIDGET (entry), _("Enter the name of the artist or author of this file here."));
47
   gtk_table_attach (GTK_TABLE (page->table), entry, 1, 4, 1, 2, GTK_EXPAND | GTK_FILL, 0, 0, 0);
48
   gtk_label_set_mnemonic_widget (GTK_LABEL (label), entry);
49
   gtk_widget_show (entry);
50
@@ -370,7 +366,7 @@
51
   /* Title entry */
52
   entry = gtk_entry_new ();
53
   exo_mutual_binding_new (G_OBJECT (entry), "text", G_OBJECT (page), "title");
54
-  gtk_tooltips_set_tip (page->tooltips, entry, _("Enter the song title here."), NULL);
55
+  gtk_widget_set_tooltip_text (GTK_WIDGET (entry), _("Enter the song title here."));
56
   gtk_table_attach (GTK_TABLE (page->table), entry, 1, 4, 2, 3, GTK_EXPAND | GTK_FILL, 0, 0, 0);
57
   gtk_widget_show (entry);
58
 
59
@@ -384,7 +380,7 @@
60
   /* Album entry */
61
   entry = gtk_entry_new ();
62
   exo_mutual_binding_new (G_OBJECT (entry), "text", G_OBJECT (page), "album");
63
-  gtk_tooltips_set_tip (page->tooltips, entry, _("Enter the album/record title here."), NULL);
64
+  gtk_widget_set_tooltip_text (GTK_WIDGET (entry), _("Enter the album/record title here."));
65
   gtk_table_attach (GTK_TABLE (page->table), entry, 1, 4, 3, 4, GTK_EXPAND | GTK_FILL, 0, 0, 0);
66
   gtk_widget_show (entry);
67
   
68
@@ -398,7 +394,7 @@
69
   /* Comment entry */
70
   entry = gtk_entry_new ();
71
   exo_mutual_binding_new (G_OBJECT (entry), "text", G_OBJECT (page), "comment");
72
-  gtk_tooltips_set_tip (page->tooltips, entry, _("Enter your comments here."), NULL);
73
+  gtk_widget_set_tooltip_text (GTK_WIDGET (entry), _("Enter your comments here."));
74
   gtk_table_attach (GTK_TABLE (page->table), entry, 1, 4, 4, 5, GTK_EXPAND | GTK_FILL, 0, 0, 0);
75
   gtk_widget_show (entry);
76
 
77
@@ -412,7 +408,7 @@
78
   /* Genre combo box */
79
   combo = gtk_combo_box_entry_new_text ();
80
   exo_mutual_binding_new (G_OBJECT (GTK_BIN (combo)->child), "text", G_OBJECT (page), "genre");
81
-  gtk_tooltips_set_tip (page->tooltips, combo, _("Select or enter the genre of this song here."), NULL);
82
+  gtk_widget_set_tooltip_text (GTK_WIDGET (combo), _("Select or enter the genre of this song here."));
83
   gtk_table_attach (GTK_TABLE (page->table), combo, 1, 4, 5, 6, GTK_FILL, 0, 0, 0);
84
   gtk_widget_show (combo);
85
 
86
@@ -512,9 +508,6 @@
87
   if (G_LIKELY (page->genre != NULL))
88
     g_free (page->genre);
89
 
90
-  /* Release the tooltips */
91
-  g_object_unref (G_OBJECT (page->tooltips));
92
-
93
   (*G_OBJECT_CLASS (audio_tags_page_parent_class)->finalize) (object);
94
 }
95
 
(-)thunar-media-tags-plugin/files/patch-thunar-plugin_tag-renamer.c (-51 lines)
Lines 1-51 Link Here
1
--- thunar-plugin/tag-renamer.c.orig	2006-06-17 21:10:05.000000000 +0200
2
+++ thunar-plugin/tag-renamer.c	2011-05-15 19:51:13.000000000 +0200
3
@@ -116,9 +116,6 @@
4
 {
5
   ThunarxRenamer __parent__;
6
 
7
-  /* Widgets */
8
-  GtkTooltips     *tooltips;
9
-
10
   /* Properties */
11
   TagRenamerFormat format;
12
   gboolean         replace_spaces;
13
@@ -209,10 +206,6 @@
14
   GEnumClass     *klass;
15
   gint            n;
16
 
17
-  /* Allocate shared tooltips */
18
-  tag_renamer->tooltips = gtk_tooltips_new ();
19
-  exo_gtk_object_ref_sink (GTK_OBJECT (tag_renamer->tooltips));
20
-
21
   table = gtk_table_new (2, 3, FALSE);
22
   gtk_table_set_row_spacings (GTK_TABLE (table), 6);
23
   gtk_table_set_col_spacings (GTK_TABLE (table), 12);
24
@@ -245,14 +238,14 @@
25
 
26
   button = gtk_check_button_new_with_mnemonic (_("_Underscores"));
27
   exo_mutual_binding_new (G_OBJECT (button), "active", G_OBJECT (tag_renamer), "replace-spaces");
28
-  gtk_tooltips_set_tip (tag_renamer->tooltips, button, _("Activating this option will replace all spaces in the target filename "
29
-        "with underscores."), NULL);
30
+  gtk_widget_set_tooltip_text (GTK_WIDGET (button), _("Activating this option will replace all spaces in the target filename "
31
+        "with underscores."));
32
   gtk_table_attach (GTK_TABLE (table), button, 2, 3, 0, 1, GTK_FILL, 0, 0, 0);
33
   gtk_widget_show (button);
34
 
35
   button = gtk_check_button_new_with_mnemonic (_("_Lowercase"));
36
   exo_mutual_binding_new (G_OBJECT (button), "active", G_OBJECT (tag_renamer), "lowercase");
37
-  gtk_tooltips_set_tip (tag_renamer->tooltips, button, _("If you activate this, the resulting filename will only contain lowercase letters."), NULL);
38
+  gtk_widget_set_tooltip_text (GTK_WIDGET (button), _("If you activate this, the resulting filename will only contain lowercase letters."));
39
   gtk_table_attach (GTK_TABLE (table), button, 2, 3, 1, 2, GTK_FILL, 0, 0, 0);
40
   gtk_widget_show (button);
41
 
42
@@ -272,9 +265,6 @@
43
 {
44
   TagRenamer *tag_renamer = TAG_RENAMER (object);
45
 
46
-  /* release the tooltips */
47
-  g_object_unref (G_OBJECT (tag_renamer->tooltips));
48
-
49
   /* Free strings */
50
   g_free (tag_renamer->artist);
51
   g_free (tag_renamer->title);
(-)thunar-media-tags-plugin/pkg-plist (+33 lines)
Lines 1-18 Link Here
1
lib/thunarx-2/thunar-media-tags-plugin.a
1
lib/thunarx-2/thunar-media-tags-plugin.a
2
lib/thunarx-2/thunar-media-tags-plugin.la
2
lib/thunarx-2/thunar-media-tags-plugin.la
3
lib/thunarx-2/thunar-media-tags-plugin.so
3
lib/thunarx-2/thunar-media-tags-plugin.so
4
share/locale/ar/LC_MESSAGES/thunar-media-tags-plugin.mo
5
share/locale/ast/LC_MESSAGES/thunar-media-tags-plugin.mo
4
share/locale/ca/LC_MESSAGES/thunar-media-tags-plugin.mo
6
share/locale/ca/LC_MESSAGES/thunar-media-tags-plugin.mo
5
share/locale/cs/LC_MESSAGES/thunar-media-tags-plugin.mo
7
share/locale/cs/LC_MESSAGES/thunar-media-tags-plugin.mo
8
share/locale/da/LC_MESSAGES/thunar-media-tags-plugin.mo
6
share/locale/de/LC_MESSAGES/thunar-media-tags-plugin.mo
9
share/locale/de/LC_MESSAGES/thunar-media-tags-plugin.mo
7
share/locale/el/LC_MESSAGES/thunar-media-tags-plugin.mo
10
share/locale/el/LC_MESSAGES/thunar-media-tags-plugin.mo
11
share/locale/en_GB/LC_MESSAGES/thunar-media-tags-plugin.mo
12
share/locale/es/LC_MESSAGES/thunar-media-tags-plugin.mo
8
share/locale/eu/LC_MESSAGES/thunar-media-tags-plugin.mo
13
share/locale/eu/LC_MESSAGES/thunar-media-tags-plugin.mo
14
share/locale/fi/LC_MESSAGES/thunar-media-tags-plugin.mo
9
share/locale/fr/LC_MESSAGES/thunar-media-tags-plugin.mo
15
share/locale/fr/LC_MESSAGES/thunar-media-tags-plugin.mo
10
share/locale/gl/LC_MESSAGES/thunar-media-tags-plugin.mo
16
share/locale/gl/LC_MESSAGES/thunar-media-tags-plugin.mo
17
share/locale/hr/LC_MESSAGES/thunar-media-tags-plugin.mo
11
share/locale/hu/LC_MESSAGES/thunar-media-tags-plugin.mo
18
share/locale/hu/LC_MESSAGES/thunar-media-tags-plugin.mo
19
share/locale/id/LC_MESSAGES/thunar-media-tags-plugin.mo
20
share/locale/it/LC_MESSAGES/thunar-media-tags-plugin.mo
12
share/locale/ja/LC_MESSAGES/thunar-media-tags-plugin.mo
21
share/locale/ja/LC_MESSAGES/thunar-media-tags-plugin.mo
22
share/locale/kk/LC_MESSAGES/thunar-media-tags-plugin.mo
23
share/locale/lv/LC_MESSAGES/thunar-media-tags-plugin.mo
24
share/locale/nb/LC_MESSAGES/thunar-media-tags-plugin.mo
13
share/locale/nl/LC_MESSAGES/thunar-media-tags-plugin.mo
25
share/locale/nl/LC_MESSAGES/thunar-media-tags-plugin.mo
14
share/locale/pa/LC_MESSAGES/thunar-media-tags-plugin.mo
26
share/locale/pa/LC_MESSAGES/thunar-media-tags-plugin.mo
15
share/locale/pl/LC_MESSAGES/thunar-media-tags-plugin.mo
27
share/locale/pl/LC_MESSAGES/thunar-media-tags-plugin.mo
28
share/locale/pt/LC_MESSAGES/thunar-media-tags-plugin.mo
29
share/locale/pt_BR/LC_MESSAGES/thunar-media-tags-plugin.mo
16
share/locale/ru/LC_MESSAGES/thunar-media-tags-plugin.mo
30
share/locale/ru/LC_MESSAGES/thunar-media-tags-plugin.mo
31
share/locale/sk/LC_MESSAGES/thunar-media-tags-plugin.mo
32
share/locale/sq/LC_MESSAGES/thunar-media-tags-plugin.mo
33
share/locale/sv/LC_MESSAGES/thunar-media-tags-plugin.mo
34
share/locale/tr/LC_MESSAGES/thunar-media-tags-plugin.mo
35
share/locale/ug/LC_MESSAGES/thunar-media-tags-plugin.mo
36
share/locale/uk/LC_MESSAGES/thunar-media-tags-plugin.mo
37
share/locale/ur/LC_MESSAGES/thunar-media-tags-plugin.mo
38
share/locale/ur_PK/LC_MESSAGES/thunar-media-tags-plugin.mo
39
share/locale/zh_CN/LC_MESSAGES/thunar-media-tags-plugin.mo
17
share/locale/zh_TW/LC_MESSAGES/thunar-media-tags-plugin.mo
40
share/locale/zh_TW/LC_MESSAGES/thunar-media-tags-plugin.mo
41
@dirrmtry share/locale/ur_PK/LC_MESSAGES
42
@dirrmtry share/locale/ur_PK
43
@dirrmtry share/locale/ur/LC_MESSAGES
44
@dirrmtry share/locale/ur
45
@dirrmtry share/locale/ug/LC_MESSAGES
46
@dirrmtry share/locale/ug
47
@dirrmtry share/locale/kk/LC_MESSAGES
48
@dirrmtry share/locale/kk
49
@dirrmtry share/locale/ast/LC_MESSAGES
50
@dirrmtry share/locale/ast
18
@dirrmtry lib/thunarx-2
51
@dirrmtry lib/thunarx-2

Return to bug 163000