diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2011-01-09 18:50:22 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2011-01-09 18:50:22 +0000 |
commit | 98e9908f33f56e8200b419a7ec30e9114330ff51 (patch) | |
tree | 920dff13210f88514c657d00d4fd6d1a06c432ef /dev-libs/libcoyotl/libcoyotl-3.1.0.ebuild | |
parent | Handle better the fmtutil-sys call and fix a typo (diff) | |
download | gentoo-2-98e9908f33f56e8200b419a7ec30e9114330ff51.tar.gz gentoo-2-98e9908f33f56e8200b419a7ec30e9114330ff51.tar.bz2 gentoo-2-98e9908f33f56e8200b419a7ec30e9114330ff51.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).
(Portage version: 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 } |