summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2015-04-20 20:19:35 +0000
committerJustin Lecher <jlec@gentoo.org>2015-04-20 20:19:35 +0000
commite1b70a084d15ebe216f46cf9a49005c0e59c49f5 (patch)
tree1ab78bc72f7e94e9430c8aabe8870bfaf0ce9387 /dev-tcltk/thread
parentDrop old (diff)
downloadgentoo-2-e1b70a084d15ebe216f46cf9a49005c0e59c49f5.tar.gz
gentoo-2-e1b70a084d15ebe216f46cf9a49005c0e59c49f5.tar.bz2
gentoo-2-e1b70a084d15ebe216f46cf9a49005c0e59c49f5.zip
Drop old
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'dev-tcltk/thread')
-rw-r--r--dev-tcltk/thread/ChangeLog5
-rw-r--r--dev-tcltk/thread/thread-2.7.0.ebuild47
2 files changed, 4 insertions, 48 deletions
diff --git a/dev-tcltk/thread/ChangeLog b/dev-tcltk/thread/ChangeLog
index 48ee390a0a15..5ea733d7498e 100644
--- a/dev-tcltk/thread/ChangeLog
+++ b/dev-tcltk/thread/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-tcltk/thread
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/thread/ChangeLog,v 1.41 2015/04/19 09:47:27 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/thread/ChangeLog,v 1.42 2015/04/20 20:19:35 jlec Exp $
+
+ 20 Apr 2015; Justin Lecher <jlec@gentoo.org> -thread-2.7.0.ebuild:
+ Drop old
19 Apr 2015; Pacho Ramos <pacho@gentoo.org> thread-2.7.1.ebuild:
x86 stable wrt bug #535386
diff --git a/dev-tcltk/thread/thread-2.7.0.ebuild b/dev-tcltk/thread/thread-2.7.0.ebuild
deleted file mode 100644
index 5f9a30bc5dcb..000000000000
--- a/dev-tcltk/thread/thread-2.7.0.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/thread/thread-2.7.0.ebuild,v 1.12 2015/03/20 11:17:19 jlec Exp $
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=true
-
-inherit autotools-utils multilib
-
-DESCRIPTION="Tcl Thread extension"
-HOMEPAGE="http://www.tcl.tk/"
-SRC_URI="mirror://sourceforge/tcl/${PN}${PV}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
-IUSE="debug gdbm"
-
-DEPEND="
- dev-lang/tcl:0=[threads]
- gdbm? ( sys-libs/gdbm )"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}"/${PN}${PV}
-
-RESTRICT="test"
-
-src_prepare() {
- # Search for libs in libdir not just exec_prefix/lib
- sed -i -e 's:${exec_prefix}/lib:${libdir}:' \
- aclocal.m4 || die "sed failed"
-
- sed -i -e "s/relid'/relid/" tclconfig/tcl.m4 || die
-
- autotools-utils_src_prepare
-}
-
-src_configure() {
- local myeconfargs=(
- --with-tclinclude="${EPREFIX}/usr/include"
- --with-tcl="${EPREFIX}/usr/$(get_libdir)"
- )
- use gdbm && myconf+=( --with-gdbm )
- use debug && myconf+=( --enable-symbols )
- autotools-utils_src_configure
-}