blob: 9d196ad68d3052a3d407135aeaf71f37bccce4c7 (
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.1.ebuild,v 1.4 2008/02/11 03:07:12 ranger 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 ~mips ~ppc ~ppc64 ~x86"
IUSE=""
S=${WORKDIR}/${MY_P}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc AUTHORS HISTORY README* doc/*
}
|