Navigation Menu

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add install MeCab dict instruction on FreeBSD. #22

Merged
merged 1 commit into from Apr 18, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 14 additions & 1 deletion _po/ja/install/freebsd.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2017-04-11 10:58+0900\n"
"PO-Revision-Date: 2016-11-30 17:35+0900\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
Expand Down Expand Up @@ -39,6 +39,19 @@ msgid ""
"```"
msgstr ""

msgid ""
"If you want to use [MeCab](http://taku910.github.io/mecab/) as tokenizer, inst"
"all `japanese/mecab-ipadic` additionally"
msgstr ""
"トークナイザーとして[MeCab](http://taku910.github.io/mecab/)を利用する場合は、`japanese/mecab-ipa"
"dic`を追加でインストールします。"

msgid ""
"```text\n"
"% sudo pkg install -y japanese/mecab-ipadic\n"
"```"
msgstr ""

msgid ""
"Create `/etc/rc.conf.d/postgresql` with the following content to enable Postgr"
"eSQL:"
Expand Down
6 changes: 6 additions & 0 deletions install/freebsd.md
Expand Up @@ -16,6 +16,12 @@ Install Groonga, PostgreSQL, pkg-config and GNU Make by `pkg`:
% sudo pkg install -f groonga pkgconf postgresql{{ site.freebsd_postgresql_version }}-server
```

If you want to use [MeCab](http://taku910.github.io/mecab/) as tokenizer, install `japanese/mecab-ipadic` additionally

```text
% sudo pkg install -y japanese/mecab-ipadic
```

Create `/etc/rc.conf.d/postgresql` with the following content to enable PostgreSQL:

`/etc/rc.conf.d/postgresql`:
Expand Down
6 changes: 6 additions & 0 deletions ja/install/freebsd.md
Expand Up @@ -16,6 +16,12 @@ FreeBSDにPGroongaをインストールする方法は次の通りです。
% sudo pkg install -f groonga pkgconf postgresql{{ site.freebsd_postgresql_version }}-server
```

トークナイザーとして[MeCab](http://taku910.github.io/mecab/)を利用する場合は、`japanese/mecab-ipadic`を追加でインストールします。

```text
% sudo pkg install -y japanese/mecab-ipadic
```

PostgreSQLを有効にするために次の内容の`/etc/rc.conf.d/postgresql`を作ります。

`/etc/rc.conf.d/postgresql`:
Expand Down