diff options
author | Mikael Hallendal <hallski@gentoo.org> | 2001-11-10 12:05:20 +0000 |
---|---|---|
committer | Mikael Hallendal <hallski@gentoo.org> | 2001-11-10 12:05:20 +0000 |
commit | c5e53db0be2e3534202f4ca04a105b0605cb64fd (patch) | |
tree | 6b04ee29b8b080b619e357eb61291dd2f9d8398d /dev-libs/expat | |
parent | A=-fix, try->die,... (diff) | |
download | historical-c5e53db0be2e3534202f4ca04a105b0605cb64fd.tar.gz historical-c5e53db0be2e3534202f4ca04a105b0605cb64fd.tar.bz2 historical-c5e53db0be2e3534202f4ca04a105b0605cb64fd.zip |
A=-fix, try->die, tab-fixes, stylefixes, ...
Diffstat (limited to 'dev-libs/expat')
-rw-r--r-- | dev-libs/expat/expat-1.95.1-r1.ebuild | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/dev-libs/expat/expat-1.95.1-r1.ebuild b/dev-libs/expat/expat-1.95.1-r1.ebuild index 398fdcd68dc9..9e4edc3d9b3d 100644 --- a/dev-libs/expat/expat-1.95.1-r1.ebuild +++ b/dev-libs/expat/expat-1.95.1-r1.ebuild @@ -1,30 +1,25 @@ # 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.1 2001/02/27 15:36:32 achim Exp $ +# $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 $ -A=${P}.tar.gz S=${WORKDIR}/${P} DESCRIPTION="XML parsing libraries" -SRC_URI="http://download.sourceforge.net/expat/${A}" +SRC_URI="http://download.sourceforge.net/expat/${P}.tar.gz" HOMEPAGE="http://expat.sourceforge.net" DEPEND="virtual/glibc" src_compile() { - - try ./configure --prefix=/usr - try pmake + ./configure --prefix=/usr || die + + emake || die } src_install() { + make DESTDIR=${D} install || die - try make DESTDIR=${D} install - #try make prefix=${D}/usr install dodoc COPYING Changes MANIFEST README - docinto html - dodoc doc/* + docinto html + dodoc doc/* } - - - |