summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2015-04-13 08:30:14 +0000
committerJustin Lecher <jlec@gentoo.org>2015-04-13 08:30:14 +0000
commit1e098ee0fafc750c73d73474422573f44a5e2e33 (patch)
tree0579e2ca23562adef1918c0536e2080db0b4a36c /dev-tcltk
parentStable for alpha, wrt bug #545586 (diff)
downloadgentoo-2-1e098ee0fafc750c73d73474422573f44a5e2e33.tar.gz
gentoo-2-1e098ee0fafc750c73d73474422573f44a5e2e33.tar.bz2
gentoo-2-1e098ee0fafc750c73d73474422573f44a5e2e33.zip
Drop old
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'dev-tcltk')
-rw-r--r--dev-tcltk/tclxml/ChangeLog5
-rw-r--r--dev-tcltk/tclxml/tclxml-3.2-r1.ebuild53
2 files changed, 4 insertions, 54 deletions
diff --git a/dev-tcltk/tclxml/ChangeLog b/dev-tcltk/tclxml/ChangeLog
index 6f7f72af0cad..f872543778b3 100644
--- a/dev-tcltk/tclxml/ChangeLog
+++ b/dev-tcltk/tclxml/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-tcltk/tclxml
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tclxml/ChangeLog,v 1.55 2015/04/13 08:20:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tclxml/ChangeLog,v 1.56 2015/04/13 08:30:14 jlec Exp $
+
+ 13 Apr 2015; Justin Lecher <jlec@gentoo.org> -tclxml-3.2-r1.ebuild:
+ Drop old
13 Apr 2015; Agostino Sarubbo <ago@gentoo.org> tclxml-3.2-r2.ebuild:
Stable for alpha, wrt bug #543884
diff --git a/dev-tcltk/tclxml/tclxml-3.2-r1.ebuild b/dev-tcltk/tclxml/tclxml-3.2-r1.ebuild
deleted file mode 100644
index 6ebe787be3d1..000000000000
--- a/dev-tcltk/tclxml/tclxml-3.2-r1.ebuild
+++ /dev/null
@@ -1,53 +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/tclxml/tclxml-3.2-r1.ebuild,v 1.12 2015/03/20 11:06:52 jlec Exp $
-
-EAPI="3"
-
-inherit eutils multilib
-
-DESCRIPTION="Pure Tcl implementation of an XML parser"
-HOMEPAGE="http://tclxml.sourceforge.net/"
-SRC_URI="mirror://sourceforge/tclxml/${P}.tar.gz"
-
-IUSE="debug threads"
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="alpha amd64 ppc sparc x86"
-
-DEPEND="
- >=dev-lang/tcl-8.2:0
- dev-libs/libxslt
- >=dev-tcltk/tcllib-1.2
- >=dev-libs/libxml2-2.6.9
- dev-libs/expat
- !dev-tcltk/tcldom"
-# test? ( dev-tcltk/tclparser )
-RDEPEND="${DEPEND}"
-
-RESTRICT="test"
-
-src_prepare() {
- epatch "${FILESDIR}"/"${P}"-fix-implicit-declarations.patch
-}
-
-src_configure() {
- local myconf=""
-
- use threads && myconf="${myconf} --enable-threads"
-
- econf ${myconf} \
- --with-xml2-config="${EPREFIX}"/usr/bin/xml2-config \
- --with-xslt-config="${EPREFIX}"/usr/bin/xslt-config \
- --with-tclinclude="${EPREFIX}"/usr/include \
- --with-tcl="${EPREFIX}"/usr/$(get_libdir) \
- $(use_enable amd64 64bit) \
- $(use_enable debug symbols)
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
-
- dodoc ANNOUNCE ChangeLog || die
- dohtml doc/*.html || die
-}