blob: 4af11976a7ea2afa2c10dce841b9389c55e39657 (
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
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/pcre++/pcre++-0.9.5-r1.ebuild,v 1.3 2007/02/11 11:12:54 vapier Exp $
inherit eutils autotools
DESCRIPTION="A C++ support library for libpcre"
HOMEPAGE="http://www.daemon.de/PCRE"
SRC_URI="ftp://ftp.daemon.de/scip/Apps/${PN}/${P}.tar.gz
mirror://gentoo/${P}-patches.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~s390 ~sh ~sparc ~x86"
IUSE=""
DEPEND="dev-libs/libpcre"
src_unpack() {
unpack ${A}
cd "${S}"
for p in "${WORKDIR}"/${P}-patches/*.patch ; do
epatch "${p}"
done
./autogen.sh || die "autogen.sh failed"
}
src_install() {
emake DESTDIR="${D}" install || die "make failed"
dodoc AUTHORS ChangeLog NEWS README TODO
cd ${S}/doc/html
dohtml -r .
cd ${S}/doc/man/man3
doman Pcre.3
}
|