summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonardo Boshell <leonardop@gentoo.org>2005-07-13 06:51:32 +0000
committerLeonardo Boshell <leonardop@gentoo.org>2005-07-13 06:51:32 +0000
commit6ecb10f8f948956a88ca3fa147a6e4c44e80e7f4 (patch)
tree2369f5720571e2bcb9707ddb0ec8536646ea84d6 /dev-libs
parentrepoman: Trim trailing whitespace (diff)
downloadgentoo-2-6ecb10f8f948956a88ca3fa147a6e4c44e80e7f4.tar.gz
gentoo-2-6ecb10f8f948956a88ca3fa147a6e4c44e80e7f4.tar.bz2
gentoo-2-6ecb10f8f948956a88ca3fa147a6e4c44e80e7f4.zip
Removing old ebuilds
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/libxml2/files/digest-libxml2-2.6.161
-rw-r--r--dev-libs/libxml2/files/libxml2-2.6.16-xlattable.patch17
-rw-r--r--dev-libs/libxml2/libxml2-2.6.16.ebuild74
3 files changed, 0 insertions, 92 deletions
diff --git a/dev-libs/libxml2/files/digest-libxml2-2.6.16 b/dev-libs/libxml2/files/digest-libxml2-2.6.16
deleted file mode 100644
index 74e916f0aba3..000000000000
--- a/dev-libs/libxml2/files/digest-libxml2-2.6.16
+++ /dev/null
@@ -1 +0,0 @@
-MD5 1ad0827b95e17e546265f2c4da001a6a libxml2-2.6.16.tar.bz2 3100259
diff --git a/dev-libs/libxml2/files/libxml2-2.6.16-xlattable.patch b/dev-libs/libxml2/files/libxml2-2.6.16-xlattable.patch
deleted file mode 100644
index 7fdd306debb2..000000000000
--- a/dev-libs/libxml2/files/libxml2-2.6.16-xlattable.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-===================================================================
-RCS file: /cvs/gnome/libxml2/encoding.c,v
-retrieving revision 1.87
-retrieving revision 1.88
-diff -u -r1.87 -r1.88
---- encoding.c 2004/11/06 13:26:59 1.87
-+++ encoding.c 2004/11/11 20:42:04 1.88
-@@ -2335,7 +2335,7 @@
- unsigned int c;
-
- if ((out == NULL) || (outlen == NULL) || (inlen == NULL) ||
-- (in == NULL) || (xlattable == NULL))
-+ (in == NULL) || (unicodetable == NULL))
- return(-1);
- outend = out + *outlen;
- inend = in + *inlen;
-
diff --git a/dev-libs/libxml2/libxml2-2.6.16.ebuild b/dev-libs/libxml2/libxml2-2.6.16.ebuild
deleted file mode 100644
index f3e689ffd242..000000000000
--- a/dev-libs/libxml2/libxml2-2.6.16.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.6.16.ebuild,v 1.10 2005/04/08 16:13:07 corsair Exp $
-
-inherit libtool gnome.org flag-o-matic gnuconfig
-
-DESCRIPTION="Version 2 of the library to manipulate XML files"
-HOMEPAGE="http://www.xmlsoft.org/"
-
-LICENSE="MIT"
-SLOT="2"
-KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 s390 sh sparc x86"
-IUSE="python readline ipv6"
-
-RDEPEND="sys-libs/zlib
- python? ( dev-lang/python )
- readline? ( sys-libs/readline )"
-DEPEND="${RDEPEND}
- hppa? ( >=sys-devel/binutils-2.15.92.0.2 )"
-
-src_unpack() {
-
- unpack ${A}
- gnuconfig_update ${S}
-
-}
-
-src_compile() {
-
- # Please do not remove, as else we get references to PORTAGE_TMPDIR
- # in /usr/lib/python?.?/site-packages/libxml2mod.la among things.
- elibtoolize
-
- # filter seemingly problematic CFLAGS (#26320)
- filter-flags -fprefetch-loop-arrays -funroll-loops
-
- # USE zlib support breaks gnome2
- # (libgnomeprint for instance fails to compile with
- # fresh install, and existing) - <azarah@gentoo.org> (22 Dec 2002).
-
- #see bug #76447
- epatch ${FILESDIR}/${P}-xlattable.patch
-
- econf --with-zlib \
- $(use_with python) \
- $(use_with readline) \
- $(use_enable ipv6) || die
-
- emake || die
-
-}
-
-src_install() {
-
- make DESTDIR=${D} install || die
-
- dodoc AUTHORS ChangeLog NEWS README TODO
-
-}
-
-pkg_postinst() {
-
- # need an XML catalog, so no-one writes to a non-existent one
- CATALOG=/etc/xml/catalog
- # we dont want to clobber an existing catalog though,
- # only ensure that one is there
- # <obz@gentoo.org>
- if [ ! -e ${CATALOG} ]; then
- [ -d /etc/xml ] || mkdir /etc/xml
- /usr/bin/xmlcatalog --create > ${CATALOG}
- einfo "Created XML catalog in ${CATALOG}"
- fi
-
-}