44440faafd
2009-09-27 MeCab 0.98 * UTF16 support (experimental) * On Windows, changed to use Native API (ex. MultiByteToWideChar) for codeset conversion. * Convert source code to Google coding style. * Add EON (end of N-best) format option (-S or --eon-format) * Fixes problems hankaku-kana handling on Shift-JIS environment * support online leraning (experimental) * Now buildable without -Wno-deprecated * and some small fixes.
33 lines
796 B
Makefile
33 lines
796 B
Makefile
# $NetBSD: Makefile,v 1.3 2009/10/14 08:22:35 obache Exp $
|
|
#
|
|
|
|
.include "../../textproc/mecab/Makefile.common"
|
|
|
|
DISTNAME= mecab-java-${MECAB_VERSION}
|
|
PKGNAME= java-mecab-${MECAB_VERSION}
|
|
CATEGORIES+= java
|
|
|
|
COMMENT= MeCab java module
|
|
LICENSE= gnu-gpl-v2 OR gnu-lgpl-v2.1 OR modified-bsd
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_LANGUAGES= c++
|
|
|
|
TEST_TARGET= test
|
|
|
|
do-install:
|
|
${INSTALL_LIB} ${WRKSRC}/libMeCab.so ${DESTDIR}${PREFIX}/lib
|
|
${INSTALL_LIB} ${WRKSRC}/MeCab.jar ${DESTDIR}${PREFIX}/lib
|
|
|
|
BUILDLINK_API_DEPENDS.mecab+= mecab>=${MECAB_VERSION}
|
|
|
|
.include "../../textproc/mecab/buildlink3.mk"
|
|
.include "../../mk/java-vm.mk"
|
|
CXXFLAGS+= -I${PKG_JAVA_HOME}/include
|
|
.for d in ${PKG_JAVA_HOME}/include/*
|
|
. if exists(${d}/jni_md.h)
|
|
CXXFLAGS+= -I${d}
|
|
. endif
|
|
.endfor
|
|
.include "../../mk/bsd.pkg.mk"
|