diff options
author | 2011-01-09 18:50:22 +0000 | |
---|---|---|
committer | 2011-01-09 18:50:22 +0000 | |
commit | 98e9908f33f56e8200b419a7ec30e9114330ff51 (patch) | |
tree | 920dff13210f88514c657d00d4fd6d1a06c432ef /dev-libs/libcoyotl | |
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')
-rw-r--r-- | dev-libs/libcoyotl/ChangeLog | 11 | ||||
-rw-r--r-- | dev-libs/libcoyotl/libcoyotl-3.0.1.ebuild | 17 | ||||
-rw-r--r-- | dev-libs/libcoyotl/libcoyotl-3.1.0.ebuild | 12 |
3 files changed, 17 insertions, 23 deletions
diff --git a/dev-libs/libcoyotl/ChangeLog b/dev-libs/libcoyotl/ChangeLog index 2a7e9db1366e..863912a8be90 100644 --- a/dev-libs/libcoyotl/ChangeLog +++ b/dev-libs/libcoyotl/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-libs/libcoyotl -# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcoyotl/ChangeLog,v 1.11 2009/02/26 14:52:49 josejx Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcoyotl/ChangeLog,v 1.12 2011/01/09 18:50:21 flameeyes Exp $ + + 09 Jan 2011; Diego E. Pettenò <flameeyes@gentoo.org> + -libcoyotl-3.0.1.ebuild, libcoyotl-3.1.0.ebuild: + 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). 26 Feb 2009; Joseph Jezak <josejx@gentoo.org> libcoyotl-3.1.0.ebuild: Marked ppc stable. diff --git a/dev-libs/libcoyotl/libcoyotl-3.0.1.ebuild b/dev-libs/libcoyotl/libcoyotl-3.0.1.ebuild deleted file mode 100644 index 2cb245460f16..000000000000 --- a/dev-libs/libcoyotl/libcoyotl-3.0.1.ebuild +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcoyotl/libcoyotl-3.0.1.ebuild,v 1.5 2005/12/18 23:19:31 halcy0n Exp $ - -DESCRIPTION="A collection of portable C++ classes." -HOMEPAGE="http://www.coyotegulch.com/products/libcoyotl/" -SRC_URI="http://www.coyotegulch.com/distfiles/${P}.tar.gz" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86 amd64 ~ppc" -IUSE="" -DEPEND="media-libs/libpng" - -src_install() { - make DESTDIR="${D}" install - dodoc ChangeLog NEWS README -} 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 } |