From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5EAB113832E for ; Mon, 25 Jul 2016 21:22:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8366EE08E9; Mon, 25 Jul 2016 21:22:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 307D1E08E9 for ; Mon, 25 Jul 2016 21:22:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5B6E2340C15 for ; Mon, 25 Jul 2016 21:22:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2E5F17CE for ; Mon, 25 Jul 2016 21:22:21 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1469481732.7ce40ea71f5a25bbc1283b15d68dd1e0e620cd27.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/taglib/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/taglib/metadata.xml media-libs/taglib/taglib-1.11-r1.ebuild media-libs/taglib/taglib-1.11.ebuild X-VCS-Directories: media-libs/taglib/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 7ce40ea71f5a25bbc1283b15d68dd1e0e620cd27 X-VCS-Branch: master Date: Mon, 25 Jul 2016 21:22:21 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a94482d2-20b1-4410-ade8-172149e386b1 X-Archives-Hash: f7b2ebf06ffd8b8cdae7b322c33a4bba commit: 7ce40ea71f5a25bbc1283b15d68dd1e0e620cd27 Author: Michael Palimaka gentoo org> AuthorDate: Mon Jul 25 21:21:59 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Mon Jul 25 21:22:12 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ce40ea7 media-libs/taglib: introduce boost USE flag Boost may optionally be used instead of GCC built-ins. Although only used at build time for header-only functions, an ABI-specific version of boost is required as the build system calls target_link_libraries. Package-Manager: portage-2.3.0 media-libs/taglib/metadata.xml | 1 + media-libs/taglib/{taglib-1.11.ebuild => taglib-1.11-r1.ebuild} | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/media-libs/taglib/metadata.xml b/media-libs/taglib/metadata.xml index ab8bb70..6322822 100644 --- a/media-libs/taglib/metadata.xml +++ b/media-libs/taglib/metadata.xml @@ -7,6 +7,7 @@ Provide support for Microsoft's 'advanced systems format' media container. + Use dev-libs/boost instead of GCC built-ins taglib/taglib diff --git a/media-libs/taglib/taglib-1.11.ebuild b/media-libs/taglib/taglib-1.11-r1.ebuild similarity index 91% rename from media-libs/taglib/taglib-1.11.ebuild rename to media-libs/taglib/taglib-1.11-r1.ebuild index 5ec14d4..7a6b22f 100644 --- a/media-libs/taglib/taglib-1.11.ebuild +++ b/media-libs/taglib/taglib-1.11-r1.ebuild @@ -13,11 +13,12 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="LGPL-2.1 MPL-1.1" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" SLOT="0" -IUSE="debug examples test" +IUSE="boost debug examples test" RDEPEND=">=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]" DEPEND="${RDEPEND} >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] + boost? ( dev-libs/boost[${MULTILIB_USEDEP}] ) test? ( >=dev-util/cppunit-1.13.2[${MULTILIB_USEDEP}] ) " @@ -42,6 +43,7 @@ src_prepare() { multilib_src_configure() { local mycmakeargs=( $(multilib_is_native_abi && echo -DBUILD_EXAMPLES=$(usex examples)) + $(cmake-utils_use_find_package boost Boost) -DBUILD_SHARED_LIBS=ON -DBUILD_TESTS=$(usex test) )