# $Id: Portfile,v 1.2 2006/03/02 21:42:06 takanori Exp $ set ipa ipadic-2.7.0 PortSystem 1.0 name chasen version 2.3.3 revision 1 categories textproc maintainers takanori@opendarwin.org description Japanese morphological analysis system long_description ChaSen is a tool to analyze a text according to a set of dictionaries that \ specifies grammer, part of speech of words, and so on. Because ChaSen itself \ has no dictionaries, we need explicit dictionaries to use. IPADIC is such a \ set of dictionaries that specifies Japanese language. \ \ This version of chasen treats encoding of input as EUC-JP, and its output is \ encoded as EUC-JP by default. platforms darwin homepage http://chasen.naist.jp/hiki/ChaSen/ master_sites http://chasen.naist.jp/stable/chasen/:chasen \ http://chasen.naist.jp/stable/ipadic/:ipadic distfiles ${name}-${version}.tar.gz:chasen patchfiles configure.diff dartsdic.cpp.patch checksums ${name}-${version}.tar.gz md5 629e90d9490bac95606c38c2d344cc5f \ sha1 711f5717ee284d26aa5616292f7aaffaef11d03a \ rmd160 2f2416f82fb0341023314a4672e442fed86207a9 \ ${ipa}.tar.gz md5 f36d315cae25b086a889b7090c674977 \ sha1 52784d8abb3361eafec83ab543be63cf087f9eb2 \ rmd160 5e37c750801df63439032be4954c4b63a44012cb default_variants +ipadic depends_lib port:darts lib:libiconv:libiconv configure.args-append --libexecdir=${prefix}/lib --with-darts=${prefix}/include --with-libiconv=${prefix} post-destroot { xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name}/doc xinstall -m 644 -W ${worksrcpath} AUTHORS COPYING ChangeLog INSTALL NEWS README ${destroot}${prefix}/share/doc/${name} xinstall -m 644 ${worksrcpath}/doc/manual-j.pdf ${destroot}${prefix}/share/doc/${name}/doc } variant ipadic { # Japanese dictionary for ChaSen distfiles-append ${ipa}.tar.gz:ipadic post-destroot { system "cd ${workpath}/${ipa} && ./configure --with-dicdir=${prefix}/lib/chasen/dic --with-mkchadic=${destroot}${prefix}/lib/chasen --with-chasenrc-path=${destroot}${prefix}/etc/chasenrc && DYLD_LIBRARY_PATH=${destroot}${prefix}/lib make && make install DESTDIR=${destroot}" xinstall -m 755 -d ${destroot}${prefix}/share/doc/ipadic/doc xinstall -m 644 -W ${workpath}/${ipa} AUTHORS COPYING ChangeLog INSTALL INSTALL-ja NEWS README ${destroot}${prefix}/share/doc/ipadic xinstall -m 644 ${workpath}/${ipa}/doc/ipadic-ja.pdf ${destroot}${prefix}/share/doc/ipadic/doc } }