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 0F2D6138334 for ; Sat, 10 Nov 2018 22:43:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F2A2CE0AA5; Sat, 10 Nov 2018 22:43:10 +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 CB719E0A87 for ; Sat, 10 Nov 2018 22:43:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 78604335CDA for ; Sat, 10 Nov 2018 22:43:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B0095462 for ; Sat, 10 Nov 2018 22:43:06 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1541889758.eb54fb089547f48334299d2ffb55d806a8246204.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/purple-hangouts/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/purple-hangouts/purple-hangouts-9999.ebuild X-VCS-Directories: x11-plugins/purple-hangouts/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: eb54fb089547f48334299d2ffb55d806a8246204 X-VCS-Branch: master Date: Sat, 10 Nov 2018 22:43:06 +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: 9d95f5b4-e604-42de-96ec-27801cba5afa X-Archives-Hash: 63a5f3aecde2eb82079f6d37699b146e commit: eb54fb089547f48334299d2ffb55d806a8246204 Author: Stefan Strogin gmail com> AuthorDate: Thu Nov 1 20:52:55 2018 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sat Nov 10 22:42:38 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb54fb08 x11-plugins/purple-hangouts: add live ebuild. Package-Manager: Portage-2.3.51, Repoman-2.3.11 Signed-off-by: Stefan Strogin gmail.com> Signed-off-by: Patrice Clement gentoo.org> .../purple-hangouts/purple-hangouts-9999.ebuild | 45 ++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/x11-plugins/purple-hangouts/purple-hangouts-9999.ebuild b/x11-plugins/purple-hangouts/purple-hangouts-9999.ebuild new file mode 100644 index 00000000000..2a8db6f38b1 --- /dev/null +++ b/x11-plugins/purple-hangouts/purple-hangouts-9999.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs mercurial + +DESCRIPTION="Hangouts Plugin for libpurple" +HOMEPAGE="https://bitbucket.org/EionRobb/purple-hangouts" +EHG_REPO_URI="https://bitbucket.org/EionRobb/purple-hangouts" + +LICENSE="GPL-3+" +SLOT="0" + +RDEPEND=" + dev-libs/glib:2 + dev-libs/json-glib + dev-libs/protobuf-c:= + net-im/pidgin + sys-libs/zlib" + +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_prepare() { + default + + # Does not respect CFLAGS + sed -i Makefile -e 's/-g -ggdb//g' || die +} + +src_compile() { + emake \ + CC="$(tc-getCC)" \ + PKG_CONFIG="$(tc-getPKG_CONFIG)" +} + +src_install() { + emake \ + PKG_CONFIG="$(tc-getPKG_CONFIG)" \ + DESTDIR="${ED}" \ + install + + einstalldocs +}