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