diff options
author | Donny Davies <woodchip@gentoo.org> | 2002-03-26 03:50:25 +0000 |
---|---|---|
committer | Donny Davies <woodchip@gentoo.org> | 2002-03-26 03:50:25 +0000 |
commit | c17514216ff9a74d952911ae03be62253b0edf51 (patch) | |
tree | 39f89a394786322650ba69528d63febfda8f244c /dev-libs/expat | |
parent | update DEPEND (diff) | |
download | gentoo-2-c17514216ff9a74d952911ae03be62253b0edf51.tar.gz gentoo-2-c17514216ff9a74d952911ae03be62253b0edf51.tar.bz2 gentoo-2-c17514216ff9a74d952911ae03be62253b0edf51.zip |
fixed: install to tempdir, html docs, parallel make.
Diffstat (limited to 'dev-libs/expat')
-rw-r--r-- | dev-libs/expat/ChangeLog | 9 | ||||
-rw-r--r-- | dev-libs/expat/expat-1.95.1-r1.ebuild | 25 | ||||
-rw-r--r-- | dev-libs/expat/expat-1.95.2.ebuild | 25 | ||||
-rw-r--r-- | dev-libs/expat/files/digest-expat-1.95.1-r1 | 1 | ||||
-rw-r--r-- | dev-libs/expat/files/digest-expat-1.95.2 | 1 |
5 files changed, 34 insertions, 27 deletions
diff --git a/dev-libs/expat/ChangeLog b/dev-libs/expat/ChangeLog index 4c1a630d4308..77b8fb990410 100644 --- a/dev-libs/expat/ChangeLog +++ b/dev-libs/expat/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-libs/expat # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/dev-libs/expat/ChangeLog,v 1.1 2002/02/01 21:53:11 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/expat/ChangeLog,v 1.2 2002/03/26 03:50:25 woodchip Exp $ + +*expat-1.95.2 (25 Mar 2002) + + 25 Mar 2002; Donny Davies <woodchip@gentoo.org> expat-1.95.2.ebuild : + + Update to latest release. Fixed to install into ${D}, previously it didnt. + Parallel make is busted, s/emake/make/. Fixed html docs. *expat-1.95.1-r1 (1 Feb 2002) diff --git a/dev-libs/expat/expat-1.95.1-r1.ebuild b/dev-libs/expat/expat-1.95.1-r1.ebuild deleted file mode 100644 index 9e4edc3d9b3d..000000000000 --- a/dev-libs/expat/expat-1.95.1-r1.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/dev-libs/expat/expat-1.95.1-r1.ebuild,v 1.2 2001/11/10 12:05:20 hallski Exp $ - -S=${WORKDIR}/${P} -DESCRIPTION="XML parsing libraries" -SRC_URI="http://download.sourceforge.net/expat/${P}.tar.gz" -HOMEPAGE="http://expat.sourceforge.net" - -DEPEND="virtual/glibc" - -src_compile() { - ./configure --prefix=/usr || die - - emake || die -} - -src_install() { - make DESTDIR=${D} install || die - - dodoc COPYING Changes MANIFEST README - docinto html - dodoc doc/* -} diff --git a/dev-libs/expat/expat-1.95.2.ebuild b/dev-libs/expat/expat-1.95.2.ebuild new file mode 100644 index 000000000000..359dd521e7f7 --- /dev/null +++ b/dev-libs/expat/expat-1.95.2.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/dev-libs/expat/expat-1.95.2.ebuild,v 1.1 2002/03/26 03:50:25 woodchip Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="XML parsing libraries" +SRC_URI="http://download.sourceforge.net/expat/${P}.tar.gz" +HOMEPAGE="http://expat.sourceforge.net" + +DEPEND="virtual/glibc" + +src_compile() { + ./configure --prefix=/usr || die + + # parallel make doesnt work + make || die +} + +src_install() { + make prefix=${D}/usr install || die + + dodoc COPYING Changes MANIFEST README + dohtml doc/* +} diff --git a/dev-libs/expat/files/digest-expat-1.95.1-r1 b/dev-libs/expat/files/digest-expat-1.95.1-r1 deleted file mode 100644 index b6a454b0289f..000000000000 --- a/dev-libs/expat/files/digest-expat-1.95.1-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 113ebbf7efaf7179d869341cbb2879f7 expat-1.95.1.tar.gz 193539 diff --git a/dev-libs/expat/files/digest-expat-1.95.2 b/dev-libs/expat/files/digest-expat-1.95.2 new file mode 100644 index 000000000000..f0f6e04a2bf3 --- /dev/null +++ b/dev-libs/expat/files/digest-expat-1.95.2 @@ -0,0 +1 @@ +MD5 159c8a36523dc37f4cbcd1d6f970ccfb expat-1.95.2.tar.gz 190316 |