blob: bad85131ea92a6df460bceee6d3e81f56c56cd93 (
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.3 2008/02/10 21:37:36 dirtyepic 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 ~x86"
IUSE=""
S=${WORKDIR}/${MY_P}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc AUTHORS HISTORY README* doc/*
}
|