diff options
author | 2011-01-09 18:50:22 +0000 | |
---|---|---|
committer | 2011-01-09 18:50:22 +0000 | |
commit | 79cb3e08052d088ed1afaca1ad09608df5b950dc (patch) | |
tree | 5935269f451fb132d6acd0b507c9dc9ed5296eba /dev-libs/libcoyotl/libcoyotl-3.1.0.ebuild | |
parent | Handle better the fmtutil-sys call and fix a typo (diff) | |
download | historical-79cb3e08052d088ed1afaca1ad09608df5b950dc.tar.gz historical-79cb3e08052d088ed1afaca1ad09608df5b950dc.tar.bz2 historical-79cb3e08052d088ed1afaca1ad09608df5b950dc.zip |
Remove old version as it's not needed anymore (closes bug #307815 by Christophe Lefebvre); run eautoreconf to build when grep-2.7 is installed (closes bug #340048 by Renato Gallo); don't try installing API docs if they weren't built (closes bug #298217 by me).
Package-Manager: portage-2.2.0_alpha14/cvs/Linux x86_64
Diffstat (limited to 'dev-libs/libcoyotl/libcoyotl-3.1.0.ebuild')
-rw-r--r-- | dev-libs/libcoyotl/libcoyotl-3.1.0.ebuild | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/dev-libs/libcoyotl/libcoyotl-3.1.0.ebuild b/dev-libs/libcoyotl/libcoyotl-3.1.0.ebuild index 6caed72a75cd..526f03556430 100644 --- a/dev-libs/libcoyotl/libcoyotl-3.1.0.ebuild +++ b/dev-libs/libcoyotl/libcoyotl-3.1.0.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcoyotl/libcoyotl-3.1.0.ebuild,v 1.4 2009/02/26 14:52:49 josejx Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcoyotl/libcoyotl-3.1.0.ebuild,v 1.5 2011/01/09 18:50:21 flameeyes Exp $ -inherit eutils +inherit eutils autotools DESCRIPTION="A collection of portable C++ classes." HOMEPAGE="http://www.coyotegulch.com/products/libcoyotl/" @@ -20,6 +20,8 @@ src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}/${PV}-gcc-4.3.patch" + + eautoreconf } src_compile() { @@ -35,5 +37,7 @@ src_compile() { src_install() { emake DESTDIR="${D}" install || die "emake install failed" dodoc AUTHORS ChangeLog NEWS README - dohtml docs/html/* + if use doc ; then + dohtml docs/html/* || die + fi } |