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 D0E26138239 for ; Sat, 21 Jul 2018 21:59:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D8F2CE07FE; Sat, 21 Jul 2018 21:59:37 +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 A088FE07FE for ; Sat, 21 Jul 2018 21:59:37 +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 5B9D1335D22 for ; Sat, 21 Jul 2018 21:59:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 93482375 for ; Sat, 21 Jul 2018 21:59:32 +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: <1532210226.59856c7f8b7def9f072e696f91af4f84605247da.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/enlightenment-extra/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/enlightenment-extra/Manifest x11-misc/enlightenment-extra/enlightenment-extra-0.0.1.ebuild x11-misc/enlightenment-extra/metadata.xml X-VCS-Directories: x11-misc/enlightenment-extra/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 59856c7f8b7def9f072e696f91af4f84605247da X-VCS-Branch: master Date: Sat, 21 Jul 2018 21:59:32 +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: a3ee55ea-c525-4ba4-ad83-b09b43dd1e0b X-Archives-Hash: c36147f3cbbe0f9162ee8ce2adef32ac commit: 59856c7f8b7def9f072e696f91af4f84605247da Author: Joonas Niilola gmail com> AuthorDate: Wed Jul 18 13:12:15 2018 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sat Jul 21 21:57:06 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59856c7f x11-misc/enlightenment-extra: new package. Package-Manager: Portage[mgorny]-2.3.43.2 Closes: https://github.com/gentoo/gentoo/pull/9272 x11-misc/enlightenment-extra/Manifest | 1 + .../enlightenment-extra-0.0.1.ebuild | 44 ++++++++++++++++++++++ x11-misc/enlightenment-extra/metadata.xml | 12 ++++++ 3 files changed, 57 insertions(+) diff --git a/x11-misc/enlightenment-extra/Manifest b/x11-misc/enlightenment-extra/Manifest new file mode 100644 index 00000000000..540300f1869 --- /dev/null +++ b/x11-misc/enlightenment-extra/Manifest @@ -0,0 +1 @@ +DIST enlightenment-extra-0.0.1.tar.xz 374872 BLAKE2B f067ae5115033d5b87783584327ecd5e08b3b38998d2f9e20b70b135b7ec25106fd92abf5314c2af580cfbcc66ecd65ca7e434429708e1abe8d02dd4b0e2ba98 SHA512 40cf1a19c48cb6f14fd7fbed3223eabdbc69260834480e4463495af36fbfa1d00b7bfe3777998a17e5081b14e66080dc3013a6d3a6c610a175a08c99b4e5529a diff --git a/x11-misc/enlightenment-extra/enlightenment-extra-0.0.1.ebuild b/x11-misc/enlightenment-extra/enlightenment-extra-0.0.1.ebuild new file mode 100644 index 00000000000..a7d39571c7d --- /dev/null +++ b/x11-misc/enlightenment-extra/enlightenment-extra-0.0.1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_PN="${PN/enlightenment-/}" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="An app for downloading themes and add-ons to Enlightenment WM" +HOMEPAGE="https://extra.enlightenment.org" +SRC_URI="https://download.enlightenment.org/rel/apps/${MY_PN}/${MY_P}.tar.xz -> ${P}.tar.xz" + +LICENSE="WTFPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="nls" + +RDEPEND=">=dev-libs/efl-1.18[X]" +DEPEND=" + ${RDEPEND} + nls? ( sys-devel/gettext ) +" + +S="${WORKDIR}"/"${MY_P}" + +src_prepare() { + default + + # Fix a QA issue, https://phab.enlightenment.org/T7167 + sed -i '/Version=/d' data/desktop/extra.desktop* || die +} + +src_configure() { + local myconf=( + $(use_enable nls) + ) + + econf "${myconf[@]}" +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} diff --git a/x11-misc/enlightenment-extra/metadata.xml b/x11-misc/enlightenment-extra/metadata.xml new file mode 100644 index 00000000000..ba2dca1a6dd --- /dev/null +++ b/x11-misc/enlightenment-extra/metadata.xml @@ -0,0 +1,12 @@ + + + + + juippis@gmail.com + + + proxy-maint@gentoo.org + Proxy Maintainers + + +