summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2012-01-15 16:55:31 +0000
committerJustin Lecher <jlec@gentoo.org>2012-01-15 16:55:31 +0000
commit65fa822227729d616fa2ecff9291cf282de30c52 (patch)
tree792e90ef3a7a2a5a924644f3132a13b0f9c0ffb6 /dev-tcltk/tdom
parentRemoving PHP 5.2 only ebuilds/packages (diff)
downloadgentoo-2-65fa822227729d616fa2ecff9291cf282de30c52.tar.gz
gentoo-2-65fa822227729d616fa2ecff9291cf282de30c52.tar.bz2
gentoo-2-65fa822227729d616fa2ecff9291cf282de30c52.zip
Dropped old
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Diffstat (limited to 'dev-tcltk/tdom')
-rw-r--r--dev-tcltk/tdom/ChangeLog5
-rw-r--r--dev-tcltk/tdom/tdom-0.8.2.ebuild82
2 files changed, 4 insertions, 83 deletions
diff --git a/dev-tcltk/tdom/ChangeLog b/dev-tcltk/tdom/ChangeLog
index f4cd77716bb9..93f1dac853e8 100644
--- a/dev-tcltk/tdom/ChangeLog
+++ b/dev-tcltk/tdom/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-tcltk/tdom
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tdom/ChangeLog,v 1.15 2012/01/15 15:45:51 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tdom/ChangeLog,v 1.16 2012/01/15 16:55:31 jlec Exp $
+
+ 15 Jan 2012; Justin Lecher <jlec@gentoo.org> -tdom-0.8.2.ebuild:
+ Dropped old
15 Jan 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> tdom-0.8.3-r1.ebuild:
x86 stable wrt bug #397009
diff --git a/dev-tcltk/tdom/tdom-0.8.2.ebuild b/dev-tcltk/tdom/tdom-0.8.2.ebuild
deleted file mode 100644
index c2eb48d779b5..000000000000
--- a/dev-tcltk/tdom/tdom-0.8.2.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tdom/tdom-0.8.2.ebuild,v 1.8 2011/01/24 13:12:11 fauli Exp $
-
-EAPI="3"
-
-inherit autotools eutils
-
-MY_P="tDOM-${PV}"
-
-DESCRIPTION="A XML/DOM/XPath/XSLT Implementation for Tcl"
-HOMEPAGE="http://tdom.github.com"
-SRC_URI="https://github.com/downloads/tDOM/${PN}/${MY_P}.tgz"
-
-LICENSE="MPL-1.1"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux"
-IUSE="threads"
-
-DEPEND="
- dev-lang/tcl
- dev-libs/expat"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
- epatch \
- "${FILESDIR}/${P}.patch" \
- "${FILESDIR}/${P}-soname.patch" \
- "${FILESDIR}/${P}-expat.patch" \
- "${FILESDIR}/${P}-tnc.patch"
- eautoreconf
-}
-
-src_configure() {
- local myconf=""
-
- myconf="${myconf}
- $(use_enable threads)
- --enable-shared
- --disable-tdomalloc
- --with-expat"
-
- cd "${S}"/unix
- ECONF_SOURCE=".." econf ${myconf}
-
- # compile tdomhtml
- cd "${S}"/extensions/tdomhtml
- econf
-
- # compile tnc
- cd "${S}"/extensions/tnc
- econf ${myconf}
-}
-
-src_compile() {
- cd "${S}"/unix
- emake || die "failed to compile tdom"
-
- # compile tdomhtml
- cd "${S}"/extensions/tdomhtml
- emake || die "fail to compile tdomhtml"
-
- # compile tnc
- cd "${S}"/extensions/tnc
- emake || die "failed to compile tnc"
-}
-
-src_install() {
- cd "${S}"/unix
- emake DESTDIR="${D}" install || die
-
- cd "${S}"/extensions/tdomhtml
- emake DESTDIR="${D}" install || die
-
- cd "${S}"/extensions/tnc
- emake DESTDIR="${D}" install || die
-
- cd "${S}"
- dodoc CHANGES ChangeLog README* || die
-}