diff options
author | Ben de Groot <yngwin@gentoo.org> | 2008-12-30 02:31:15 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2008-12-30 02:31:15 +0000 |
commit | e3eb5ab2141f2eef9bf1ab1bee32794ba05c1a0c (patch) | |
tree | 32e14319cdae6071e8fecd98aa5c4bcf4eeed2de /www-client/dillo | |
parent | Add ~ppc, bug 242774 #c13 (diff) | |
download | gentoo-2-e3eb5ab2141f2eef9bf1ab1bee32794ba05c1a0c.tar.gz gentoo-2-e3eb5ab2141f2eef9bf1ab1bee32794ba05c1a0c.tar.bz2 gentoo-2-e3eb5ab2141f2eef9bf1ab1bee32794ba05c1a0c.zip |
Die on doxygen failure
(Portage version: 2.2_rc20/cvs/Linux 2.6.27-hh7 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 | 9 |
2 files changed, 9 insertions, 5 deletions
diff --git a/www-client/dillo/ChangeLog b/www-client/dillo/ChangeLog index c739198d6d0d..19b870e30768 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.65 2008/11/24 15:19:50 fmccor Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/dillo/ChangeLog,v 1.66 2008/12/30 02:31:15 yngwin Exp $ + + 30 Dec 2008; Ben de Groot <yngwin@gentoo.org> dillo-2.0.ebuild: + Die on doxygen failure 24 Nov 2008; Ferris McCormick <fmccor@gentoo.org> dillo-2.0.ebuild: Keyword ~sparc for testing, See Bug #242774. diff --git a/www-client/dillo/dillo-2.0.ebuild b/www-client/dillo/dillo-2.0.ebuild index 49ee8e405085..ba7984271254 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.4 2008/11/24 15:19:50 fmccor Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/dillo/dillo-2.0.ebuild,v 1.5 2008/12/30 02:31:15 yngwin Exp $ EAPI="2" inherit eutils multilib @@ -33,13 +33,14 @@ src_configure() { $(use_enable ipv6) \ $(use_enable jpeg) \ $(use_enable png) \ - $(use_enable ssl) \ - || die "configure failed" + $(use_enable ssl) } src_compile() { emake || die "make failed" - use doc && doxygen Doxyfile + if use doc ; then + doxygen Doxyfile || die "doxygen failed" + fi } src_install() { |