summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas K. Hüttel <dilfridge@gentoo.org>2013-12-07 13:22:31 +0000
committerAndreas K. Hüttel <dilfridge@gentoo.org>2013-12-07 13:22:31 +0000
commitfd6167a5421209aabb4545604d43aa38062e4fad (patch)
tree5d81e86c0d9559b0b4ef6b91c3a9298533ac4dff /sci-electronics
parentx86 stable, bug #475308 (diff)
downloadgentoo-2-fd6167a5421209aabb4545604d43aa38062e4fad.tar.gz
gentoo-2-fd6167a5421209aabb4545604d43aa38062e4fad.tar.bz2
gentoo-2-fd6167a5421209aabb4545604d43aa38062e4fad.zip
Remove old
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key EBE6A336BE19039C!)
Diffstat (limited to 'sci-electronics')
-rw-r--r--sci-electronics/klayout/ChangeLog6
-rw-r--r--sci-electronics/klayout/klayout-0.22.4.ebuild68
2 files changed, 5 insertions, 69 deletions
diff --git a/sci-electronics/klayout/ChangeLog b/sci-electronics/klayout/ChangeLog
index b31fe9e894c8..fc3cbed1c45a 100644
--- a/sci-electronics/klayout/ChangeLog
+++ b/sci-electronics/klayout/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sci-electronics/klayout
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/klayout/ChangeLog,v 1.21 2013/12/07 13:18:27 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/klayout/ChangeLog,v 1.22 2013/12/07 13:22:31 dilfridge Exp $
+
+ 07 Dec 2013; Andreas K. Huettel <dilfridge@gentoo.org>
+ -klayout-0.22.4.ebuild:
+ Remove old
07 Dec 2013; Johannes Huber <johu@gentoo.org> klayout-0.22.9.ebuild:
x86 stable, bug #475308
diff --git a/sci-electronics/klayout/klayout-0.22.4.ebuild b/sci-electronics/klayout/klayout-0.22.4.ebuild
deleted file mode 100644
index 90cf1d8842a5..000000000000
--- a/sci-electronics/klayout/klayout-0.22.4.ebuild
+++ /dev/null
@@ -1,68 +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.4.ebuild,v 1.4 2013/03/02 23:19:22 hwoarang Exp $
-
-EAPI=5
-
-USE_RUBY="ruby18"
-# 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://www.klayout.de/${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
-}
-
-each_ruby_configure() {
- local rbflags
- rbflags="-rblib $(ruby_get_libruby) -rbinc $(ruby_get_hdrdir)"
-
- ./build.sh \
- -dry-run \
- -platform linux-gentoo \
- -bin bin \
- -qtbin /usr/bin \
- -qtinc /usr/include/qt4 \
- -qtlib /usr/$(get_libdir)/qt4 \
- ${rbflags} || 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
-}