From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1056881-garchives=archives.gentoo.org@lists.gentoo.org> 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 59DFA138334 for <garchives@archives.gentoo.org>; Mon, 12 Nov 2018 01:56:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1CD39E09AE; Mon, 12 Nov 2018 01:56:38 +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 E33F0E09AE for <gentoo-commits@lists.gentoo.org>; Mon, 12 Nov 2018 01:56:37 +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 A52A7335C38 for <gentoo-commits@lists.gentoo.org>; Mon, 12 Nov 2018 01:56:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E59C13CF for <gentoo-commits@lists.gentoo.org>; Mon, 12 Nov 2018 01:56:33 +0000 (UTC) From: "Yixun Lan" <dlan@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yixun Lan" <dlan@gentoo.org> Message-ID: <1541987766.9d4c87d33fd9ddb918e0417d85016df08656e73f.dlan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/megatools/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/megatools/megatools-1.10.2-r1.ebuild X-VCS-Directories: net-misc/megatools/ X-VCS-Committer: dlan X-VCS-Committer-Name: Yixun Lan X-VCS-Revision: 9d4c87d33fd9ddb918e0417d85016df08656e73f X-VCS-Branch: master Date: Mon, 12 Nov 2018 01:56:33 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c49f9bd0-439f-417a-afee-65c6a6a21f28 X-Archives-Hash: 4845591b55ccdc02b33588556bb3d1a7 commit: 9d4c87d33fd9ddb918e0417d85016df08656e73f Author: Yixun Lan <dlan <AT> gentoo <DOT> org> AuthorDate: Mon Nov 12 01:51:07 2018 +0000 Commit: Yixun Lan <dlan <AT> gentoo <DOT> org> CommitDate: Mon Nov 12 01:56:06 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d4c87d3 net-misc/megatools: fix build warning fix unrecognized configure options issue, bump EAPI=7 Closes: https://bugs.gentoo.org/668698 Package-Manager: Portage-2.3.51, Repoman-2.3.12 Signed-off-by: Yixun Lan <dlan <AT> gentoo.org> net-misc/megatools/megatools-1.10.2-r1.ebuild | 39 +++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/net-misc/megatools/megatools-1.10.2-r1.ebuild b/net-misc/megatools/megatools-1.10.2-r1.ebuild new file mode 100644 index 00000000000..1d9b22e67f6 --- /dev/null +++ b/net-misc/megatools/megatools-1.10.2-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools eutils + +DESCRIPTION="Command line tools and C library for accessing Mega cloud storage" +HOMEPAGE="https://github.com/megous/megatools" +SRC_URI="https://github.com/megous/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="" + +COMMON_DEPEND="dev-libs/glib:2 + dev-libs/openssl:0= + net-misc/curl +" +RDEPEND="${COMMON_DEPEND} + net-libs/glib-networking[ssl] +" +DEPEND="${COMMON_DEPEND} + virtual/pkgconfig + app-text/asciidoc" + +src_prepare() { + default + eautoreconf +} + +src_configure() { + default + econf \ + --disable-maintainer-mode \ + --disable-warnings + +}