Gentoo Archives: gentoo-commits

From: "Donnie Berkholz (dberkholz)" <dberkholz@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/starparse: metadata.xml ChangeLog starparse-0.9.ebuild
Date: Tue, 13 Jan 2009 06:24:31
Message-Id: E1LMchC-00057b-8U@stork.gentoo.org
1 dberkholz 09/01/13 06:24:14
2
3 Added: metadata.xml ChangeLog starparse-0.9.ebuild
4 Log:
5 New package: Library for parsing NMR star files (peak-list format) and CIF files. Dependency of sci-chemistry/burrow-owl.
6 (Portage version: 2.1.6.4/cvs/Linux 2.6.28 x86_64)
7
8 Revision Changes Path
9 1.1 sci-libs/starparse/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/starparse/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/starparse/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>sci-chemistry</herd>
20 </pkgmetadata>
21
22
23
24 1.1 sci-libs/starparse/ChangeLog
25
26 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/starparse/ChangeLog?rev=1.1&view=markup
27 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/starparse/ChangeLog?rev=1.1&content-type=text/plain
28
29 Index: ChangeLog
30 ===================================================================
31 # ChangeLog for sci-libs/starparse
32 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
33 # $Header: /var/cvsroot/gentoo-x86/sci-libs/starparse/ChangeLog,v 1.1 2009/01/13 06:24:14 dberkholz Exp $
34
35 *starparse-0.9 (13 Jan 2009)
36
37 13 Jan 2009; Donnie Berkholz <dberkholz@g.o>; +metadata.xml,
38 +starparse-0.9.ebuild:
39 New package: Library for parsing NMR star files (peak-list format) and CIF
40 files. Dependency of sci-chemistry/burrow-owl.
41
42
43
44
45 1.1 sci-libs/starparse/starparse-0.9.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/starparse/starparse-0.9.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/starparse/starparse-0.9.ebuild?rev=1.1&content-type=text/plain
49
50 Index: starparse-0.9.ebuild
51 ===================================================================
52 # Copyright 1999-2009 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/sci-libs/starparse/starparse-0.9.ebuild,v 1.1 2009/01/13 06:24:14 dberkholz Exp $
55
56 if [[ ${PV} = 9999* ]]; then
57 EBZR_REPO_URI="http://oregonstate.edu/~benisong/software/projects/starparse/"
58 EBZR_BRANCH="releases/0.9"
59 EBZR_BOOTSTRAP="eautoreconf"
60 BZR="bzr"
61 fi
62
63 inherit autotools ${BZR}
64
65 DESCRIPTION="Library for parsing NMR star files (peak-list format) and CIF files"
66 HOMEPAGE="http://burrow-owl.sourceforge.net/"
67 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
68 LICENSE="GPL-2"
69 SLOT="0"
70 KEYWORDS="~amd64"
71 IUSE="guile"
72 RDEPEND="guile? ( dev-scheme/guile )"
73 DEPEND="${RDEPEND}"
74
75 src_compile() {
76 econf $(use_enable guile) || die
77 emake || die
78 }
79
80 src_install() {
81 emake DESTDIR="${D}" install || die "emake install failed"
82 }