diff options
author | Steve Arnold <nerdboy@gentoo.org> | 2007-09-01 20:10:31 +0000 |
---|---|---|
committer | Steve Arnold <nerdboy@gentoo.org> | 2007-09-01 20:10:31 +0000 |
commit | 252924055af0063b3cb51a1a41eeacef0b9bfc94 (patch) | |
tree | 338dcfde06c71096e6b62e02d2f64aa5eb4da054 /sci-libs | |
parent | Initial version. (diff) | |
download | gentoo-2-252924055af0063b3cb51a1a41eeacef0b9bfc94.tar.gz gentoo-2-252924055af0063b3cb51a1a41eeacef0b9bfc94.tar.bz2 gentoo-2-252924055af0063b3cb51a1a41eeacef0b9bfc94.zip |
updated use doc construct to fix borkage
(Portage version: 2.1.3.7)
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/libgeotiff/ChangeLog | 5 | ||||
-rw-r--r-- | sci-libs/libgeotiff/libgeotiff-1.2.4.ebuild | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/sci-libs/libgeotiff/ChangeLog b/sci-libs/libgeotiff/ChangeLog index f26ba35a4380..18d9a8108dbe 100644 --- a/sci-libs/libgeotiff/ChangeLog +++ b/sci-libs/libgeotiff/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-libs/libgeotiff # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeotiff/ChangeLog,v 1.15 2007/09/01 19:59:10 nerdboy Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeotiff/ChangeLog,v 1.16 2007/09/01 20:10:31 nerdboy Exp $ + + 01 Sep 2007; Steve Arnold <nerdboy@gentoo.org> libgeotiff-1.2.4.ebuild: + updated use doc construct to fix borkage... *libgeotiff-1.2.4 (01 Sep 2007) diff --git a/sci-libs/libgeotiff/libgeotiff-1.2.4.ebuild b/sci-libs/libgeotiff/libgeotiff-1.2.4.ebuild index 6a24bb748eed..758b27e08616 100644 --- a/sci-libs/libgeotiff/libgeotiff-1.2.4.ebuild +++ b/sci-libs/libgeotiff/libgeotiff-1.2.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeotiff/libgeotiff-1.2.4.ebuild,v 1.1 2007/09/01 19:59:10 nerdboy Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeotiff/libgeotiff-1.2.4.ebuild,v 1.2 2007/09/01 20:10:31 nerdboy Exp $ inherit autotools eutils flag-o-matic @@ -28,7 +28,9 @@ src_compile() { econf || die "econf failed" emake -j1 || die "emake failed" - use doc && make dox || die "make dox failed" + if use doc; then + make dox || die "make dox failed" + fi } src_install() { |