Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-physics/harminv: metadata.xml Manifest harminv-1.3.1.ebuild ChangeLog
Date: Wed, 06 Feb 2008 14:23:22
Message-Id: E1JMlBH-00060R-3O@stork.gentoo.org
1 bicatali 08/02/06 14:23:19
2
3 Added: metadata.xml Manifest harminv-1.3.1.ebuild
4 ChangeLog
5 Log:
6 Initial import. Ebuild first submitted by Ben Schwartz, see bug #170989
7 (Portage version: 2.1.4.1)
8
9 Revision Changes Path
10 1.1 sci-physics/harminv/metadata.xml
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/harminv/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/harminv/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>sci-physics</herd>
21 <longdescription lang="en">
22 Harminv is a program to solve the problem of harmonic inversion,
23 given a discrete-time, finite-length signal that consists of a sum of
24 finitely-many sinusoids (possibly exponentially decaying) in a given
25 bandwidth, it determines the frequencies, decay constants, amplitudes,
26 and phases of those sinusoids.
27 </longdescription>
28 </pkgmetadata>
29
30
31
32 1.1 sci-physics/harminv/Manifest
33
34 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/harminv/Manifest?rev=1.1&view=markup
35 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/harminv/Manifest?rev=1.1&content-type=text/plain
36
37 Index: Manifest
38 ===================================================================
39 AUX harminv-1.3.1-configure.ac.patch 1038 RMD160 5430e58f33e639df9fd7b8babb60ab2c1635346e SHA1 9c30c6d5e4a9b84e97197d174a613ab446b7a066 SHA256 4fadb381e6d5edc95a5b3c365b1b5d36d1e9c925eb408ea56a70f3e6832273e0
40 DIST harminv-1.3.1.tar.gz 327832 RMD160 340de65da54b197f70adec43ecd2907a757d6d35 SHA1 ef75161233df92393110b783d2945b5915c8291a SHA256 245778c16390c22850de3fb716c3db19514d40415ee3693293bfe59c66536583
41 EBUILD harminv-1.3.1.ebuild 850 RMD160 0ceb2fe63c65ebc6c46f294b9072a0f8018ebd83 SHA1 48ab3a10cb2e9b3ffe48800871bdc7942db35f9e SHA256 05781fbc1cb9d3f841bcca9c9fbfb6c9a559c13225d6acd685d1e0ef13ba48e0
42 MISC ChangeLog 363 RMD160 72c65ed765ce399cf3ae7dd29833d87d66d5bffd SHA1 bba2d9c721e6537e724f05dd6c6e3f24093d3df6 SHA256 1712497236aa3534ff5761e31ab76908f1f82300fdbab02589dd30a51ed67af5
43 MISC metadata.xml 527 RMD160 8f3be8eb904aa8c91d19f0e0e35664a4bdb9adb2 SHA1 f92e77d90a8bbc6854d0911eb9cddb0355fd9185 SHA256 4111d063d0ae32e923de0286d21e7447d5ade9d7a0e7d174ec95325c5ee7ffc0
44
45
46
47 1.1 sci-physics/harminv/harminv-1.3.1.ebuild
48
49 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/harminv/harminv-1.3.1.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/harminv/harminv-1.3.1.ebuild?rev=1.1&content-type=text/plain
51
52 Index: harminv-1.3.1.ebuild
53 ===================================================================
54 # Copyright 1999-2008 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/sci-physics/harminv/harminv-1.3.1.ebuild,v 1.1 2008/02/06 14:23:18 bicatali Exp $
57
58 inherit eutils autotools
59
60 DESCRIPTION="Extraction of complex frequencies and amplitudes from time series"
61 HOMEPAGE="http://ab-initio.mit.edu/harminv/"
62 SRC_URI="http://ab-initio.mit.edu/${PN}/${P}.tar.gz"
63
64 LICENSE="GPL-2"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE=""
68
69 RDEPEND="virtual/lapack"
70 DEPEND="${RDEPEND}
71 dev-util/pkgconfig"
72
73 src_unpack() {
74 unpack ${A}
75 cd "${S}"
76 epatch "${FILESDIR}"/${P}-configure.ac.patch
77 eautoreconf
78 }
79
80 src_compile() {
81 econf \
82 --with-blas="$(pkg-config --libs blas)" \
83 --with-lapack="$(pkg-config --libs lapack)" \
84 || die "econf failed"
85 emake || die "emake failed"
86 }
87
88 src_install() {
89 emake DESTDIR="${D}" install || die "emake install failed"
90 dodoc AUTHORS NEWS README || die "dodoc failed"
91 }
92
93
94
95 1.1 sci-physics/harminv/ChangeLog
96
97 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/harminv/ChangeLog?rev=1.1&view=markup
98 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/harminv/ChangeLog?rev=1.1&content-type=text/plain
99
100 Index: ChangeLog
101 ===================================================================
102 # ChangeLog for sci-physics/harminv
103 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
104 # $Header: /var/cvsroot/gentoo-x86/sci-physics/harminv/ChangeLog,v 1.1 2008/02/06 14:23:18 bicatali Exp $
105
106 *harminv-1.3.1 (06 Feb 2008)
107
108 06 Feb 2008; Sébastien Fabbro <bicatali@g.o>
109 +files/harminv-1.3.1-configure.ac.patch, +metadata.xml,
110 +harminv-1.3.1.ebuild:
111 Initial import. Ebuild first submitted by Ben Schwartz, see bug #170989
112
113
114
115
116 --
117 gentoo-commits@l.g.o mailing list