summaryrefslogtreecommitdiff
path: root/dev-lang/jimtcl/jimtcl-0.70_pre20110317.ebuild
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2017-12-31 11:03:13 +0100
committerMichał Górny <mgorny@gentoo.org>2018-01-04 22:55:42 +0100
commit79572f797d251072ccbb0bb9a51161f33415b6ea (patch)
tree489ab8ea0fe3eb419d5b7a6d668d81ed4fe19ba6 /dev-lang/jimtcl/jimtcl-0.70_pre20110317.ebuild
parent228752b0954877a22e6d2b2017da4c1c72edf2b8 (diff)
downloadgentoo-79572f797d251072ccbb0bb9a51161f33415b6ea.tar.gz
gentoo-79572f797d251072ccbb0bb9a51161f33415b6ea.tar.bz2
gentoo-79572f797d251072ccbb0bb9a51161f33415b6ea.zip
dev-lang/jimtcl: Clean old up
Diffstat (limited to 'dev-lang/jimtcl/jimtcl-0.70_pre20110317.ebuild')
-rw-r--r--dev-lang/jimtcl/jimtcl-0.70_pre20110317.ebuild37
1 files changed, 0 insertions, 37 deletions
diff --git a/dev-lang/jimtcl/jimtcl-0.70_pre20110317.ebuild b/dev-lang/jimtcl/jimtcl-0.70_pre20110317.ebuild
deleted file mode 100644
index fe34db13742e..000000000000
--- a/dev-lang/jimtcl/jimtcl-0.70_pre20110317.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-
-DESCRIPTION="Small footprint implementation of Tcl programming language"
-HOMEPAGE="http://jim.berlios.de/"
-SRC_URI="https://dev.gentoo.org/~hwoarang/distfiles/${P}.tar.gz"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="static-libs"
-
-src_configure() {
- ! use static-libs && myconf=--with-jim-shared
- econf ${myconf} \
- --with-jim-ext=nvp
-}
-
-src_compile() {
- emake all docs || die
-}
-
-src_install() {
- dobin jimsh || die "dobin failed"
- use static-libs && {
- dolib.a libjim.a || die "dolib failed"
- } || {
- dolib.so libjim.so || die "dolib failed"
- }
- insinto /usr/include
- doins jim.h jimautoconf.h jim-subcmd.h jim-nvp.h jim-signal.h
- doins jim-win32compat.h jim-eventloop.h jim-config.h
- dodoc AUTHORS README TODO || die "dodoc failed"
- dohtml Tcl.html || die "dohtml failed"
-}