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 22476138334 for ; Sun, 9 Dec 2018 22:58:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EF219E0A5D; Sun, 9 Dec 2018 22:58:03 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 C3BD0E0A5D for ; Sun, 9 Dec 2018 22:58:03 +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 3F8F9335C6F for ; Sun, 9 Dec 2018 22:58:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8DC19A8 for ; Sun, 9 Dec 2018 22:57:58 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: <1544396271.95b11d7da45c4f1e38d66c2d6c87e80e96e0ee4f.eva@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: app-text/libgepub/ X-VCS-Repository: proj/gnome X-VCS-Files: app-text/libgepub/libgepub-0.6.0.ebuild X-VCS-Directories: app-text/libgepub/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: 95b11d7da45c4f1e38d66c2d6c87e80e96e0ee4f X-VCS-Branch: master Date: Sun, 9 Dec 2018 22:57:58 +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: 1ca37100-1407-4e8e-ae49-e290e848d01e X-Archives-Hash: 373a10d65c4937df418567822ef9c824 commit: 95b11d7da45c4f1e38d66c2d6c87e80e96e0ee4f Author: Gilles Dartiguelongue gentoo org> AuthorDate: Sun Dec 9 22:17:00 2018 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Sun Dec 9 22:57:51 2018 +0000 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=95b11d7d app-text/libgepub: 0.5.3 → 0.6.0 Re-order dependencies according to build system. Package-Manager: Portage-2.3.52, Repoman-2.3.12 Manifest-Sign-Key: 0x5A56C8CD0C13248A Signed-off-by: Gilles Dartiguelongue gentoo.org> app-text/libgepub/libgepub-0.6.0.ebuild | 37 +++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/app-text/libgepub/libgepub-0.6.0.ebuild b/app-text/libgepub/libgepub-0.6.0.ebuild new file mode 100644 index 00000000..96ff804b --- /dev/null +++ b/app-text/libgepub/libgepub-0.6.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit gnome.org meson xdg-utils + +DESCRIPTION="GObject based library for handling and rendering epub documents" +HOMEPAGE="https://git.gnome.org/browse/libgepub" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+introspection" + +RDEPEND=" + net-libs/webkit-gtk:4 + net-libs/libsoup:2.4 + dev-libs/glib:2 + dev-libs/libxml2:2 + app-arch/libarchive + x11-libs/gtk+:3 + introspection? ( >=dev-libs/gobject-introspection-1.30:= ) +" +DEPEND="${RDEPEND} + virtual/pkgconfig +" + +src_prepare() { + default + xdg_environment_reset +} + +src_configure() { + meson_src_configure \ + $(meson_use introspection) +}