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 3600C138334 for ; Fri, 16 Aug 2019 22:19:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 47A84E087E; Fri, 16 Aug 2019 22:19:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 25956E087E for ; Fri, 16 Aug 2019 22:19:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 02B4A349C49 for ; Fri, 16 Aug 2019 22:19:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7F2FC762 for ; Fri, 16 Aug 2019 22:19:33 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1565993960.90c3e358250f3c76c625fd120432db1caa070479.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libical/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libical/libical-3.0.5.ebuild dev-libs/libical/metadata.xml X-VCS-Directories: dev-libs/libical/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 90c3e358250f3c76c625fd120432db1caa070479 X-VCS-Branch: master Date: Fri, 16 Aug 2019 22:19:33 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a50bf5a5-cc80-4325-8a0a-bf05b3994801 X-Archives-Hash: 8b88ad3476dca72b3aa08cfba0cfac8a commit: 90c3e358250f3c76c625fd120432db1caa070479 Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Aug 16 22:18:45 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Aug 16 22:19:20 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90c3e358 dev-libs/libical: Add USE glib Bug: https://bugs.gentoo.org/689434 Package-Manager: Portage-2.3.71, Repoman-2.3.17 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/libical/libical-3.0.5.ebuild | 13 ++++++------- dev-libs/libical/metadata.xml | 3 +++ 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/dev-libs/libical/libical-3.0.5.ebuild b/dev-libs/libical/libical-3.0.5.ebuild index c15ce614721..8b595cd6c71 100644 --- a/dev-libs/libical/libical-3.0.5.ebuild +++ b/dev-libs/libical/libical-3.0.5.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.gz" LICENSE="|| ( MPL-2.0 LGPL-2.1 )" SLOT="0/3" KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" -IUSE="berkdb doc examples static-libs test" +IUSE="berkdb doc examples glib static-libs test" BDEPEND=" dev-lang/perl @@ -22,14 +22,14 @@ BDEPEND=" test? ( ${PYTHON_DEPS} ) " # TODO: disabled until useful -# glib? ( -# dev-libs/glib:2 -# dev-libs/libxml2:2 -# ) # introspection? ( dev-libs/gobject-introspection:= ) DEPEND=" dev-libs/icu:= berkdb? ( sys-libs/db:= ) + glib? ( + dev-libs/glib:2 + dev-libs/libxml2:2 + ) " RDEPEND="${DEPEND} sys-libs/timezone-data @@ -57,7 +57,7 @@ src_prepare() { src_configure() { local mycmakeargs=( - -DICAL_GLIB=OFF + -DICAL_GLIB=$(usex glib) -DICAL_GLIB_VAPI=OFF -DGOBJECT_INTROSPECTION=OFF $(cmake-utils_use_find_package berkdb BDB) @@ -65,7 +65,6 @@ src_configure() { -DSHARED_ONLY=$(usex !static-libs) ) # TODO: disabled until useful -# -DICAL_GLIB=$(usex glib) # -DGOBJECT_INTROSPECTION=$(usex introspection) cmake-utils_src_configure } diff --git a/dev-libs/libical/metadata.xml b/dev-libs/libical/metadata.xml index 002b34042a9..fcf112716f7 100644 --- a/dev-libs/libical/metadata.xml +++ b/dev-libs/libical/metadata.xml @@ -8,4 +8,7 @@ libical/libical + + Enable dev-libs/glib interface support +