summaryrefslogtreecommitdiff
path: root/textproc/uim
diff options
context:
space:
mode:
authorMANTANI Nobutaka <nobutaka@FreeBSD.org>2003-12-11 10:02:59 +0000
committerMANTANI Nobutaka <nobutaka@FreeBSD.org>2003-12-11 10:02:59 +0000
commit0872d5dcc10c1bc77a8d12b9de82201cff7b2020 (patch)
tree33126e5dcfb8f5ae6dd1202b7111ca5fe75917da /textproc/uim
parentUpdate to 1.8.1, mostly minor bugfixes. See docs/Changelog for details. (diff)
Update to 0.2.0.
Notes
Notes: svn path=/head/; revision=95590
Diffstat (limited to 'textproc/uim')
-rw-r--r--textproc/uim/Makefile5
-rw-r--r--textproc/uim/distinfo2
-rw-r--r--textproc/uim/files/patch-Makefile.in11
-rw-r--r--textproc/uim/files/patch-helper:helper-applet.c23
-rw-r--r--textproc/uim/files/patch-helper:helper-candwin-gtk.c15
-rw-r--r--textproc/uim/files/patch-xim:Makefile.in11
-rw-r--r--textproc/uim/pkg-plist1
7 files changed, 27 insertions, 41 deletions
diff --git a/textproc/uim/Makefile b/textproc/uim/Makefile
index cafe1db673c5..2b5ad71ca969 100644
--- a/textproc/uim/Makefile
+++ b/textproc/uim/Makefile
@@ -6,14 +6,15 @@
#
PORTNAME= uim
-PORTVERSION= 0.1.7
+PORTVERSION= 0.2.0
CATEGORIES= japanese x11
MASTER_SITES= http://freedesktop.org/Software/uim/
MAINTAINER= nobutaka@FreeBSD.org
COMMENT= Input method library
-LIB_DEPENDS= anthy.0:${PORTSDIR}/japanese/anthy
+LIB_DEPENDS= anthy.0:${PORTSDIR}/japanese/anthy \
+ iconv.3:${PORTSDIR}/converters/libiconv
USE_X_PREFIX= yes
INSTALLS_SHLIB= yes
diff --git a/textproc/uim/distinfo b/textproc/uim/distinfo
index 19b697760c58..2afbf4510ba6 100644
--- a/textproc/uim/distinfo
+++ b/textproc/uim/distinfo
@@ -1 +1 @@
-MD5 (uim-0.1.7.tar.gz) = fb9bfb998a47fc1d4366eb3ce6d13c87
+MD5 (uim-0.2.0.tar.gz) = 72d5ae116e983cff0535933faadc0f82
diff --git a/textproc/uim/files/patch-Makefile.in b/textproc/uim/files/patch-Makefile.in
new file mode 100644
index 000000000000..6ec0c3dc7c7c
--- /dev/null
+++ b/textproc/uim/files/patch-Makefile.in
@@ -0,0 +1,11 @@
+--- Makefile.in.orig Wed Dec 10 23:28:20 2003
++++ Makefile.in Wed Dec 10 23:29:10 2003
+@@ -198,7 +198,7 @@
+ @GTK2_TRUE@gtk_entry_CFLAGS = @GTK2_CFLAGS@
+
+ uim_agent_SOURCES = agent.c
+-uim_agent_LDADD = uim/libuim.la
++uim_agent_LDADD = uim/libuim.la -liconv
+
+ ACLOCAL_AMFLAGS = -I m4
+ subdir = .
diff --git a/textproc/uim/files/patch-helper:helper-applet.c b/textproc/uim/files/patch-helper:helper-applet.c
deleted file mode 100644
index 9a872a80a11a..000000000000
--- a/textproc/uim/files/patch-helper:helper-applet.c
+++ /dev/null
@@ -1,23 +0,0 @@
---- helper/helper-applet.c.orig Tue Oct 14 00:07:31 2003
-+++ helper/helper-applet.c Tue Oct 14 00:24:43 2003
-@@ -134,6 +134,7 @@
- gchar **tmp2 = NULL;
- gchar *charset = NULL;
- GString *path = g_string_new("");
-+ GtkItemFactoryEntry entry;
-
- tmp2 = g_strsplit(tmp[1], "=", 0);
-
-@@ -176,7 +177,11 @@
- gtk_widget_show(button);
- } else if(strcmp("leaf", tmp2[0]) == 0) {
- g_string_printf(path, "/%s", tmp2[2]);
-- GtkItemFactoryEntry entry = {path->str, NULL, G_CALLBACK(activate_event), 0, ""};
-+ entry.path = path->str;
-+ entry.accelerator = NULL;
-+ entry.callback = G_CALLBACK(activate_event);
-+ entry.callback_action = 0;
-+ entry.item_type = "";
- gtk_item_factory_create_item ( mode_item_fact, &entry, tmp2[4], 1);
-
- }
diff --git a/textproc/uim/files/patch-helper:helper-candwin-gtk.c b/textproc/uim/files/patch-helper:helper-candwin-gtk.c
deleted file mode 100644
index 9d85f729dab2..000000000000
--- a/textproc/uim/files/patch-helper:helper-candwin-gtk.c
+++ /dev/null
@@ -1,15 +0,0 @@
---- helper/helper-candwin-gtk.c.orig Sun Nov 9 02:26:21 2003
-+++ helper/helper-candwin-gtk.c Sun Nov 9 02:27:22 2003
-@@ -160,10 +160,11 @@
- {
- int index;
- char idx[20];
-+ GtkTreePath* path;
- sscanf(str[1],"%d",&index);
- cwin.candidate_index = index;
-
-- GtkTreePath* path = gtk_tree_path_new_from_indices(index, -1);
-+ path = gtk_tree_path_new_from_indices(index, -1);
- gtk_tree_view_set_cursor(GTK_TREE_VIEW(m_view),
- path, NULL, FALSE);
- gtk_tree_view_scroll_to_cell(GTK_TREE_VIEW(m_view),
diff --git a/textproc/uim/files/patch-xim:Makefile.in b/textproc/uim/files/patch-xim:Makefile.in
new file mode 100644
index 000000000000..74878dad9beb
--- /dev/null
+++ b/textproc/uim/files/patch-xim:Makefile.in
@@ -0,0 +1,11 @@
+--- xim/Makefile.in.orig Wed Dec 10 23:36:10 2003
++++ xim/Makefile.in Wed Dec 10 23:37:25 2003
+@@ -182,7 +182,7 @@
+
+ bin_PROGRAMS = uim-xim
+ uim_xim_LDFLAGS = -L/usr/lib -L/usr/X11R6/lib
+-uim_xim_LDADD = -lXext -lX11 ../uim/libuim.la
++uim_xim_LDADD = -lXext -lX11 ../uim/libuim.la -liconv
+
+ uim_xim_SOURCES = \
+ main.cpp convdisp.cpp \
diff --git a/textproc/uim/pkg-plist b/textproc/uim/pkg-plist
index 2025c238f9ee..01ac95d2f9a4 100644
--- a/textproc/uim/pkg-plist
+++ b/textproc/uim/pkg-plist
@@ -12,6 +12,7 @@ lib/libuim.a
lib/libuim.la
lib/libuim.so
lib/libuim.so.0
+lib/pkgconfig/uim.pc
%%GNOME%%libexec/uim-helper-applet
%%PORTDOCS%%%%DOCSDIR_JA%%/README.ja
%%PORTDOCS%%%%DOCSDIR%%/README