summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonardo Boshell <leonardop@gentoo.org>2005-06-28 02:54:43 +0000
committerLeonardo Boshell <leonardop@gentoo.org>2005-06-28 02:54:43 +0000
commita5a94cb757d6e896fb3a0013d7ec51b83c8fed6e (patch)
treedf62e9846b85e120a0d7f2bceb72e63220ee00be
parentRemoved stray ebuild. (diff)
downloadhistorical-a5a94cb757d6e896fb3a0013d7ec51b83c8fed6e.tar.gz
historical-a5a94cb757d6e896fb3a0013d7ec51b83c8fed6e.tar.bz2
historical-a5a94cb757d6e896fb3a0013d7ec51b83c8fed6e.zip
Removing unused ebuild
Package-Manager: portage-2.0.51.22-r1
-rw-r--r--dev-libs/libxml2/Manifest18
-rw-r--r--dev-libs/libxml2/files/digest-libxml2-2.6.181
-rw-r--r--dev-libs/libxml2/libxml2-2.6.18.ebuild81
3 files changed, 3 insertions, 97 deletions
diff --git a/dev-libs/libxml2/Manifest b/dev-libs/libxml2/Manifest
index 4b799b453945..4e1b24b57fdc 100644
--- a/dev-libs/libxml2/Manifest
+++ b/dev-libs/libxml2/Manifest
@@ -1,21 +1,9 @@
------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA1
-
-MD5 d0db43891d643ab9d30a17f9b8263d78 libxml2-2.6.18.ebuild 2048
-MD5 03ad2e6c4ab41244af1015a8bbb0b39f metadata.xml 158
MD5 e3c318e777a9fc26bb5a4d321409f1c8 ChangeLog 14269
MD5 2c997a3eeb8cebea6c43aeeb58d08e2c libxml2-2.6.16.ebuild 1775
-MD5 062aa59bd520f664b2d470c682592dd8 libxml2-2.6.19.ebuild 2045
MD5 47e51f2596c69d2b8ee7c34a39f2a647 libxml2-2.6.17.ebuild 1704
+MD5 03ad2e6c4ab41244af1015a8bbb0b39f metadata.xml 158
+MD5 062aa59bd520f664b2d470c682592dd8 libxml2-2.6.19.ebuild 2045
MD5 ff7efcdcc2a364b0eeca271ef52566f8 files/digest-libxml2-2.6.16 68
-MD5 3451360f628f1e2dc20813a52fbaa404 files/libxml2-2.6.16-xlattable.patch 537
-MD5 bf6bcb2188d6caf2b35ba1a6aaa7d94f files/digest-libxml2-2.6.18 68
MD5 8409491d7d4c895c3a509a3c1c121e02 files/digest-libxml2-2.6.17 68
+MD5 3451360f628f1e2dc20813a52fbaa404 files/libxml2-2.6.16-xlattable.patch 537
MD5 761d617849c91c951713a1411f3c1cff files/digest-libxml2-2.6.19 68
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.4.1-ecc0.1.6 (GNU/Linux)
-
-iD8DBQFCwD/hKRy60XGEcJIRAkOGAJ0b+2IZaahzQhCf4rPJiVX35k3Y7ACfY2ky
-XUXQc9wOAx7AX/UFpDCcDgs=
-=ur8Q
------END PGP SIGNATURE-----
diff --git a/dev-libs/libxml2/files/digest-libxml2-2.6.18 b/dev-libs/libxml2/files/digest-libxml2-2.6.18
deleted file mode 100644
index 72cb196c807f..000000000000
--- a/dev-libs/libxml2/files/digest-libxml2-2.6.18
+++ /dev/null
@@ -1 +0,0 @@
-MD5 ce49c0c2dc08613cf4127f7521458ad9 libxml2-2.6.18.tar.bz2 3083331
diff --git a/dev-libs/libxml2/libxml2-2.6.18.ebuild b/dev-libs/libxml2/libxml2-2.6.18.ebuild
deleted file mode 100644
index 131b7811a1f8..000000000000
--- a/dev-libs/libxml2/libxml2-2.6.18.ebuild
+++ /dev/null
@@ -1,81 +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.18.ebuild,v 1.4 2005/06/13 23:50:05 vapier Exp $
-
-inherit libtool gnome.org flag-o-matic eutils
-
-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 ~m68k ~mips ~ppc ~ppc-macos ~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}
- epunt_cxx
-
-}
-
-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).
-
- econf --with-zlib \
- $(use_with python) \
- $(use_with readline) \
- $(use_enable ipv6) || die
-
- # Patching the Makefiles to respect get_libdir
- # Fixes BUG #86766, please keep this.
- # Danny van Dyk <kugelfang@gentoo.org> 2005/03/26
- for x in $(find ${S} -name "Makefile") ; do
- sed \
- -e "s|^\(PYTHON_SITE_PACKAGES\ =\ \/usr\/\).*\(\/python.*\)|\1$(get_libdir)\2|g" \
- -i ${x} \
- || die "sed failed"
- done
-
- 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
-
-}