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