Gentoo Archives: gentoo-commits

From: "Christian Faulhammer (opfer)" <opfer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libpcre: ChangeLog libpcre-7.6.ebuild
Date: Wed, 06 Feb 2008 00:01:04
Message-Id: E1JMXij-0001ex-HO@stork.gentoo.org
1 opfer 08/02/06 00:00:57
2
3 Modified: ChangeLog
4 Added: libpcre-7.6.ebuild
5 Log:
6 version bump, bug 208879, reported by Arfrever Frehtes Taifersar Arahesis <Arfrever DOT FTA AT GMail DOT Com>
7 (Portage version: 2.1.3.19)
8
9 Revision Changes Path
10 1.126 dev-libs/libpcre/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libpcre/ChangeLog?rev=1.126&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libpcre/ChangeLog?rev=1.126&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libpcre/ChangeLog?r1=1.125&r2=1.126
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libpcre/ChangeLog,v
19 retrieving revision 1.125
20 retrieving revision 1.126
21 diff -u -r1.125 -r1.126
22 --- ChangeLog 5 Feb 2008 23:49:31 -0000 1.125
23 +++ ChangeLog 6 Feb 2008 00:00:57 -0000 1.126
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-libs/libpcre
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpcre/ChangeLog,v 1.125 2008/02/05 23:49:31 opfer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpcre/ChangeLog,v 1.126 2008/02/06 00:00:57 opfer Exp $
29 +
30 +*libpcre-7.6 (06 Feb 2008)
31 +
32 + 06 Feb 2008; Christian Faulhammer <opfer@g.o> +libpcre-7.6.ebuild:
33 + version bump, bug 208879, reported by Arfrever Frehtes Taifersar Arahesis
34 + <Arfrever DOT FTA AT GMail DOT Com>
35
36 05 Feb 2008; Christian Faulhammer <opfer@g.o>
37 libpcre-7.4-r1.ebuild:
38
39
40
41 1.1 dev-libs/libpcre/libpcre-7.6.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libpcre/libpcre-7.6.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libpcre/libpcre-7.6.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libpcre-7.6.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libpcre/libpcre-7.6.ebuild,v 1.1 2008/02/06 00:00:57 opfer Exp $
51
52 EAPI=1
53
54 inherit libtool eutils
55
56 MY_P="pcre-${PV}"
57
58 DESCRIPTION="Perl-compatible regular expression library"
59 HOMEPAGE="http://www.pcre.org/"
60 SRC_URI="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${MY_P}.tar.bz2"
61
62 LICENSE="BSD"
63 SLOT="3"
64 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
65 IUSE="bzip2 +cxx doc unicode zlib"
66
67 DEPEND="dev-util/pkgconfig"
68 RDEPEND=""
69
70 S=${WORKDIR}/${MY_P}
71
72 src_unpack() {
73 unpack ${A}
74 cd "${S}"
75 elibtoolize
76 }
77
78 src_compile() {
79 # Enable building of static libs too - grep and others
80 # depend on them being built: bug 164099
81 econf --with-match-limit-recursion=8192 \
82 $(use_enable unicode utf8) $(use_enable unicode unicode-properties) \
83 $(use_enable cxx cpp) \
84 $(use_enable zlib pcregrep-libz) \
85 $(use_enable bzip2 pcregrep-libbz2) \
86 --enable-static \
87 --htmldir=/usr/share/doc/${PF}/html \
88 --docdir=/usr/share/doc/${PF} \
89 || die "econf failed"
90 emake all || die "emake failed"
91 }
92
93 src_install() {
94 emake DESTDIR="${D}" install || die "make install failed"
95
96 dodoc doc/*.txt AUTHORS
97 use doc && dohtml doc/html/*
98 }
99
100
101
102 --
103 gentoo-commits@l.g.o mailing list