diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-07-18 21:44:00 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-07-18 21:44:00 +0000 |
commit | 89b9b839a311e4575deaa7f1d02c0bdde29afc52 (patch) | |
tree | 5a50a0c4b38172ca4d07e519b93d0fe38f8f102a /net-libs/libwww | |
parent | old (diff) | |
download | gentoo-2-89b9b839a311e4575deaa7f1d02c0bdde29afc52.tar.gz gentoo-2-89b9b839a311e4575deaa7f1d02c0bdde29afc52.tar.bz2 gentoo-2-89b9b839a311e4575deaa7f1d02c0bdde29afc52.zip |
Remove more cruft
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'net-libs/libwww')
-rw-r--r-- | net-libs/libwww/libwww-5.4.0-r7.ebuild | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/net-libs/libwww/libwww-5.4.0-r7.ebuild b/net-libs/libwww/libwww-5.4.0-r7.ebuild index d71144268bd2..f5d1ced3757f 100644 --- a/net-libs/libwww/libwww-5.4.0-r7.ebuild +++ b/net-libs/libwww/libwww-5.4.0-r7.ebuild @@ -1,11 +1,12 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libwww/libwww-5.4.0-r7.ebuild,v 1.15 2010/07/18 21:41:26 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libwww/libwww-5.4.0-r7.ebuild,v 1.16 2010/07/18 21:44:00 ssuominen Exp $ inherit eutils multilib autotools PATCHVER="1.2" MY_P=w3c-${P} + DESCRIPTION="A general-purpose client side WEB API" HOMEPAGE="http://www.w3.org/Library/" SRC_URI="http://www.w3.org/Library/Distribution/${MY_P}.tgz @@ -34,7 +35,7 @@ src_unpack() { } src_compile() { - if use mysql ; then + if use mysql; then myconf="--with-mysql=/usr/$(get_libdir)/mysql/libmysqlclient.a" else myconf="--without-mysql" @@ -48,13 +49,13 @@ src_compile() { --with-md5 \ --with-expat \ $(use_with ssl) \ - ${myconf} || die "./configure failed" + ${myconf} - emake || die "Compilation failed" + emake || die } src_install() { - emake DESTDIR="${D}" install || die "Installation failed" + emake DESTDIR="${D}" install || die dodoc ChangeLog dohtml -r . } |