summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-05-27 11:32:54 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-05-27 11:32:54 +0000
commit9ecef4c1b11f2eaf9f1242fa517d108036fb324d (patch)
treee2f2786c6eb1277f8b725d22f941f1b062ca2a2d /sci-electronics
parentRemove old. (diff)
downloadgentoo-2-9ecef4c1b11f2eaf9f1242fa517d108036fb324d.tar.gz
gentoo-2-9ecef4c1b11f2eaf9f1242fa517d108036fb324d.tar.bz2
gentoo-2-9ecef4c1b11f2eaf9f1242fa517d108036fb324d.zip
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'sci-electronics')
-rw-r--r--sci-electronics/klayout/ChangeLog5
-rw-r--r--sci-electronics/klayout/klayout-0.22.9.ebuild67
2 files changed, 4 insertions, 68 deletions
diff --git a/sci-electronics/klayout/ChangeLog b/sci-electronics/klayout/ChangeLog
index eeeacb02440e..c369fe466725 100644
--- a/sci-electronics/klayout/ChangeLog
+++ b/sci-electronics/klayout/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sci-electronics/klayout
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/klayout/ChangeLog,v 1.25 2015/05/27 11:21:59 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/klayout/ChangeLog,v 1.26 2015/05/27 11:32:54 mrueg Exp $
+
+ 27 May 2015; Manuel Rüger <mrueg@gentoo.org> -klayout-0.22.9.ebuild:
+ Remove old.
27 May 2015; Agostino Sarubbo <ago@gentoo.org> klayout-0.23.10.ebuild:
Stable for x86, wrt bug #541652
diff --git a/sci-electronics/klayout/klayout-0.22.9.ebuild b/sci-electronics/klayout/klayout-0.22.9.ebuild
deleted file mode 100644
index e01c5501b6b7..000000000000
--- a/sci-electronics/klayout/klayout-0.22.9.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/klayout/klayout-0.22.9.ebuild,v 1.3 2013/12/07 13:18:27 johu Exp $
-
-EAPI=5
-
-USE_RUBY="ruby19"
-# note: define maximally ONE implementation here
-
-RUBY_OPTIONAL=no
-inherit eutils multilib toolchain-funcs ruby-ng
-
-DESCRIPTION="Viewer and editor for GDS and OASIS integrated circuit layouts"
-HOMEPAGE="http://www.klayout.de/"
-SRC_URI="http://178.77.72.242/downloads/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="
- dev-qt/qtgui:4[qt3support]
- $(ruby_implementations_depend)
-"
-DEPEND="${RDEPEND}"
-
-all_ruby_prepare() {
- # now we generate the stub build configuration file for the home-brew build system
- cp "${FILESDIR}/${PN}-0.21.7-Makefile.conf.linux-gentoo" "${S}/config/Makefile.conf.linux-gentoo" || die
-
- epatch "${FILESDIR}/${PN}-0.22.8-noautoruby.patch"
-}
-
-each_ruby_configure() {
- export RUBY
- ./build.sh \
- -dry-run \
- -platform linux-gentoo \
- -bin bin \
- -qtbin /usr/bin \
- -qtinc /usr/include/qt4 \
- -qtlib /usr/$(get_libdir)/qt4 || die "Configuration failed"
-}
-
-each_ruby_compile() {
- cd build.linux-gentoo
- tc-export CC CXX AR LD RANLIB
- export AR="${AR} -r"
- emake all
-}
-
-each_ruby_install() {
- cd build.linux-gentoo
- emake install
-
- cd ..
- dobin bin/klayout
-
- insinto /usr/share/${PN}/testdata/gds
- doins testdata/gds/*.gds
- insinto /usr/share/${PN}/testdata/oasis
- doins testdata/oasis/*.oas testdata/oasis/*.ot
-
- insinto /usr/share/${PN}
- doins -r testdata/ruby
-}