Revision: 7014
Author:   nogu.dev
Date:     Fri May  6 05:17:56 2011
Log:      * gtk3/toolbar/Makefile.am
  - Add uim-toolbar-applet-gnome3.
* helper/UimApplet.panel-applet.in.in
  - Move to gtk3/toolbar.
* helper/org.gnome.panel.applet.UimAppletFactory.service.in
  - Ditto.
* helper/toolbar-applet-gnome3.c
  - Ditto.
  - Rename to applet-gnome3.c
* helper/Makefile.am
  - Remove uim-toolbar-applet-gnome3.
* po/POTFILES.in
  - Follow change of toolbar-applet-gnome3.c.
http://code.google.com/p/uim/source/detail?r=7014

Added:
 /trunk/gtk3/toolbar/UimApplet.panel-applet.in.in
 /trunk/gtk3/toolbar/applet-gnome3.c
 /trunk/gtk3/toolbar/org.gnome.panel.applet.UimAppletFactory.service.in
Deleted:
 /trunk/helper/UimApplet.panel-applet.in.in
 /trunk/helper/org.gnome.panel.applet.UimAppletFactory.service.in
 /trunk/helper/toolbar-applet-gnome3.c
Modified:
 /trunk/gtk3/toolbar/Makefile.am
 /trunk/helper/Makefile.am
 /trunk/po/POTFILES.in

