Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-chemistry/burrow-owl: ChangeLog burrow-owl-1.5.1.ebuild
Date: Mon, 27 Feb 2012 22:51:07
Message-Id: 20120227225044.706B32004B@flycatcher.gentoo.org
1 jlec 12/02/27 22:50:44
2
3 Modified: ChangeLog
4 Added: burrow-owl-1.5.1.ebuild
5 Log:
6 Version Bump
7
8 (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.6 sci-chemistry/burrow-owl/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/burrow-owl/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/burrow-owl/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/burrow-owl/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/burrow-owl/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 14 Feb 2012 19:58:49 -0000 1.5
24 +++ ChangeLog 27 Feb 2012 22:50:44 -0000 1.6
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sci-chemistry/burrow-owl
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/burrow-owl/ChangeLog,v 1.5 2012/02/14 19:58:49 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/burrow-owl/ChangeLog,v 1.6 2012/02/27 22:50:44 jlec Exp $
30 +
31 +*burrow-owl-1.5.1 (27 Feb 2012)
32 +
33 + 27 Feb 2012; Justin Lecher <jlec@g.o> +burrow-owl-1.5.1.ebuild:
34 + Version Bump
35
36 *burrow-owl-1.5 (14 Feb 2012)
37
38
39
40
41 1.1 sci-chemistry/burrow-owl/burrow-owl-1.5.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/burrow-owl/burrow-owl-1.5.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/burrow-owl/burrow-owl-1.5.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: burrow-owl-1.5.1.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sci-chemistry/burrow-owl/burrow-owl-1.5.1.ebuild,v 1.1 2012/02/27 22:50:44 jlec Exp $
51
52 EAPI=4
53
54 inherit autotools-utils
55
56 DESCRIPTION="Visualize multidimensional nuclear magnetic resonance (NMR) spectra"
57 HOMEPAGE="http://burrow-owl.sourceforge.net/"
58 SRC_URI="
59 mirror://sourceforge/${PN}/${P}.tar.gz
60 examples? ( mirror://sourceforge/${PN}/burrow-demos.tar )"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="doc examples static-libs"
66
67 RDEPEND="
68 dev-libs/g-wrap
69 dev-libs/glib:2
70 dev-scheme/guile[networking,regex]
71 dev-scheme/guile-cairo
72 dev-scheme/guile-gnome-platform
73 sci-libs/starparse
74 x11-libs/gtk+:2"
75 DEPEND="${RDEPEND}
76 dev-util/indent
77 dev-util/pkgconfig
78 doc? ( app-doc/doxygen )
79 "
80
81 src_configure() {
82 local myeconfargs=(
83 $(use_with doc doxygen doxygen)
84 )
85 autotools-utils_src_configure
86 }
87
88 src_test () {
89 autotools-utils_src_compile -C test-suite check
90 }
91
92 src_install() {
93 use doc && HTML_DOCS=("${AUTOTOOLS_BUILD_DIR}/doc/api/html/")
94 autotools-utils_src_install
95
96 use examples && \
97 insinto /usr/share/${PN} && \
98 doins -r "${WORKDIR}"/burrow-demos/*
99 }