diff options
Diffstat (limited to 'dev-libs/libxml2/libxml2-2.4.18.ebuild')
-rw-r--r-- | dev-libs/libxml2/libxml2-2.4.18.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/dev-libs/libxml2/libxml2-2.4.18.ebuild b/dev-libs/libxml2/libxml2-2.4.18.ebuild new file mode 100644 index 000000000000..65f5d5e09a9e --- /dev/null +++ b/dev-libs/libxml2/libxml2-2.4.18.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: Daniel Robbins <drobbins@gentoo.org>, Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.4.18.ebuild,v 1.1 2002/03/21 10:16:32 azarah Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="libxml" +SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/libxml/${P}.tar.gz" +HOMEPAGE="http://www.gnome.org/" + +DEPEND="virtual/glibc + >=sys-libs/ncurses-5.2 + >=sys-libs/readline-4.1 + >=sys-libs/zlib-1.1.3" + + +src_compile() { + ./configure --host=${CHOST} \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --sysconfdir=/etc \ + --with-zlib || die + + emake || die +} + +src_install() { + make DESTDIR=${D} \ + DOCS_DIR=/usr/share/doc/${PF}/python \ + EXAMPLE_DIR=/usr/share/doc/${PF}/python/example \ + BASE_DIR=/usr/share/doc \ + DOC_MODULE=${PF} \ + EXAMPLES_DIR=/usr/share/doc/${PF}/example \ + TARGET_DIR=/usr/share/doc/${PF}/html \ + install || die + + dodoc AUTHORS COPYING* ChangeLog NEWS README +} + |