diff options
author | 2011-12-14 11:09:14 +0000 | |
---|---|---|
committer | 2011-12-14 11:09:14 +0000 | |
commit | 262a24cd1c8ae3c5f191dfa0dacd363c1d6d221f (patch) | |
tree | 5f6edf1435afe19ac08c2c6634b40ff6df7ebb7a /dev-util | |
parent | Cleanup. All arches stable on newer version. (diff) | |
download | gentoo-2-262a24cd1c8ae3c5f191dfa0dacd363c1d6d221f.tar.gz gentoo-2-262a24cd1c8ae3c5f191dfa0dacd363c1d6d221f.tar.bz2 gentoo-2-262a24cd1c8ae3c5f191dfa0dacd363c1d6d221f.zip |
Say goodbye to .la archive and make static lib optional.
(Portage version: 2.2.0_alpha80/cvs/Linux x86_64)
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/cppunit/ChangeLog | 6 | ||||
-rw-r--r-- | dev-util/cppunit/cppunit-1.12.1-r1.ebuild | 24 |
2 files changed, 21 insertions, 9 deletions
diff --git a/dev-util/cppunit/ChangeLog b/dev-util/cppunit/ChangeLog index 7d9b20125fe5..f52e704e7b70 100644 --- a/dev-util/cppunit/ChangeLog +++ b/dev-util/cppunit/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-util/cppunit # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cppunit/ChangeLog,v 1.54 2011/12/14 10:58:46 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/cppunit/ChangeLog,v 1.55 2011/12/14 11:09:14 scarabeus Exp $ + + 14 Dec 2011; Tomáš Chvátal <scarabeus@gentoo.org> + cppunit-1.12.1-r1.ebuild: + Say goodbye to .la archive and make static lib optional. 14 Dec 2011; Tomáš Chvátal <scarabeus@gentoo.org> cppunit-1.12.1-r1.ebuild: diff --git a/dev-util/cppunit/cppunit-1.12.1-r1.ebuild b/dev-util/cppunit/cppunit-1.12.1-r1.ebuild index 63a973c6fc49..9f2af01840dc 100644 --- a/dev-util/cppunit/cppunit-1.12.1-r1.ebuild +++ b/dev-util/cppunit/cppunit-1.12.1-r1.ebuild @@ -1,8 +1,9 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cppunit/cppunit-1.12.1-r1.ebuild,v 1.2 2011/12/14 10:58:46 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/cppunit/cppunit-1.12.1-r1.ebuild,v 1.3 2011/12/14 11:09:14 scarabeus Exp $ + +EAPI=4 -EAPI=3 inherit autotools eutils DESCRIPTION="C++ port of the famous JUnit framework for unit testing" @@ -12,15 +13,20 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" -IUSE="doc examples" +IUSE="doc examples static-libs" RDEPEND="" DEPEND="${RDEPEND} - doc? ( app-doc/doxygen - media-gfx/graphviz )" + doc? ( + app-doc/doxygen + media-gfx/graphviz + )" + +DOCS=( AUTHORS ChangeLog BUGS NEWS README THANKS TODO doc/FAQ ) src_prepare() { - epatch "${FILESDIR}/${PN}-1.10.2-asneeded.patch" \ + epatch \ + "${FILESDIR}/${PN}-1.10.2-asneeded.patch" \ "${FILESDIR}/${P}-add_missing_include.patch" \ "${FILESDIR}/${P}-warnings.patch" eautoreconf @@ -31,14 +37,16 @@ src_configure() { use alpha && replace-flags "-O?" -O0 econf \ + $(use_enable static-libs static) \ $(use_enable doc doxygen) \ $(use_enable doc dot) \ --htmldir="${EPREFIX}"/usr/share/doc/${PF}/html } src_install() { - emake DESTDIR="${D}" install || die - dodoc AUTHORS ChangeLog BUGS NEWS README THANKS TODO doc/FAQ + default + + find "${ED}" -name '*.la' -exec rm -f {} + if use examples ; then find examples -iname "*.o" -delete |