diff options
author | wiz <wiz> | 2002-07-14 10:03:54 +0000 |
---|---|---|
committer | wiz <wiz> | 2002-07-14 10:03:54 +0000 |
commit | 54498c86e0173d2f791ff16bbafb96b7dae714f1 (patch) | |
tree | 189d5efc8ce321cf697336796f7191a7629e63bc /misc/kanjipad/Makefile | |
parent | b8861a22a4e0a1f71d7806c6638238237cb223b8 (diff) | |
download | pkgsrc-54498c86e0173d2f791ff16bbafb96b7dae714f1.tar.gz |
Initial import of kanjipad.
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.
Diffstat (limited to 'misc/kanjipad/Makefile')
-rw-r--r-- | misc/kanjipad/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/misc/kanjipad/Makefile b/misc/kanjipad/Makefile new file mode 100644 index 00000000000..eb81c2312b4 --- /dev/null +++ b/misc/kanjipad/Makefile @@ -0,0 +1,23 @@ +# $NetBSD: Makefile,v 1.1.1.1 2002/07/14 10:03:54 wiz Exp $ +# + +DISTNAME= kanjipad-1.2.1 +CATEGORIES= misc +MASTER_SITES= ftp://ftp.gtk.org/pub/users/otaylor/kanjipad/ + +MAINTAINER= wiz@netbsd.org +HOMEPAGE= http://www.gtk.org/~otaylor/kanjipad/index.html +COMMENT= Japanese handwriting recognition with GTK interface + +BUILD_DEPENDS+= perl>=5.0:../../lang/perl5 + +USE_BUILDLINK_ONLY= YES + +do-install: + ${INSTALL_DATA_DIR} ${PREFIX}/share/kanjipad + ${INSTALL_PROGRAM} ${WRKSRC}/kanjipad ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/kpengine ${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/jdata.dat ${PREFIX}/share/kanjipad + +.include "../../x11/gtk/buildlink.mk" +.include "../../mk/bsd.pkg.mk" |