mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
50 lines
1.9 KiB
Tcl
50 lines
1.9 KiB
Tcl
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
|
|
|
|
PortSystem 1.0
|
|
|
|
name kakasi
|
|
epoch 1
|
|
version 2.3.6
|
|
categories textproc japanese
|
|
maintainers nomaintainer
|
|
description Program that converts Kanji text to other scripts
|
|
long_description KAKASI (Kanji Kana Simple Inverter) is a language processing filter which \
|
|
converts Kanji characters to Hiragana, Katakana, or Romaji. It may be \
|
|
helpful for reading Japanese documents.
|
|
platforms darwin
|
|
license GPL-2+
|
|
homepage http://kakasi.namazu.org/
|
|
master_sites http://kakasi.namazu.org/stable/
|
|
patchfiles patch-tests_kakasi-1.diff \
|
|
patch-tests_kakasi-4.diff \
|
|
patch-tests_kakasi-5.diff \
|
|
patch-tests_kakasi-6.diff \
|
|
patch-tests_kakasi-7.diff \
|
|
patch-configure.in.diff
|
|
|
|
checksums rmd160 db4a5dcacce407c54771c2473cd6b03751dba79f \
|
|
sha256 004276fd5619c003f514822d82d14ae83cd45fb9338e0cb56a44974b44961893 \
|
|
size 1352154
|
|
|
|
depends_lib port:libiconv
|
|
depends_build path:libexec/coreutils/libstdbuf.so:coreutils
|
|
|
|
use_autoconf yes
|
|
|
|
configure.args-append \
|
|
--enable-maintainer-mode
|
|
|
|
test.run yes
|
|
test.target check
|
|
|
|
post-destroot {
|
|
xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name}/doc
|
|
|
|
foreach f {AUTHORS COPYING ChangeLog INSTALL* NEWS ONEWS README* THANKS TODO} {
|
|
xinstall -m 644 {*}[glob ${worksrcpath}/${f}] ${destroot}${prefix}/share/doc/${name}
|
|
}
|
|
foreach f {ChangeLog.lib JISYO README.*} {
|
|
xinstall -m 644 {*}[glob ${worksrcpath}/doc/${f}] ${destroot}${prefix}/share/doc/${name}/doc
|
|
}
|
|
}
|