diff options
Diffstat (limited to 'dev-libs/libxml2/libxml2-2.4.23.ebuild')
-rw-r--r-- | dev-libs/libxml2/libxml2-2.4.23.ebuild | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/dev-libs/libxml2/libxml2-2.4.23.ebuild b/dev-libs/libxml2/libxml2-2.4.23.ebuild index ba80c529f76c..423db44b08db 100644 --- a/dev-libs/libxml2/libxml2-2.4.23.ebuild +++ b/dev-libs/libxml2/libxml2-2.4.23.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.4.23.ebuild,v 1.2 2002/07/17 23:04:41 lostlogic Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.4.23.ebuild,v 1.3 2002/08/01 18:02:39 seemant Exp $ + +inherit libtool S=${WORKDIR}/${P} DESCRIPTION="libxml2" @@ -11,22 +13,21 @@ DEPEND=">=sys-libs/ncurses-5.2 >=sys-libs/readline-4.1 >=sys-libs/zlib-1.1.4" +SLOT="2" +LICENSE="GPL-2 LGPL-2" +KEYWORDS="x86" src_compile() { # Fix .la files of python site packages - libtoolize --copy --force - - ./configure --host=${CHOST} \ - --prefix=/usr \ - --mandir=/usr/share/man \ - --sysconfdir=/etc \ - --with-zlib || die + elibtoolize - MAKEOPTS="-j1" emake || die + econf --with-zlib || die + make || die } src_install() { - make DESTDIR=${D} \ + make \ + DESTDIR=${D} \ DOCS_DIR=/usr/share/doc/${PF}/python \ EXAMPLE_DIR=/usr/share/doc/${PF}/python/example \ BASE_DIR=/usr/share/doc \ @@ -37,4 +38,3 @@ src_install() { dodoc AUTHORS COPYING* ChangeLog NEWS README } - |