Gentoo Archives: gentoo-commits

From: "Thomas Beierlein (tomjbe)" <tomjbe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-electronics/xnec2c: metadata.xml ChangeLog xnec2c-1.4.ebuild
Date: Wed, 25 Aug 2010 17:43:44
Message-Id: 20100825174340.072B02004E@flycatcher.gentoo.org
1 tomjbe 10/08/25 17:43:40
2
3 Added: metadata.xml ChangeLog xnec2c-1.4.ebuild
4 Log:
5 Moved from science overlay, bug # 135573
6 (Portage version: 2.1.8.3/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 sci-electronics/xnec2c/metadata.xml
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/xnec2c/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/xnec2c/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-electronics</herd>
20 <maintainer>
21 <email>tomjbe@g.o</email>
22 <name>Thomas Beierlein</name>
23 </maintainer>
24 <longdescription>
25 xnec2c is a GTK+ graphical interactive version of nec2c. It incorporates
26 the nec2c core which it uses for reading input files and calculating
27 output data, but it does not need and indeed does not produce an output
28 file by default. Since xnec2c incorporates the nec2c core, it has access
29 to all internal buffers, including structure data, frequency-related
30 data (structure currents, input impedance, gain etc) and radiation
31 pattern data (for the far field and near field). It therefore has the
32 ability to graphically display user-requested data directly, as the
33 frequency loop progresses or after input from the user. Graphs of
34 frequency-related data and the current or charge distribution evolve as
35 the frequency loop progresses, and radiation patterns (far and near
36 field) are sequentially drawn for each frequency step. A new frequency
37 can be entered by the user from spin buttons in the main or radiation
38 pattern windows or by clicking on the graphs of frequency-related data.
39 New output data are then computed and displayed in text and graphical
40 form.
41 </longdescription>
42 </pkgmetadata>
43
44
45
46 1.1 sci-electronics/xnec2c/ChangeLog
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/xnec2c/ChangeLog?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/xnec2c/ChangeLog?rev=1.1&content-type=text/plain
50
51 Index: ChangeLog
52 ===================================================================
53 # ChangeLog for sci-electronics/xnec2c
54 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
55 # $Header: /var/cvsroot/gentoo-x86/sci-electronics/xnec2c/ChangeLog,v 1.1 2010/08/25 17:43:39 tomjbe Exp $
56
57 25 Aug 2010; Thomas Beierlein <tomjbe@g.o> +xnec2c-1.4.ebuild,
58 +metadata.xml:
59 Moved from science overlay, bug # 135573
60
61 *xnec2c-1.4 (13 Jul 2010)
62
63 13 Jul 2010; Thomas Beierlein <tomjbe@g.o> -xnec2c-1.3.ebuild,
64 -files/xnec2c-1.3-filename.patch, +xnec2c-1.4.ebuild:
65 Version bump. Fixes only bug wrt buffer overflow on long filenames.
66
67 10 Jul 2010; Thomas Beierlein <tomjbe@g.o> xnec2c-1.3.ebuild,
68 +files/xnec2c-1.3-filename.patch:
69 Fixed handling of long path and filenames
70
71 *xnec2c-1.3 (01 Jul 2010)
72
73 01 Jul 2010; Thomas Beierlein <tomjbe@g.o> +xnec2c-1.3.ebuild,
74 +metadata.xml:
75 New ebuild for Xnec2c. Based on the work of Dominique Michel
76 <dominique.michel@××××××.ch> in bug #138770
77
78
79
80
81 1.1 sci-electronics/xnec2c/xnec2c-1.4.ebuild
82
83 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/xnec2c/xnec2c-1.4.ebuild?rev=1.1&view=markup
84 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/xnec2c/xnec2c-1.4.ebuild?rev=1.1&content-type=text/plain
85
86 Index: xnec2c-1.4.ebuild
87 ===================================================================
88 # Copyright 1999-2010 Gentoo Foundation
89 # Distributed under the terms of the GNU General Public License v2
90 # $Header: /var/cvsroot/gentoo-x86/sci-electronics/xnec2c/xnec2c-1.4.ebuild,v 1.1 2010/08/25 17:43:39 tomjbe Exp $
91
92 EAPI="2"
93
94 inherit autotools
95
96 DESCRIPTION="A GTK+ graphical interactive version of nec2c."
97 HOMEPAGE="http://5b4az.chronos.org.uk/pages/nec2.html"
98 SRC_URI="http://5b4az.chronos.org.uk/pkg/nec2/xnec2c/${P}.tar.bz2"
99
100 LICENSE="GPL-2"
101 SLOT="0"
102 KEYWORDS="~amd64 ~x86"
103 IUSE="examples"
104
105 S="${WORKDIR}/${PN}"
106
107 RDEPEND="dev-libs/glib
108 x11-libs/gtk+:2"
109 DEPEND="${RDEPEND}
110 sys-devel/gettext"
111
112 src_prepare() {
113 glib-gettextize --force --copy || die
114 eautoreconf
115 }
116
117 src_install() {
118 emake DESTDIR="${D}" install || die
119
120 dodoc AUTHORS README doc/*.txt || die
121 dohtml -r doc/* || die
122 if use examples ; then
123 insinto /usr/share/doc/${PF}/examples
124 doins examples/* || die
125 fi
126 }