Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/xcircuit/
Date: Wed, 31 Aug 2022 07:18:19
Message-Id: 1661929995.f4e2b6f66ff6df1cc5d470a4cbda35f325da20cd.asturm@gentoo
1 commit: f4e2b6f66ff6df1cc5d470a4cbda35f325da20cd
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 31 07:13:15 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 31 07:13:15 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4e2b6f6
7
8 sci-electronics/xcircuit: drop 3.9.73
9
10 Closes: https://bugs.gentoo.org/867226
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 sci-electronics/xcircuit/Manifest | 1 -
14 sci-electronics/xcircuit/xcircuit-3.9.73.ebuild | 55 -------------------------
15 2 files changed, 56 deletions(-)
16
17 diff --git a/sci-electronics/xcircuit/Manifest b/sci-electronics/xcircuit/Manifest
18 index 081de064ba6a..bcbcdccac84e 100644
19 --- a/sci-electronics/xcircuit/Manifest
20 +++ b/sci-electronics/xcircuit/Manifest
21 @@ -1,2 +1 @@
22 DIST xcircuit-3.10.30.tgz 1619256 BLAKE2B 5316a2dc7d9864eefbdbf1647920c322c85adfbe27289a7c4dfc719940921754a6e616af530b20b3ffa159004ce6808cceb6e4d9349dcbc110e2e580a574c7a1 SHA512 52bf65fa9b5c095092f60abe32b3c88180365cc8043a8e95652ea9ab20e01c3e790989fe41171ecd1b2c60684016f6963c4851105b17a1c8a3bac8d75db84a8e
23 -DIST xcircuit-3.9.73.tgz 1620922 BLAKE2B ac3f8e6f9370efd720b57a9cd7c487621534f477d1af4fd267d311da3bd949886eccd1c8e8e59071689637272ca23f985dd1809594aab692fa60ea2ca8f8a456 SHA512 2dfeb130a48c99bf08bdff94250f7157acd283bc3f3d6b41f963346deb1241aca0d59a3e8d60dbd36a4aa60acd89e131b263ddbf489b2b44e7e1831714d7b703
24
25 diff --git a/sci-electronics/xcircuit/xcircuit-3.9.73.ebuild b/sci-electronics/xcircuit/xcircuit-3.9.73.ebuild
26 deleted file mode 100644
27 index d44b7bc85edb..000000000000
28 --- a/sci-electronics/xcircuit/xcircuit-3.9.73.ebuild
29 +++ /dev/null
30 @@ -1,55 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit autotools
37 -
38 -DESCRIPTION="Circuit drawing and schematic capture program"
39 -SRC_URI="http://opencircuitdesign.com/xcircuit/archive/${P}.tgz"
40 -HOMEPAGE="http://opencircuitdesign.com/xcircuit"
41 -
42 -LICENSE="GPL-2"
43 -SLOT="0"
44 -KEYWORDS="amd64 ~ppc x86"
45 -IUSE="tcl"
46 -
47 -DEPEND="
48 - app-text/ghostscript-gpl
49 - media-libs/fontconfig:1.0=
50 - sys-libs/zlib:=
51 - x11-libs/cairo
52 - x11-libs/libICE
53 - x11-libs/libSM
54 - x11-libs/libX11
55 - x11-libs/libXpm
56 - x11-libs/libXt
57 - tcl? (
58 - dev-lang/tcl:0=
59 - dev-lang/tk:0=
60 - )
61 -"
62 -RDEPEND=${DEPEND}
63 -
64 -src_prepare() {
65 - default
66 - mv configure.{in,ac} || die
67 - eautoreconf
68 -}
69 -
70 -src_configure() {
71 - local myeconfargs=(
72 - --with-cairo
73 - --with-ngspice
74 - $(use_with tcl)
75 - $(use_with tcl tcllibs "/usr/$(get_libdir)")
76 - $(use_with tcl tk)
77 - )
78 - econf "${myeconfargs[@]}"
79 -}
80 -
81 -src_install() {
82 - default
83 - dodoc -r examples
84 - docompress -x /usr/share/doc/${PF}/examples
85 -}