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.16.ebuild ChangeLog
Date: Thu, 05 Dec 2013 18:37:04
Message-Id: 20131205183655.E90692004B@flycatcher.gentoo.org
1 blueness 13/12/05 18:36:55
2
3 Modified: ChangeLog
4 Added: xapian-1.2.16.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
9
10 Revision Changes Path
11 1.112 dev-libs/xapian/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/ChangeLog?rev=1.112&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/ChangeLog?rev=1.112&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/ChangeLog?r1=1.111&r2=1.112
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v
20 retrieving revision 1.111
21 retrieving revision 1.112
22 diff -u -r1.111 -r1.112
23 --- ChangeLog 24 Nov 2013 18:39:08 -0000 1.111
24 +++ ChangeLog 5 Dec 2013 18:36:55 -0000 1.112
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/xapian
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v 1.111 2013/11/24 18:39:08 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/xapian/ChangeLog,v 1.112 2013/12/05 18:36:55 blueness Exp $
30 +
31 +*xapian-1.2.16 (05 Dec 2013)
32 +
33 + 05 Dec 2013; Anthony G. Basile <blueness@g.o> +xapian-1.2.16.ebuild:
34 + Version bump
35
36 24 Nov 2013; Agostino Sarubbo <ago@g.o> xapian-1.2.14.ebuild:
37 Stable for sparc, wrt bug #470402
38
39
40
41 1.1 dev-libs/xapian/xapian-1.2.16.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/xapian-1.2.16.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xapian/xapian-1.2.16.ebuild?rev=1.1&content-type=text/plain
45
46 Index: xapian-1.2.16.ebuild
47 ===================================================================
48 # Copyright 1999-2013 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.16.ebuild,v 1.1 2013/12/05 18:36:55 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 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
63 IUSE="doc static-libs -sse +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 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 inmemory || myconf="${myconf} --disable-backend-inmemory"
93
94 myconf="${myconf} --enable-backend-flint --enable-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 }