Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/mdds: mdds-0.6.0-r1.ebuild ChangeLog
Date: Wed, 01 Aug 2012 09:16:46
Message-Id: 20120801091635.F1C502004C@flycatcher.gentoo.org
1 scarabeus 12/08/01 09:16:35
2
3 Modified: ChangeLog
4 Added: mdds-0.6.0-r1.ebuild
5 Log:
6 Fix boost build and missing includes install.
7
8 (Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.15 dev-util/mdds/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/mdds/ChangeLog?rev=1.15&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/mdds/ChangeLog?rev=1.15&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/mdds/ChangeLog?r1=1.14&r2=1.15
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-util/mdds/ChangeLog,v
20 retrieving revision 1.14
21 retrieving revision 1.15
22 diff -u -r1.14 -r1.15
23 --- ChangeLog 1 Aug 2012 08:58:48 -0000 1.14
24 +++ ChangeLog 1 Aug 2012 09:16:35 -0000 1.15
25 @@ -1,6 +1,13 @@
26 # ChangeLog for dev-util/mdds
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-util/mdds/ChangeLog,v 1.14 2012/08/01 08:58:48 scarabeus Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/mdds/ChangeLog,v 1.15 2012/08/01 09:16:35 scarabeus Exp $
30 +
31 +*mdds-0.6.0-r1 (01 Aug 2012)
32 +
33 + 01 Aug 2012; Tomáš Chvátal <scarabeus@g.o>
34 + +files/0.6.0-fix-boost-1.50-linking.patch,
35 + +files/0.6.0-fix-missing-includes.patch, +mdds-0.6.0-r1.ebuild:
36 + Fix boost build and missing includes install.
37
38 01 Aug 2012; Tomáš Chvátal <scarabeus@g.o> -mdds-0.5.4.ebuild,
39 mdds-0.6.0.ebuild:
40
41
42
43 1.1 dev-util/mdds/mdds-0.6.0-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/mdds/mdds-0.6.0-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/mdds/mdds-0.6.0-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: mdds-0.6.0-r1.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-util/mdds/mdds-0.6.0-r1.ebuild,v 1.1 2012/08/01 09:16:35 scarabeus Exp $
53
54 EAPI=4
55
56 inherit base
57
58 DESCRIPTION="A collection of multi-dimensional data structure and indexing algorithm"
59 HOMEPAGE="http://code.google.com/p/multidimalgorithm/"
60 SRC_URI="http://multidimalgorithm.googlecode.com/files/${P/-/_}.tar.bz2"
61
62 LICENSE="MIT"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
65 IUSE=""
66
67 DEPEND="dev-libs/boost"
68 RDEPEND="${DEPEND}"
69
70 S=${WORKDIR}/${P/-/_}
71
72 PATCHES=(
73 "${FILESDIR}/${PV}-fix-boost-1.50-linking.patch"
74 "${FILESDIR}/${PV}-fix-missing-includes.patch"
75
76 )
77
78 src_configure() {
79 econf \
80 --with-hash-container=boost \
81 --docdir="${EPREFIX}/usr/share/doc/${PF}"
82 }
83
84 src_compile() { :; }