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.3.3.ebuild ChangeLog
Date: Wed, 03 Jun 2015 11:25:59
Message-Id: 20150603112553.CD087A1C@oystercatcher.gentoo.org
1 blueness 15/06/03 11:25:53
2
3 Modified: ChangeLog
4 Added: xapian-1.3.3.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
9
10 Revision Changes Path
11 1.145 dev-libs/xapian/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/ChangeLog?rev=1.145&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/ChangeLog?rev=1.145&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/ChangeLog?r1=1.144&r2=1.145
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v
20 retrieving revision 1.144
21 retrieving revision 1.145
22 diff -u -r1.144 -r1.145
23 --- ChangeLog 23 May 2015 14:59:08 -0000 1.144
24 +++ ChangeLog 3 Jun 2015 11:25:53 -0000 1.145
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/xapian
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v 1.144 2015/05/23 14:59:08 blueness Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v 1.145 2015/06/03 11:25:53 blueness Exp $
30 +
31 +*xapian-1.3.3 (03 Jun 2015)
32 +
33 + 03 Jun 2015; Anthony G. Basile <blueness@g.o> +xapian-1.3.3.ebuild:
34 + Version bump
35
36 *xapian-1.2.21 (23 May 2015)
37
38
39
40
41 1.1 dev-libs/xapian/xapian-1.3.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/xapian-1.3.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/xapian-1.3.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: xapian-1.3.3.ebuild
47 ===================================================================
48 # Copyright 1999-2015 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.3.3.ebuild,v 1.1 2015/06/03 11:25:53 blueness Exp $
51
52 EAPI="5"
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.xz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
63 IUSE="doc static-libs -cpu_flags_x86_sse +cpu_flags_x86_sse2 +brass +chert +inmemory"
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 cpu_flags_x86_sse2; then
75 ewarn "Using sse2"
76 myconf="${myconf} --enable-sse=sse2"
77 else
78 if use cpu_flags_x86_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 inmemory || myconf="${myconf} --disable-backend-inmemory"
93
94 myconf="${myconf} --enable-backend-remote --program-suffix="
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 }