=======================================
--- /dev/null
+++ /trunk/gtk3/toolbar/UimApplet.panel-applet.in.in Fri May 6 05:17:56 2011
@@ -0,0 +1,10 @@
+[Applet Factory]
+Id=UimAppletFactory
+Location=@LIBEXECDIR@/uim-toolbar-applet-gnome3
+_Name=uim Applet Factory
+_Description=uim applet factory
+
+[UimApplet]
+_Name=Input Method Indicator
+_Description=Indicates and controls the state of input method (for uim)
+Icon=@UIM_PIXMAPSDIR@/uim-icon.png
=======================================
--- /dev/null
+++ /trunk/gtk3/toolbar/applet-gnome3.c Fri May  6 05:17:56 2011
@@ -0,0 +1,185 @@
+/*
+
+  Copyright (c) 2003-2011 uim Project http://code.google.com/p/uim/
+
+  All rights reserved.
+
+  Redistribution and use in source and binary forms, with or without
+  modification, are permitted provided that the following conditions
+  are met:
+
+  1. Redistributions of source code must retain the above copyright
+     notice, this list of conditions and the following disclaimer.
+  2. Redistributions in binary form must reproduce the above copyright
+     notice, this list of conditions and the following disclaimer in the
+     documentation and/or other materials provided with the distribution.
+  3. Neither the name of authors nor the names of its contributors
+     may be used to endorse or promote products derived from this software
+     without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND
+  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+  OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+  OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+  SUCH DAMAGE.
+
+*/
+
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
+#include <stdlib.h>
+#include <string.h>
+#include <locale.h>
+#include <panel-applet.h>
+#include <uim/uim.h>
+#include <uim/gettext.h>
+
+PanelApplet *uimapplet;
+
+static void exec_switcher(GtkAction *action, gpointer data);
+static void exec_pref(GtkAction *action, gpointer data);
+static void exec_dic(GtkAction *action, gpointer data);
+static void exec_pad(GtkAction *action, gpointer data);
+static void exec_hand(GtkAction *action, gpointer data);
+static void exec_help(GtkAction *action, gpointer data);
+static void display_about_dialog(GtkAction *action, gpointer data);
+
+extern GtkWidget *uim_toolbar_applet_new(void);
+extern void uim_launch_helper_application(const char *command);
+
+
+static const GtkActionEntry uim_menu_actions[] = {
+  {"Switcher", "im_switcher",
+    N_("Switch input method"), NULL, NULL, G_CALLBACK(exec_switcher)},
+  {"Pref", GTK_STOCK_PREFERENCES,
+    N_("Preference"), NULL, NULL, G_CALLBACK(exec_pref)},
+  {"Dic", "uim-dict",
+    N_("Japanese dictionary editor"), NULL, NULL, G_CALLBACK(exec_dic)},
+  {"Pad", GTK_STOCK_BOLD,
+    N_("Input pad"), NULL, NULL, G_CALLBACK(exec_pad)},
+  {"Hand", GTK_STOCK_EDIT,
+    N_("Handwriting input pad"), NULL, NULL, G_CALLBACK(exec_hand)},
+  {"Help", GTK_STOCK_HELP,
+    N_("Help"), NULL, NULL, G_CALLBACK(exec_help)},
+  {"About", GTK_STOCK_ABOUT,
+    N_("About"), NULL, NULL, G_CALLBACK(display_about_dialog)}
+};
+
+static const char uim_menu_xml[] =
+  "<menuitem action=\"Switcher\"/>"
+  "<menuitem action=\"Pref\"/>"
+  "<menuitem action=\"Dic\"/>"
+  "<menuitem action=\"Pad\"/>"
+  "<menuitem action=\"Hand\"/>"
+  "<menuitem action=\"Help\"/>"
+  "<menuitem action=\"About\"/>";
+
+static void
+exec_switcher(GtkAction *action, gpointer data)
+{
+  uim_launch_helper_application("uim-im-switcher-gtk");
+}
+
+static void
+exec_pref(GtkAction *action, gpointer data)
+{
+  uim_launch_helper_application("uim-pref-gtk");
+}
+
+static void
+exec_dic(GtkAction *action, gpointer data)
+{
+  uim_launch_helper_application("uim-dict-gtk");
+}
+
+static void
+exec_pad(GtkAction *action, gpointer data)
+{
+  uim_launch_helper_application("uim-input-pad-ja");
+}
+
+static void
+exec_hand(GtkAction *action, gpointer data)
+{
+  uim_launch_helper_application("uim-tomoe-gtk");
+}
+
+static void
+exec_help(GtkAction *uic, gpointer data)
+{
+  uim_launch_helper_application("uim-help");
+}
+
+/* Just the about window... If it's already open, just focus it */
+static void
+display_about_dialog(GtkAction *action, gpointer data)
+{
+  GdkPixbuf *icon = NULL;
+  const gchar *authors[] = {"uim Project", NULL};
+  /* Feel free to put your names here translators */
+  gchar *translators = _("TRANSLATORS");
+  icon = gdk_pixbuf_new_from_file(UIM_PIXMAPSDIR "/uim-icon.png", NULL);
+
+  gtk_show_about_dialog(NULL,
+                          "program-name", _("uim Applet"),
+                          "version", VERSION,
+                          "copyright", "Copyright \xc2\xa9 2003-2011 uim 
Project.",
+                          "comments", _("Applet for indicating uim's status"),
+                          "authors", authors,
+                          "translator-credits",
+                              strcmp("TRANSLATORS", translators) ? translators
+                                                             : NULL,
+                          "icon", icon,
+                          "logo", icon, NULL);
+
+  if (icon) {
+    g_object_unref(icon);
+  }
+}
+
+static gboolean
+uim_applet_new(PanelApplet *applet, const gchar *iid, gpointer data)
+{
+  GtkWidget *toolbar;
+  GtkActionGroup *action_group;
+
+  uimapplet = applet;
+
+  if (strcmp(iid, "UimApplet") != 0)
+    return FALSE;
+
+  uim_init();
+
+  toolbar = (GtkWidget*)uim_toolbar_applet_new();
+
+  gtk_container_add(GTK_CONTAINER(applet), toolbar);
+
+  gtk_widget_show_all(GTK_WIDGET(applet));
+
+  action_group = gtk_action_group_new("uim Applet Actions");
+  gtk_action_group_set_translation_domain(action_group, GETTEXT_PACKAGE);
+  gtk_action_group_add_actions(action_group, uim_menu_actions,
+      G_N_ELEMENTS(uim_menu_actions), toolbar);
+  panel_applet_setup_menu(applet, uim_menu_xml, action_group);
+#if LIBPANEL_APPLET_HAVE_SET_BACKGROUND_WIDGET
+  panel_applet_set_background_widget(applet, GTK_WIDGET(applet));
+#endif
+  g_object_unref(action_group);
+
+  return TRUE;
+}
+
+
+
+PANEL_APPLET_OUT_PROCESS_FACTORY("UimAppletFactory",
+                            PANEL_TYPE_APPLET,
+                            (PanelAppletFactoryCallback)uim_applet_new,
+                            NULL)
=======================================
--- /dev/null
+++ /trunk/gtk3/toolbar/org.gnome.panel.applet.UimAppletFactory.service.in Fri May 6 05:17:56 2011
@@ -0,0 +1,3 @@
+[D-BUS Service]
+Name=org.gnome.panel.applet.UimAppletFactory
+Exec=@LIBEXECDIR@/uim-toolbar-applet-gnome3
=======================================
--- /trunk/helper/UimApplet.panel-applet.in.in  Fri Feb 18 15:07:51 2011
+++ /dev/null
@@ -1,10 +0,0 @@
-[Applet Factory]
-Id=UimAppletFactory
-Location=@LIBEXECDIR@/uim-toolbar-applet-gnome3
-_Name=uim Applet Factory
-_Description=uim applet factory
-
-[UimApplet]
-_Name=Input Method Indicator
-_Description=Indicates and controls the state of input method (for uim)
-Icon=@UIM_PIXMAPSDIR@/uim-icon.png
=======================================
--- /trunk/helper/org.gnome.panel.applet.UimAppletFactory.service.in Fri Feb 18 15:07:51 2011
+++ /dev/null
@@ -1,3 +0,0 @@
-[D-BUS Service]
-Name=org.gnome.panel.applet.UimAppletFactory
-Exec=@LIBEXECDIR@/uim-toolbar-applet-gnome3
=======================================
--- /trunk/helper/toolbar-applet-gnome3.c       Thu May  5 21:18:20 2011
+++ /dev/null
@@ -1,185 +0,0 @@
-/*
-
-  Copyright (c) 2003-2011 uim Project http://code.google.com/p/uim/
-
-  All rights reserved.
-
-  Redistribution and use in source and binary forms, with or without
-  modification, are permitted provided that the following conditions
-  are met:
-
-  1. Redistributions of source code must retain the above copyright
-     notice, this list of conditions and the following disclaimer.
-  2. Redistributions in binary form must reproduce the above copyright
-     notice, this list of conditions and the following disclaimer in the
-     documentation and/or other materials provided with the distribution.
-  3. Neither the name of authors nor the names of its contributors
-     may be used to endorse or promote products derived from this software
-     without specific prior written permission.
-
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND
-  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
-  OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
- HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
-  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
-  OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
-  SUCH DAMAGE.
-
-*/
-
-#ifdef HAVE_CONFIG_H
-#  include <config.h>
-#endif
-
-#include <stdlib.h>
-#include <string.h>
-#include <locale.h>
-#include <panel-applet.h>
-#include <uim/uim.h>
-#include <uim/gettext.h>
-
-PanelApplet *uimapplet;
-
-static void exec_switcher(GtkAction *action, gpointer data);
-static void exec_pref(GtkAction *action, gpointer data);
-static void exec_dic(GtkAction *action, gpointer data);
-static void exec_pad(GtkAction *action, gpointer data);
-static void exec_hand(GtkAction *action, gpointer data);
-static void exec_help(GtkAction *action, gpointer data);
-static void display_about_dialog(GtkAction *action, gpointer data);
-
-extern GtkWidget *uim_toolbar_applet_new(void);
-extern void uim_launch_helper_application(const char *command);
-
-
-static const GtkActionEntry uim_menu_actions[] = {
-  {"Switcher", "im_switcher",
-    N_("Switch input method"), NULL, NULL, G_CALLBACK(exec_switcher)},
-  {"Pref", GTK_STOCK_PREFERENCES,
-    N_("Preference"), NULL, NULL, G_CALLBACK(exec_pref)},
-  {"Dic", "uim-dict",
-    N_("Japanese dictionary editor"), NULL, NULL, G_CALLBACK(exec_dic)},
-  {"Pad", GTK_STOCK_BOLD,
-    N_("Input pad"), NULL, NULL, G_CALLBACK(exec_pad)},
-  {"Hand", GTK_STOCK_EDIT,
-    N_("Handwriting input pad"), NULL, NULL, G_CALLBACK(exec_hand)},
-  {"Help", GTK_STOCK_HELP,
-    N_("Help"), NULL, NULL, G_CALLBACK(exec_help)},
-  {"About", GTK_STOCK_ABOUT,
-    N_("About"), NULL, NULL, G_CALLBACK(display_about_dialog)}
-};
-
-static const char uim_menu_xml[] =
-  "<menuitem action=\"Switcher\"/>"
-  "<menuitem action=\"Pref\"/>"
-  "<menuitem action=\"Dic\"/>"
-  "<menuitem action=\"Pad\"/>"
-  "<menuitem action=\"Hand\"/>"
-  "<menuitem action=\"Help\"/>"
-  "<menuitem action=\"About\"/>";
-
-static void
-exec_switcher(GtkAction *action, gpointer data)
-{
-  uim_launch_helper_application("uim-im-switcher-gtk");
-}
-
-static void
-exec_pref(GtkAction *action, gpointer data)
-{
-  uim_launch_helper_application("uim-pref-gtk");
-}
-
-static void
-exec_dic(GtkAction *action, gpointer data)
-{
-  uim_launch_helper_application("uim-dict-gtk");
-}
-
-static void
-exec_pad(GtkAction *action, gpointer data)
-{
-  uim_launch_helper_application("uim-input-pad-ja");
-}
-
-static void
-exec_hand(GtkAction *action, gpointer data)
-{
-  uim_launch_helper_application("uim-tomoe-gtk");
-}
-
-static void
-exec_help(GtkAction *uic, gpointer data)
-{
-  uim_launch_helper_application("uim-help");
-}
-
-/* Just the about window... If it's already open, just focus it */
-static void
-display_about_dialog(GtkAction *action, gpointer data)
-{
-  GdkPixbuf *icon = NULL;
-  const gchar *authors[] = {"uim Project", NULL};
-  /* Feel free to put your names here translators */
-  gchar *translators = _("TRANSLATORS");
-  icon = gdk_pixbuf_new_from_file(UIM_PIXMAPSDIR "/uim-icon.png", NULL);
-
-  gtk_show_about_dialog(NULL,
-                          "program-name", _("uim Applet"),
-                          "version", VERSION,
-                          "copyright", "Copyright \xc2\xa9 2003-2011 uim 
Project.",
-                          "comments", _("Applet for indicating uim's status"),
-                          "authors", authors,
-                          "translator-credits",
-                              strcmp("TRANSLATORS", translators) ? translators
-                                                             : NULL,
-                          "icon", icon,
-                          "logo", icon, NULL);
-
-  if (icon) {
-    g_object_unref(icon);
-  }
-}
-
-static gboolean
-uim_applet_new(PanelApplet *applet, const gchar *iid, gpointer data)
-{
-  GtkWidget *toolbar;
-  GtkActionGroup *action_group;
-
-  uimapplet = applet;
-
-  if (strcmp(iid, "UimApplet") != 0)
-    return FALSE;
-
-  uim_init();
-
-  toolbar = (GtkWidget*)uim_toolbar_applet_new();
-
-  gtk_container_add(GTK_CONTAINER(applet), toolbar);
-
-  gtk_widget_show_all(GTK_WIDGET(applet));
-
-  action_group = gtk_action_group_new("uim Applet Actions");
-  gtk_action_group_set_translation_domain(action_group, GETTEXT_PACKAGE);
-  gtk_action_group_add_actions(action_group, uim_menu_actions,
-      G_N_ELEMENTS(uim_menu_actions), toolbar);
-  panel_applet_setup_menu(applet, uim_menu_xml, action_group);
-#if LIBPANEL_APPLET_HAVE_SET_BACKGROUND_WIDGET
-  panel_applet_set_background_widget(applet, GTK_WIDGET(applet));
-#endif
-  g_object_unref(action_group);
-
-  return TRUE;
-}
-
-
-
-PANEL_APPLET_OUT_PROCESS_FACTORY("UimAppletFactory",
-                            PANEL_TYPE_APPLET,
-                            (PanelAppletFactoryCallback)uim_applet_new,
-                            NULL)
=======================================
--- /trunk/gtk3/toolbar/Makefile.am     Fri Feb 18 15:07:51 2011
+++ /trunk/gtk3/toolbar/Makefile.am     Fri May  6 05:17:56 2011
@@ -1,3 +1,48 @@
+EXTRA_DIST = UimApplet.panel-applet.in.in \
+            org.gnome.panel.applet.UimAppletFactory.service.in
+
+if APPLET_GNOME3
+helper_defs = -DUIM_DATADIR=\""$(datadir)/@PACKAGE@"\"
+
+libexec_PROGRAMS = uim-toolbar-applet-gnome3
+
+uim_toolbar_applet_gnome3_LDADD = @GTK3_LIBS@ @APPLET_GNOME3_LIBS@ \
+                          $(top_builddir)/uim/libuim-scm.la \
+                          $(top_builddir)/uim/libuim.la \
+                          $(top_builddir)/uim/libuim-custom.la
+uim_toolbar_applet_gnome3_CPPFLAGS = \
+                          $(helper_defs) -I$(top_srcdir) -I$(top_builddir)
+
+uim_toolbar_applet_gnome3_CFLAGS = @GTK3_CFLAGS@ @APPLET_GNOME3_CFLAGS@
+
+uim_toolbar_applet_gnome3_SOURCES = applet-gnome3.c \
+                              ../../helper/toolbar-common-gtk.c
+
+appletdir = $(datadir)/gnome-panel/applets
+applet_DATA = UimApplet.panel-applet
+applet_in_files = $(applet_DATA:=.in)
+applet_in_in_files = $(applet_in_files:=.in)
+
+$(applet_in_files): $(applet_in_in_files) Makefile
+       sed s,@LIBEXECDIR@,$(libexecdir),g <$< >[email protected]
+       sed s,@UIM_PIXMAPSDIR@,$(uim_pixmapsdir),g <[email protected] >$@
+
+po_files = $(wildcard $(top_srcdir)/po/*.po)
+$(applet_DATA): $(applet_in_files) $(INTLTOOL_MERGE) $(po_files)
+ LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@
+
+servicedir = $(datadir)/dbus-1/services
+service_DATA = org.gnome.panel.applet.UimAppletFactory.service
+service_in_files = $(service_DATA:=.in)
+
+$(service_DATA): $(service_in_files) Makefile
+       sed s,@LIBEXECDIR@,$(libexecdir),g <$< >$@
+
+DISTCLEANFILES = UimApplet.panel-applet.in UimApplet.panel-applet \
+                UimApplet.panel-applet.in.tmp \
+                org.gnome.panel.applet.UimAppletFactory.service
+endif
+
 if GTK3
 bin_PROGRAMS = uim-toolbar-gtk3 uim-toolbar-gtk3-systray
 uim_toolbar_gtk3_SOURCES  = ../../helper/toolbar-standalone-gtk.c \
=======================================
--- /trunk/helper/Makefile.am   Fri May  6 01:32:09 2011
+++ /trunk/helper/Makefile.am   Fri May  6 05:17:56 2011
@@ -1,7 +1,4 @@
-EXTRA_DIST = GNOME_UimApplet.server.in.in \
-            UimApplet.panel-applet.in.in \
-            org.gnome.panel.applet.UimAppletFactory.service.in \
-            uim-dict-ui.xml.in
+EXTRA_DIST = GNOME_UimApplet.server.in.in uim-dict-ui.xml.in

 helper_defs = -DUIM_DATADIR=\""$(datadir)/@PACKAGE@"\"

@@ -36,71 +33,15 @@
        sed s,@UIM_PIXMAPSDIR@,$(uim_pixmapsdir),g <[email protected] >$@

 DISTCLEANFILES = GNOME_UimApplet.server.in GNOME_UimApplet.server \
-                GNOME_UimApplet.server.in.tmp toolbar-common-gtk3.c
+                GNOME_UimApplet.server.in.tmp
 endif

-if APPLET_GNOME3
-if APPLET_GNOME
-libexec_PROGRAMS += uim-toolbar-applet-gnome3
-else
-libexec_PROGRAMS = uim-toolbar-applet-gnome3
-endif
-
-uim_toolbar_applet_gnome3_LDADD = @GTK3_LIBS@ @APPLET_GNOME3_LIBS@ \
-                          $(top_builddir)/uim/libuim-scm.la \
-                          $(top_builddir)/uim/libuim.la \
-                          $(top_builddir)/uim/libuim-custom.la
-uim_toolbar_applet_gnome3_CPPFLAGS = \
-                          $(helper_defs) -I$(top_srcdir) -I$(top_builddir)
-
-uim_toolbar_applet_gnome3_CFLAGS = @GTK3_CFLAGS@ @APPLET_GNOME3_CFLAGS@
-
-uim_toolbar_applet_gnome3_SOURCES = toolbar-applet-gnome3.c \
-                              toolbar-common-gtk3.c
-
-toolbar-common-gtk3.c: $(top_srcdir)/helper/toolbar-common-gtk.c
-       $(LN_S) $< $@
-
-appletdir = $(datadir)/gnome-panel/applets
-applet_DATA = UimApplet.panel-applet
-applet_in_files = $(applet_DATA:=.in)
-applet_in_in_files = $(applet_in_files:=.in)
-
-$(applet_in_files): $(applet_in_in_files) Makefile
-       sed s,@LIBEXECDIR@,$(libexecdir),g <$< >[email protected]
-       sed s,@UIM_PIXMAPSDIR@,$(uim_pixmapsdir),g <[email protected] >$@
-
-po_files = $(wildcard $(top_srcdir)/po/*.po)
-$(applet_DATA): $(applet_in_files) $(INTLTOOL_MERGE) $(po_files)
- LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@
-
-servicedir = $(datadir)/dbus-1/services
-service_DATA = org.gnome.panel.applet.UimAppletFactory.service
-service_in_files = $(service_DATA:=.in)
-
-$(service_DATA): $(service_in_files) Makefile
-       sed s,@LIBEXECDIR@,$(libexecdir),g <$< >$@
-
-if APPLET_GNOME
-DISTCLEANFILES += UimApplet.panel-applet.in UimApplet.panel-applet \
-                UimApplet.panel-applet.in.tmp \
-                org.gnome.panel.applet.UimAppletFactory.service
-else
-DISTCLEANFILES = UimApplet.panel-applet.in UimApplet.panel-applet \
-                UimApplet.panel-applet.in.tmp \
-                org.gnome.panel.applet.UimAppletFactory.service
-endif
-endif
-
 if GTK2
bin_PROGRAMS = uim-toolbar-gtk uim-toolbar-gtk-systray uim-im-switcher-gtk \
               uim-input-pad-ja
 if APPLET_GNOME
 libexec_PROGRAMS += uim-candwin-gtk uim-candwin-tbl-gtk
 else
-if APPLET_GNOME3
-libexec_PROGRAMS += uim-candwin-gtk uim-candwin-tbl-gtk
-endif
 libexec_PROGRAMS = uim-candwin-gtk uim-candwin-tbl-gtk
 endif

=======================================
--- /trunk/po/POTFILES.in       Sun Mar 27 01:39:45 2011
+++ /trunk/po/POTFILES.in       Fri May  6 05:17:56 2011
@@ -1,3 +1,4 @@
+gtk3/toolbar/applet-gnome3.c
 helper/GNOME_UimApplet.server.in.in
 helper/dict-anthy.c
 helper/dict-canna.c
@@ -13,7 +14,6 @@
 helper/pref-gtk-custom-widgets.c
 helper/pref-gtk.c
 helper/toolbar-applet-gnome.c
-helper/toolbar-applet-gnome3.c
 helper/toolbar-common-gtk.c
 helper/toolbar-standalone-gtk.c
 qt/pref-customwidgets.cpp

Reply via email to