diff options
author | Ben de Groot <yngwin@gentoo.org> | 2008-10-22 15:02:07 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2008-10-22 15:02:07 +0000 |
commit | 2bfdba2e54aefed32f6a7c6446922418c3a18354 (patch) | |
tree | cc84a8370a39ce5aaac664c6bd54abb218a04e12 /www-client/dillo | |
parent | add "intel" wherever "i810" is used (diff) | |
download | gentoo-2-2bfdba2e54aefed32f6a7c6446922418c3a18354.tar.gz gentoo-2-2bfdba2e54aefed32f6a7c6446922418c3a18354.tar.bz2 gentoo-2-2bfdba2e54aefed32f6a7c6446922418c3a18354.zip |
Do not die when doc useflag is disabled.
(Portage version: 2.2_rc12_p11688/cvs/Linux 2.6.26-hh3 i686)
Diffstat (limited to 'www-client/dillo')
-rw-r--r-- | www-client/dillo/ChangeLog | 5 | ||||
-rw-r--r-- | www-client/dillo/dillo-2.0.ebuild | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/www-client/dillo/ChangeLog b/www-client/dillo/ChangeLog index 25e0a6e6bacb..f3c932fbc27d 100644 --- a/www-client/dillo/ChangeLog +++ b/www-client/dillo/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for www-client/dillo # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/dillo/ChangeLog,v 1.61 2008/10/22 00:45:25 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/dillo/ChangeLog,v 1.62 2008/10/22 15:02:07 yngwin Exp $ + + 22 Oct 2008; Ben de Groot <yngwin@gentoo.org> dillo-2.0.ebuild: + Do not die when doc useflag is disabled. *dillo-2.0 (22 Oct 2008) diff --git a/www-client/dillo/dillo-2.0.ebuild b/www-client/dillo/dillo-2.0.ebuild index 410fb0147689..58d764aa87f1 100644 --- a/www-client/dillo/dillo-2.0.ebuild +++ b/www-client/dillo/dillo-2.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/dillo/dillo-2.0.ebuild,v 1.1 2008/10/22 00:45:25 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/dillo/dillo-2.0.ebuild,v 1.2 2008/10/22 15:02:07 yngwin Exp $ EAPI="2" inherit eutils multilib @@ -46,7 +46,9 @@ src_install() { dodir /etc emake DESTDIR="${D}" install || die "install failed" - use doc && dohtml html/* || die "install documentation failed" + if use doc; then + dohtml html/* || die "install documentation failed" + fi dodoc AUTHORS ChangeLog README NEWS docinto doc dodoc doc/*.txt doc/README |