diff options
Diffstat (limited to 'dev-libs/expat/expat-1.95.3.ebuild')
-rw-r--r-- | dev-libs/expat/expat-1.95.3.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/dev-libs/expat/expat-1.95.3.ebuild b/dev-libs/expat/expat-1.95.3.ebuild new file mode 100644 index 000000000000..86aeac615fcb --- /dev/null +++ b/dev-libs/expat/expat-1.95.3.ebuild @@ -0,0 +1,28 @@ +# 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/expat/expat-1.95.3.ebuild,v 1.1 2002/07/10 20:45:40 seemant Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="XML parsing libraries" +SRC_URI="mirror://sourceforge/expat/${P}.tar.gz" +HOMEPAGE="http://expat.sourceforge.net" + +DEPEND="virtual/glibc" + +SLOT="0" +LICENSE="as-is" +KEYWORDS="x86" + +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/* +} |