blob: 932c5e08d6c4ab9baa4bd99d00e996de4ec9e67b [file] [log] [blame]
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtest/gtest-1.6.0-r1.ebuild,v 1.13 2013/02/28 15:47:14 jer Exp $
EAPI="4"
PYTHON_DEPEND="2"
inherit eutils python autotools
DESCRIPTION="Google C++ Testing Framework"
HOMEPAGE="http://code.google.com/p/googletest/"
SRC_URI="http://googletest.googlecode.com/files/${P}.zip"
LICENSE="BSD"
SLOT="0"
KEYWORDS="*"
IUSE="examples static-libs"
DEPEND="app-arch/unzip"
RDEPEND=""
pkg_setup() {
python_pkg_setup
python_set_active_version 2
}
src_prepare() {
sed -i -e "s|/tmp|${T}|g" test/gtest-filepath_test.cc || die
sed -i -r \
-e '/^install-(data|exec)-local:/s|^.*$|&\ndisabled-&|' \
Makefile.am || die
epatch "${FILESDIR}"/configure-fix-pthread-linking.patch || die
eautoreconf
python_convert_shebangs -r 2 .
}
src_configure() {
econf \
$(use_enable static-libs static)
}
src_test() {
# explicitly use parallel make
emake check || die
}
src_install() {
default
dobin scripts/gtest-config
if ! use static-libs ; then
rm "${ED}"/usr/lib*/*.la || die
fi
if use examples ; then
insinto /usr/share/doc/${PF}/examples
doins samples/*.{cc,h}
fi
}