blob: e8d4216a0f337bc8dd7b42606f0cbd3eb1f145f9 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-chasen/ruby-chasen-1.6.ebuild,v 1.3 2004/09/27 02:35:08 usata Exp $
inherit ruby
MY_P="${PN/ruby-}${PV}"
DESCRIPTION="ChaSen module for Ruby"
HOMEPAGE="http://raa.ruby-lang.org/list.rhtml?name=ruby-chasen"
SRC_URI="http://www.itlb.te.noda.sut.ac.jp/~ikarashi/ruby/${MY_P}.tar.gz"
LICENSE="Ruby"
SLOT="0"
KEYWORDS="x86 ~amd64 ppc"
IUSE=""
DEPEND="virtual/ruby
>=app-text/chasen-2.3.3-r2"
S=${WORKDIR}/${MY_P}
src_compile() {
econf -L/usr/lib
sed -i -e '/^LIBS/s/$/ -lstdc++/' Makefile || die
emake
}
|