Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/libdap: ChangeLog libdap-3.11.1.ebuild libdap-3.10.0.ebuild
Date: Thu, 02 Jun 2011 10:49:17
Message-Id: 20110602104908.D163420054@flycatcher.gentoo.org
1 scarabeus 11/06/02 10:49:08
2
3 Modified: ChangeLog
4 Added: libdap-3.11.1.ebuild
5 Removed: libdap-3.10.0.ebuild
6 Log:
7 Version bump to latest. Drop older.
8
9 (Portage version: 2.2.0_alpha37/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.10 sci-libs/libdap/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libdap/ChangeLog?rev=1.10&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libdap/ChangeLog?rev=1.10&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libdap/ChangeLog?r1=1.9&r2=1.10
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sci-libs/libdap/ChangeLog,v
21 retrieving revision 1.9
22 retrieving revision 1.10
23 diff -u -r1.9 -r1.10
24 --- ChangeLog 2 Mar 2011 20:55:44 -0000 1.9
25 +++ ChangeLog 2 Jun 2011 10:49:08 -0000 1.10
26 @@ -1,6 +1,12 @@
27 # ChangeLog for sci-libs/libdap
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libdap/ChangeLog,v 1.9 2011/03/02 20:55:44 jlec Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libdap/ChangeLog,v 1.10 2011/06/02 10:49:08 scarabeus Exp $
31 +
32 +*libdap-3.11.1 (02 Jun 2011)
33 +
34 + 02 Jun 2011; Tomáš Chvátal <scarabeus@g.o> -libdap-3.10.0.ebuild,
35 + +libdap-3.11.1.ebuild:
36 + Version bump to latest. Drop older.
37
38 02 Mar 2011; Justin Lecher <jlec@g.o> libdap-3.10.0.ebuild:
39 Correct Slots for gtk 3 introduction to tree
40
41
42
43 1.1 sci-libs/libdap/libdap-3.11.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libdap/libdap-3.11.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libdap/libdap-3.11.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libdap-3.11.1.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sci-libs/libdap/libdap-3.11.1.ebuild,v 1.1 2011/06/02 10:49:08 scarabeus Exp $
53
54 EAPI=4
55
56 inherit base
57
58 DESCRIPTION="Implementation of a C++ SDK for DAP 2.0 and 3.2"
59 HOMEPAGE="http://opendap.org/"
60 SRC_URI="http://www.opendap.org/pub/source/${P}.tar.gz"
61
62 LICENSE="|| ( LGPL-2.1 URI )"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
65 IUSE="doc"
66
67 RDEPEND="
68 dev-util/cppunit
69 dev-libs/libxml2:2
70 net-misc/curl
71 sys-libs/zlib
72 "
73
74 DEPEND="${RDEPEND}
75 doc? ( app-doc/doxygen )"
76
77 PATCHES=( "${FILESDIR}/3.10.0-fix_tests.patch" )
78
79 DOCS=( README NEWS README.dodsrc )
80
81 RESTRICT="test"
82 # needs http connection
83 # FAIL: MIMEUtilTest
84
85 src_configure() {
86 econf \
87 --disable-static
88 }
89
90 src_compile() {
91 base_src_compile
92 if use doc; then
93 emake docs || die "make docs failed"
94 fi
95 }
96
97 src_test() {
98 cd "${S}"/unit-tests
99 emake check || die
100 }
101
102 src_install() {
103 default
104 use doc && dohtml docs/html/*
105
106 find "${ED}" -name '*.la' -exec rm -f {} +
107 }