Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/haildb: ChangeLog haildb-2.3.2.ebuild
Date: Thu, 03 Feb 2011 12:23:34
Message-Id: 20110203122322.5FF5B20054@flycatcher.gentoo.org
1 flameeyes 11/02/03 12:23:22
2
3 Modified: ChangeLog
4 Added: haildb-2.3.2.ebuild
5 Log:
6 Version bump by Pavel Stratil.
7
8 (Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.4 dev-db/haildb/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/haildb/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/haildb/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/haildb/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-db/haildb/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 25 Oct 2010 00:23:07 -0000 1.3
24 +++ ChangeLog 3 Feb 2011 12:23:22 -0000 1.4
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-db/haildb
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-db/haildb/ChangeLog,v 1.3 2010/10/25 00:23:07 fauli Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-db/haildb/ChangeLog,v 1.4 2011/02/03 12:23:22 flameeyes Exp $
31 +
32 +*haildb-2.3.2 (03 Feb 2011)
33 +
34 + 03 Feb 2011; Diego E. Pettenò <flameeyes@g.o> +haildb-2.3.2.ebuild:
35 + Version bump by Pavel Stratil.
36
37 25 Oct 2010; Christian Faulhammer <fauli@g.o> haildb-2.3.1.ebuild:
38 add ~x86, bug 341633
39
40
41
42 1.1 dev-db/haildb/haildb-2.3.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/haildb/haildb-2.3.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/haildb/haildb-2.3.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: haildb-2.3.2.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $
52
53 EAPI=2
54
55 inherit versionator flag-o-matic
56
57 DESCRIPTION="a relational database in shared library form"
58 HOMEPAGE="http://www.haildb.com/"
59 SRC_URI="http://launchpad.net/haildb/$(get_version_component_range 1-2)/cairo/+download/${P}.tar.gz"
60 LICENSE="GPL-2 MIT"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="debug tcmalloc zlib"
64
65 RDEPEND="tcmalloc? ( dev-util/google-perftools )
66 zlib? ( sys-libs/zlib )"
67 DEPEND="${RDEPEND}
68 sys-devel/bison"
69
70 src_configure() {
71 local myconf
72
73 if use debug; then
74 # Since --with-debug would turn off optimisations as well as
75 # enabling debug, we just enable debug through the
76 # preprocessor then.
77 append-flags -DDEBUG
78 else
79 myconf="${myconf} --disable-assert"
80 fi
81
82 # never allow it to find valgrind, easier this way
83 export ac_cv_header_valgrind_memcheck_h=no
84
85 econf \
86 --disable-static \
87 --disable-dependency-tracking \
88 --enable-fast-install \
89 --disable-silent-rules \
90 --disable-mtmalloc \
91 $(use_enable zlib compression) \
92 $(use_enable tcmalloc) \
93 ${myconf} \
94 || die "econf failed"
95 }
96
97 src_install() {
98 emake DESTDIR="${D}" install || die "install failed"
99 dodoc ChangeLog README || die
100
101 find "${D}" -name '*.la' -delete || die
102 }