summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFederico Ferri <mescalinum@gentoo.org>2009-06-08 11:18:49 +0000
committerFederico Ferri <mescalinum@gentoo.org>2009-06-08 11:18:49 +0000
commite5817d94febc32747cbe74fdfacfc784c206af63 (patch)
treef33f8049db23e53a57ca08e5aab87b49354f48d1 /dev-tcltk/tclxml
parentbump to version 3.2, bug 273112 (diff)
downloadgentoo-2-e5817d94febc32747cbe74fdfacfc784c206af63.tar.gz
gentoo-2-e5817d94febc32747cbe74fdfacfc784c206af63.tar.bz2
gentoo-2-e5817d94febc32747cbe74fdfacfc784c206af63.zip
old
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'dev-tcltk/tclxml')
-rw-r--r--dev-tcltk/tclxml/ChangeLog5
-rw-r--r--dev-tcltk/tclxml/tclxml-3.1.ebuild67
2 files changed, 4 insertions, 68 deletions
diff --git a/dev-tcltk/tclxml/ChangeLog b/dev-tcltk/tclxml/ChangeLog
index 272ccf27afe0..4c14ebe92e93 100644
--- a/dev-tcltk/tclxml/ChangeLog
+++ b/dev-tcltk/tclxml/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-tcltk/tclxml
# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tclxml/ChangeLog,v 1.32 2009/06/08 11:13:44 mescalinum Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tclxml/ChangeLog,v 1.33 2009/06/08 11:18:49 mescalinum Exp $
+
+ 08 Jun 2009; Federico Ferri <mescalinum@gentoo.org> -tclxml-3.1.ebuild:
+ old
*tclxml-3.2 (08 Jun 2009)
diff --git a/dev-tcltk/tclxml/tclxml-3.1.ebuild b/dev-tcltk/tclxml/tclxml-3.1.ebuild
deleted file mode 100644
index c087ea513b1e..000000000000
--- a/dev-tcltk/tclxml/tclxml-3.1.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tclxml/tclxml-3.1.ebuild,v 1.3 2007/05/18 22:06:54 welp Exp $
-
-inherit eutils
-
-DESCRIPTION="Pure Tcl implementation of an XML parser."
-HOMEPAGE="http://tclxml.sourceforge.net/"
-SRC_URI="mirror://sourceforge/tclxml/${P}.tar.gz"
-
-IUSE="expat threads xml"
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
-
-DEPEND=">=dev-lang/tcl-8.2
- >=dev-tcltk/tcllib-1.2
- xml? ( >=dev-libs/libxml2-2.6.9 )
- expat? ( dev-libs/expat )
- !dev-tcltk/tclxml-expat"
-
-MAKEOPTS="${MAKEOPTS} -j1"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
-
- epatch ${FILESDIR}/${PN}-3_configure.patch
- epatch ${FILESDIR}/${PN}-3_include_path.patch
-}
-
-src_compile() {
- local myconf=""
-
- use threads && myconf="${myconf} --enable-threads"
-
- econf ${myconf} || die
- emake || die
-
- if use xml ; then
- cd ${S}/libxml2
- econf ${myconf} --with-Tclxml=.. || die
- emake || die
- fi
- if use expat ; then
- cd ${S}/expat
- econf ${myconf} --with-Tclxml=.. || die
- emake || die
- fi
-}
-
-src_install() {
- make DESTDIR=${D} install || die
-
- if use xml ; then
- cd ${S}/libxml2
- make DESTDIR=${D} install || die
- fi
- if use expat ; then
- cd ${S}/expat
- make DESTDIR=${D} install || die
- fi
-
- cd ${S}
- dodoc ANNOUNCE ChangeLog LICENSE README RELNOTES
- dohtml doc/*.html
-}