diff options
author | Gustavo Zacarias <gustavoz@gentoo.org> | 2005-07-22 14:15:24 +0000 |
---|---|---|
committer | Gustavo Zacarias <gustavoz@gentoo.org> | 2005-07-22 14:15:24 +0000 |
commit | 9451167e05db7fe62449134e4614b924d474f850 (patch) | |
tree | 0994c8b923812b900126453b910387ddbe9f048c /dev-util/cppunit | |
parent | Version bump and closing bug #99905. (diff) | |
download | gentoo-2-9451167e05db7fe62449134e4614b924d474f850.tar.gz gentoo-2-9451167e05db7fe62449134e4614b924d474f850.tar.bz2 gentoo-2-9451167e05db7fe62449134e4614b924d474f850.zip |
Added doc USE flag thanks to ciaranm, and sparc stable
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'dev-util/cppunit')
-rw-r--r-- | dev-util/cppunit/ChangeLog | 5 | ||||
-rw-r--r-- | dev-util/cppunit/cppunit-1.10.2.ebuild | 10 |
2 files changed, 9 insertions, 6 deletions
diff --git a/dev-util/cppunit/ChangeLog b/dev-util/cppunit/ChangeLog index 2ff161e45910..14e65146d8e7 100644 --- a/dev-util/cppunit/ChangeLog +++ b/dev-util/cppunit/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-util/cppunit # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cppunit/ChangeLog,v 1.13 2005/05/29 22:53:56 cryos Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/cppunit/ChangeLog,v 1.14 2005/07/22 14:15:24 gustavoz Exp $ + + 22 Jul 2005; Gustavo Zacarias <gustavoz@gentoo.org> cppunit-1.10.2.ebuild: + Added doc USE flag thanks to ciaranm, and sparc stable 29 May 2005; Marcus D. Hanwell <marcus@gentoo.org> cppunit-1.10.2.ebuild: Stable on amd64. diff --git a/dev-util/cppunit/cppunit-1.10.2.ebuild b/dev-util/cppunit/cppunit-1.10.2.ebuild index 8c1263ba7dd2..c81f92a5bed3 100644 --- a/dev-util/cppunit/cppunit-1.10.2.ebuild +++ b/dev-util/cppunit/cppunit-1.10.2.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cppunit/cppunit-1.10.2.ebuild,v 1.8 2005/07/15 23:33:48 george Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/cppunit/cppunit-1.10.2.ebuild,v 1.9 2005/07/22 14:15:24 gustavoz Exp $ -IUSE="" +IUSE="doc" DESCRIPTION="CppUnit is the C++ port of the famous JUnit framework for unit testing." HOMEPAGE="http://cppunit.sourceforge.net/" @@ -10,15 +10,15 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="amd64 ppc ~sparc x86" +KEYWORDS="amd64 ppc sparc x86" RESTRICT="maketest" -DEPEND="app-doc/doxygen +DEPEND="doc? ( app-doc/doxygen ) media-gfx/graphviz" src_compile() { - econf || die "./configure failed" + econf `use_enable doc doxygen` || die "configure failed" emake || die #make check || die } |