blob: 5aac150cc3bcbbc03b4cbb64e2c9be1b811cc738 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/mecab-perl/mecab-perl-0.92.ebuild,v 1.4 2006/10/20 17:37:32 mcummings Exp $
inherit perl-module
DESCRIPTION="MeCab library module for Perl."
HOMEPAGE="http://mecab.sourceforge.jp/"
SRC_URI="mirror://sourceforge.jp/mecab/20898/${P}.tar.gz"
SLOT="0"
LICENSE="|| ( GPL-2 LGPL-2.1 BSD )"
KEYWORDS="amd64 ~x86"
IUSE=""
DEPEND=">=app-text/mecab-${PV}
dev-lang/perl"
src_test() {
perl test.pl || die "test.pl failed"
perl test2.pl || die "test2.pl failed"
}
src_install() {
perl-module_src_install || die "perl-module_src_install failed"
dohtml bindings.html || die "dohtml failed"
dodoc test.pl test2.pl || die "dodoc test{,2}.pl failed"
}
|