blob: bb1992c90225c62d5656a1285d6cc64fd52d6522 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/oniguruma/oniguruma-5.9.0.ebuild,v 1.8 2008/03/10 11:11:54 armin76 Exp $
MY_P=onig-${PV}
DESCRIPTION="a regular expression library for different character encodings"
HOMEPAGE="http://www.geocities.jp/kosako3/oniguruma"
SRC_URI="http://www.geocities.jp/kosako3/oniguruma/archive/${MY_P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="alpha amd64 ppc x86"
IUSE=""
S=${WORKDIR}/${MY_P}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc AUTHORS HISTORY README* doc/*
}
|