8e81891a97
KanjiPad is a very simple program for handwriting recognition - The user draws a character into the box, then requests translation. The best candidates are displayed along the right hand side of the window and can be selected for pasting into other programs. It is meant primarily for dictionary purposes for learners of Japanese - it does not support entering kana, so it's usefulness as an input method is limited. Furthermore, if you already know the reading of a character, conventional pronunciation based methods of entering the character are probably faster.
18 lines
406 B
Text
18 lines
406 B
Text
$NetBSD: patch-aa,v 1.1.1.1 2002/07/14 10:03:54 wiz Exp $
|
|
|
|
--- Makefile.orig Wed Mar 31 09:36:32 1999
|
|
+++ Makefile
|
|
@@ -1,10 +1,10 @@
|
|
OPTIMIZE=-g -Wall
|
|
#OPTIMIZE=-O2
|
|
|
|
-GTKLIBS=`gtk-config --libs`
|
|
-GTKINC=`gtk-config --cflags`
|
|
+GTKLIBS=`${GTK_CONFIG} --libs`
|
|
+GTKINC=`${GTK_CONFIG} --cflags`
|
|
|
|
-PREFIX=/usr/local
|
|
+#PREFIX=/usr/local
|
|
DATADIR=$(PREFIX)/share
|
|
|
|
# location in which binaries are installed
|