Gentoo Archives: gentoo-commits

From: "Andreas Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/klayout/
Date: Fri, 29 Sep 2017 13:18:23
Message-Id: 1506691082.a3bdd6ccd3e8ab94a4c4edf11a616ceaabd69bd4.dilfridge@gentoo
1 commit: a3bdd6ccd3e8ab94a4c4edf11a616ceaabd69bd4
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 29 13:17:29 2017 +0000
4 Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 29 13:18:02 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3bdd6cc
7
8 sci-electronics/klayout: Remove old. Thereby drop stable ebuild for x86.
9
10 Package-Manager: Portage-2.3.10, Repoman-2.3.3
11
12 sci-electronics/klayout/Manifest | 1 -
13 sci-electronics/klayout/klayout-0.23.10.ebuild | 65 --------------------------
14 2 files changed, 66 deletions(-)
15
16 diff --git a/sci-electronics/klayout/Manifest b/sci-electronics/klayout/Manifest
17 index db2935f90ff..753dc54b0a1 100644
18 --- a/sci-electronics/klayout/Manifest
19 +++ b/sci-electronics/klayout/Manifest
20 @@ -1,2 +1 @@
21 -DIST klayout-0.23.10.tar.gz 9561035 SHA256 f215a70ec78ac58c775527c4194c972d6588afd23a8f24f292626fb4f70028a1 SHA512 628a260d1b4f44b7eb02d166e7af47ef6c303019824ef0b9681509e53fda58576654188097e8791bb7acce635e671d016d5199c7b8777377ce6d9256756957c6 WHIRLPOOL 228bd2b76c1feb29e86740ee2efe16fc3380df6ec67cd9caff8c862097c372823f8d1a2b1c07b4b8534673161a9e538a73f78f2de85676eed42fa8ef65f53308
22 DIST klayout-0.24.10.tar.gz 11262007 SHA256 b1462ec68add037a5d9d040599b2bd96cc399e57dfd9fd46bbf3e8f54c07418d SHA512 0043b91e2dae9321299c217697c93af27bc7d795209bdf95248eee3690b97728854f9f82cc95f77f05a2cfbcae6a716ae594fe2485e04ed0a3f5d950abc0a31b WHIRLPOOL fe1d4079fbc3aa9fec1da8fb48595fa6edd65060f7081f80592dc86b371c4428934629a5c7838212577416fc66f194e6677f595992734c922c2ee89c6029cbd7
23
24 diff --git a/sci-electronics/klayout/klayout-0.23.10.ebuild b/sci-electronics/klayout/klayout-0.23.10.ebuild
25 deleted file mode 100644
26 index 2f96c460f1d..00000000000
27 --- a/sci-electronics/klayout/klayout-0.23.10.ebuild
28 +++ /dev/null
29 @@ -1,65 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -USE_RUBY="ruby22"
36 -# note: define maximally ONE implementation here
37 -
38 -RUBY_OPTIONAL=no
39 -inherit eutils multilib toolchain-funcs ruby-ng
40 -
41 -DESCRIPTION="Viewer and editor for GDS and OASIS integrated circuit layouts"
42 -HOMEPAGE="http://www.klayout.de/"
43 -SRC_URI="http://178.77.72.242/downloads/${P}.tar.gz"
44 -
45 -LICENSE="GPL-2"
46 -SLOT="0"
47 -KEYWORDS="amd64 x86"
48 -IUSE=""
49 -
50 -RDEPEND="
51 - dev-qt/designer:4
52 - dev-qt/qtgui:4[qt3support]
53 - $(ruby_implementations_depend)
54 -"
55 -DEPEND="${RDEPEND}"
56 -
57 -all_ruby_prepare() {
58 - # now we generate the stub build configuration file for the home-brew build system
59 - cp "${FILESDIR}/${PN}-0.23.10-Makefile.conf.linux-gentoo" "${S}/config/Makefile.conf.linux-gentoo" || die
60 -}
61 -
62 -each_ruby_configure() {
63 - ./build.sh \
64 - -dry-run \
65 - -platform linux-gentoo \
66 - -bin bin \
67 - -ruby ${RUBY} \
68 - -qtbin /usr/bin \
69 - -qtinc /usr/include/qt4 \
70 - -qtlib /usr/$(get_libdir)/qt4 || die "Configuration failed"
71 -}
72 -
73 -each_ruby_compile() {
74 - cd build.linux-gentoo
75 - tc-export CC CXX AR LD RANLIB
76 - export AR="${AR} -r"
77 - emake all
78 -}
79 -
80 -each_ruby_install() {
81 - cd build.linux-gentoo
82 - emake install
83 -
84 - cd ..
85 - dobin bin/klayout
86 -
87 - insinto /usr/share/${PN}/testdata/gds
88 - doins testdata/gds/*.gds
89 - insinto /usr/share/${PN}/testdata/oasis
90 - doins testdata/oasis/*.oas testdata/oasis/*.ot
91 -
92 - insinto /usr/share/${PN}
93 - doins -r testdata/ruby
94 -}