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
commit60b2cbb79a7fb04ca56b621b0eec07d0fd9f5bde (patch)
tree5650134c888ad7b80351425764d7145cc6007ad2 /dev-libs
parentRemoved stray ebuild. (diff)
downloadgentoo-2-60b2cbb79a7fb04ca56b621b0eec07d0fd9f5bde.tar.gz
gentoo-2-60b2cbb79a7fb04ca56b621b0eec07d0fd9f5bde.tar.bz2
gentoo-2-60b2cbb79a7fb04ca56b621b0eec07d0fd9f5bde.zip
Removing unused ebuild
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/libxml2/files/digest-libxml2-2.6.181
-rw-r--r--dev-libs/libxml2/libxml2-2.6.18.ebuild81
2 files changed, 0 insertions, 82 deletions
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
-
-}