Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-chemistry/burrow-owl: burrow-owl-1.4-r1.ebuild ChangeLog burrow-owl-1.4.ebuild
Date: Tue, 24 Aug 2010 17:55:00
Message-Id: 20100824175456.82C1D2004E@flycatcher.gentoo.org
1 xarthisius 10/08/24 17:54:56
2
3 Modified: ChangeLog
4 Added: burrow-owl-1.4-r1.ebuild
5 Removed: burrow-owl-1.4.ebuild
6 Log:
7 Fix building with recent glibc wrt bug 333843. Thanks to Diego for report and Samuli for the fix.
8 (Portage version: 2.1.8.3/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.4 sci-chemistry/burrow-owl/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/burrow-owl/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/burrow-owl/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/burrow-owl/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/burrow-owl/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 17 Jul 2010 14:42:48 -0000 1.3
24 +++ ChangeLog 24 Aug 2010 17:54:56 -0000 1.4
25 @@ -1,6 +1,14 @@
26 # ChangeLog for sci-chemistry/burrow-owl
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/burrow-owl/ChangeLog,v 1.3 2010/07/17 14:42:48 xarthisius Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/burrow-owl/ChangeLog,v 1.4 2010/08/24 17:54:56 xarthisius Exp $
30 +
31 +*burrow-owl-1.4-r1 (24 Aug 2010)
32 +
33 + 24 Aug 2010; Kacper Kowalik <xarthisius@g.o>
34 + -burrow-owl-1.4.ebuild, +burrow-owl-1.4-r1.ebuild,
35 + +files/1.4-glibc-2.12.patch:
36 + Fix building with recent glibc wrt bug 333843. Thanks to Diego for report
37 + and Samuli for the fix.
38
39 17 Jul 2010; Kacper Kowalik <xarthisius@g.o> burrow-owl-1.4.ebuild:
40 Add missing dependencies. Fix tests wrt bug 328561. Thanks to Diego for
41
42
43
44 1.1 sci-chemistry/burrow-owl/burrow-owl-1.4-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/burrow-owl/burrow-owl-1.4-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/burrow-owl/burrow-owl-1.4-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: burrow-owl-1.4-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2010 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/sci-chemistry/burrow-owl/burrow-owl-1.4-r1.ebuild,v 1.1 2010/08/24 17:54:56 xarthisius Exp $
54
55 EAPI="2"
56
57 inherit autotools base virtualx
58
59 DESCRIPTION="Visualize multidimensional nuclear magnetic resonance (NMR) spectra"
60 HOMEPAGE="http://burrow-owl.sourceforge.net/"
61 SRC_URI="examples? ( mirror://sourceforge/${PN}/burrow-demos.tar )
62 mirror://sourceforge/${PN}/${P}.tar.gz"
63
64 LICENSE="GPL-2"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE="examples"
68
69 RDEPEND="dev-scheme/guile[networking,regex]
70 dev-scheme/guile-gnome-platform
71 >=dev-scheme/guile-cairo-1.4
72 >=sci-libs/starparse-1.0
73 x11-libs/gtk+:2"
74 DEPEND="${RDEPEND}
75 dev-util/indent
76 dev-util/pkgconfig"
77
78 PATCHES=(
79 "${FILESDIR}"/${PV}-include.patch
80 "${FILESDIR}"/${PV}-glibc-2.12.patch #333843
81 )
82
83 src_prepare() {
84 base_src_prepare
85 # bug 333843
86 mv src/endian.h src/bo_endian.h || die
87 mv src/endian.c src/bo_endian.c || die
88 eautoreconf
89 }
90
91 src_test () {
92 Xemake check || die
93 }
94
95 src_install() {
96 base_src_install
97 if use examples; then
98 pushd "${WORKDIR}"/burrow-demos
99 docinto demonstration
100 dodoc * || die "dodoc demo failed"
101 cd data
102 docinto demonstration/data
103 dodoc * || die "dodoc data failed"
104 popd
105 fi
106 }