diff options
author | David Seifert <soap@gentoo.org> | 2017-01-22 19:28:05 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-01-22 19:30:22 +0100 |
commit | 55f695f858b914faf5f7a4c188f6fc18d5b4bb66 (patch) | |
tree | 98b324b9c8baa4b292dcfc66c46d30924ed027ae /dev-cpp/glog/glog-0.3.4-r1.ebuild | |
parent | dev-cpp/libbinio: Remove eutils (diff) | |
download | gentoo-55f695f858b914faf5f7a4c188f6fc18d5b4bb66.tar.gz gentoo-55f695f858b914faf5f7a4c188f6fc18d5b4bb66.tar.bz2 gentoo-55f695f858b914faf5f7a4c188f6fc18d5b4bb66.zip |
dev-cpp/glog: Bump to EAPI 6 and add GCC 5 patch
Gentoo-bug: 555030
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'dev-cpp/glog/glog-0.3.4-r1.ebuild')
-rw-r--r-- | dev-cpp/glog/glog-0.3.4-r1.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/dev-cpp/glog/glog-0.3.4-r1.ebuild b/dev-cpp/glog/glog-0.3.4-r1.ebuild new file mode 100644 index 000000000000..5f87ceac1921 --- /dev/null +++ b/dev-cpp/glog/glog-0.3.4-r1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit autotools multilib-minimal + +DESCRIPTION="Google's C++ logging library" +HOMEPAGE="https://github.com/google/glog" +SRC_URI="https://github.com/google/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="gflags static-libs test unwind" + +RDEPEND=" + gflags? ( >=dev-cpp/gflags-2.0-r1[${MULTILIB_USEDEP}] ) + unwind? ( sys-libs/libunwind[${MULTILIB_USEDEP}] )" +DEPEND="${RDEPEND} + test? ( + >=dev-cpp/gmock-1.7.0-r1[${MULTILIB_USEDEP}] + >=dev-cpp/gtest-1.6.0-r2[${MULTILIB_USEDEP}] + )" + +PATCHES=( + "${FILESDIR}"/${PN}-0.3.2-avoid-inline-asm.patch + "${FILESDIR}"/${PN}-0.3.4-fix-build-system.patch + "${FILESDIR}"/${PN}-0.3.4-fix-gcc5-demangling.patch +) + +src_prepare() { + default + eautoreconf +} + +multilib_src_configure() { + ECONF_SOURCE="${S}" econf \ + $(use_enable gflags) \ + $(use_enable static-libs static) \ + $(use_enable test gtest-config) \ + $(use_enable unwind) +} + +multilib_src_install_all() { + einstalldocs + + # package provides .pc files + find "${D}" -name '*.la' -delete || die +} |