Gentoo Archives: gentoo-commits

From: "Anant Narayanan (anant)" <anant@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libpcre: ChangeLog libpcre-7.4.ebuild
Date: Wed, 10 Oct 2007 18:49:48
Message-Id: E1IfgTQ-0001C4-8q@stork.gentoo.org
1 anant 07/10/10 18:40:00
2
3 Modified: ChangeLog
4 Added: libpcre-7.4.ebuild
5 Log:
6 Bump to 7.4 (bug #194269)
7 (Portage version: 2.1.3.12)
8
9 Revision Changes Path
10 1.108 dev-libs/libpcre/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libpcre/ChangeLog?rev=1.108&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libpcre/ChangeLog?rev=1.108&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libpcre/ChangeLog?r1=1.107&r2=1.108
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libpcre/ChangeLog,v
19 retrieving revision 1.107
20 retrieving revision 1.108
21 diff -u -r1.107 -r1.108
22 --- ChangeLog 10 Oct 2007 05:55:26 -0000 1.107
23 +++ ChangeLog 10 Oct 2007 18:39:59 -0000 1.108
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-libs/libpcre
26 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpcre/ChangeLog,v 1.107 2007/10/10 05:55:26 solar Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpcre/ChangeLog,v 1.108 2007/10/10 18:39:59 anant Exp $
29 +
30 +*libpcre-7.4 (11 Oct 2007)
31 +
32 + 11 Oct 2007; Anant Narayanan <anant@g.o> +libpcre-7.4.ebuild:
33 + Bump to 7.4 (bug #194269)
34
35 *libpcre-7.3-r1 (10 Oct 2007)
36
37
38
39
40 1.1 dev-libs/libpcre/libpcre-7.4.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libpcre/libpcre-7.4.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libpcre/libpcre-7.4.ebuild?rev=1.1&content-type=text/plain
44
45 Index: libpcre-7.4.ebuild
46 ===================================================================
47 # Copyright 1999-2007 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libpcre/libpcre-7.4.ebuild,v 1.1 2007/10/10 18:39:59 anant Exp $
50
51 inherit libtool eutils
52
53 MY_P="pcre-${PV}"
54
55 DESCRIPTION="Perl-compatible regular expression library"
56 HOMEPAGE="http://www.pcre.org/"
57 SRC_URI="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${MY_P}.tar.bz2"
58
59 LICENSE="BSD"
60 SLOT="3"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
62 IUSE="doc unicode"
63
64 DEPEND="dev-util/pkgconfig"
65 RDEPEND=""
66
67 S=${WORKDIR}/${MY_P}
68
69 src_unpack() {
70 unpack ${A}
71 cd "${S}"
72 elibtoolize
73 }
74
75 src_compile() {
76 if use unicode; then
77 myconf="--enable-utf8 --enable-unicode-properties"
78 fi
79 myconf="${myconf} --with-match-limit-recursion=8192"
80 # Enable building of static libs too - grep and others
81 # depend on them being built: bug 164099
82 econf ${myconf} --enable-static || die "econf failed"
83 emake all || die "emake failed"
84 }
85
86 src_install() {
87 emake DESTDIR="${D}" install || die "make install failed"
88
89 dodoc doc/*.txt AUTHORS
90 use doc && dohtml doc/html/*
91 }
92
93
94
95 --
96 gentoo-commits@g.o mailing list