Gentoo Archives: gentoo-commits

From: "Anthony G. Basile (blueness)" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/xapian: xapian-1.2.11.ebuild ChangeLog
Date: Thu, 28 Jun 2012 02:44:44
Message-Id: 20120628024426.A97492004C@flycatcher.gentoo.org
1 blueness 12/06/28 02:44:26
2
3 Modified: ChangeLog
4 Added: xapian-1.2.11.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.1.10.65/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.78 dev-libs/xapian/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/ChangeLog?rev=1.78&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/ChangeLog?rev=1.78&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/ChangeLog?r1=1.77&r2=1.78
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v
20 retrieving revision 1.77
21 retrieving revision 1.78
22 diff -u -r1.77 -r1.78
23 --- ChangeLog 10 May 2012 08:59:58 -0000 1.77
24 +++ ChangeLog 28 Jun 2012 02:44:26 -0000 1.78
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/xapian
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v 1.77 2012/05/10 08:59:58 blueness Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v 1.78 2012/06/28 02:44:26 blueness Exp $
30 +
31 +*xapian-1.2.11 (28 Jun 2012)
32 +
33 + 28 Jun 2012; Anthony G. Basile <blueness@g.o> +xapian-1.2.11.ebuild:
34 + Version bump
35
36 *xapian-1.2.10 (10 May 2012)
37
38
39
40
41 1.1 dev-libs/xapian/xapian-1.2.11.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/xapian-1.2.11.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/xapian-1.2.11.ebuild?rev=1.1&content-type=text/plain
45
46 Index: xapian-1.2.11.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/xapian-1.2.11.ebuild,v 1.1 2012/06/28 02:44:26 blueness Exp $
51
52 EAPI="4"
53
54 MY_P="${PN}-core-${PV}"
55
56 DESCRIPTION="Xapian Probabilistic Information Retrieval library"
57 HOMEPAGE="http://www.xapian.org/"
58 SRC_URI="http://oligarchy.co.uk/xapian/${PV}/${MY_P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
63 IUSE="doc static-libs -sse +sse2 +brass +chert +flint +inmemory +remote"
64
65 DEPEND="sys-libs/zlib"
66 RDEPEND="${DEPEND}"
67
68 S="${WORKDIR}/${MY_P}"
69
70 src_configure() {
71 local myconf=""
72
73 ewarn
74 if use sse2; then
75 ewarn "Using sse2"
76 myconf="${myconf} --enable-sse=sse2"
77 else
78 if use sse; then
79 ewarn "Using sse"
80 myconf="${myconf} --enable-sse=sse"
81 else
82 ewarn "Disabling sse and sse2"
83 myconf="${myconf} --disable-sse"
84 fi
85 fi
86 ewarn
87
88 myconf="${myconf} $(use_enable static-libs static)"
89
90 use brass || myconf="${myconf} --disable-backend-brass"
91 use chert || myconf="${myconf} --disable-backend-chert"
92 use flint || myconf="${myconf} --disable-backend-flint"
93 use inmemory || myconf="${myconf} --disable-backend-inmemory"
94 use remote || myconf="${myconf} --disable-backend-remote"
95
96 econf $myconf
97 }
98
99 src_install() {
100 emake DESTDIR="${D}" install
101
102 mv "${D}usr/share/doc/xapian-core" "${D}usr/share/doc/${PF}"
103 use doc || rm -rf "${D}usr/share/doc/${PF}"
104
105 dodoc AUTHORS HACKING PLATFORMS README NEWS
106 }
107
108 src_test() {
109 emake check VALGRIND=
110 }