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 7F2C8138334 for ; Tue, 9 Apr 2019 14:33:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4D60FE09D6; Tue, 9 Apr 2019 14:33: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 232EAE09D5 for ; Tue, 9 Apr 2019 14:33:36 +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 D77D2335D49 for ; Tue, 9 Apr 2019 14:33:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6849D596 for ; Tue, 9 Apr 2019 14:33:33 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1554820404.e0c3af9f0d0fd5bd0a3757b43fec0d14cc5081ee.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-places-plugin/ X-VCS-Repository: repo/gentoo X-VCS-Files: xfce-extra/xfce4-places-plugin/xfce4-places-plugin-1.7.0-r1.ebuild X-VCS-Directories: xfce-extra/xfce4-places-plugin/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e0c3af9f0d0fd5bd0a3757b43fec0d14cc5081ee X-VCS-Branch: master Date: Tue, 9 Apr 2019 14:33: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: af0e6c83-cf5f-4555-82cd-addc8d79e79a X-Archives-Hash: 972c8492e9f13c7894661bbba494cddd commit: e0c3af9f0d0fd5bd0a3757b43fec0d14cc5081ee Author: Michał Górny gentoo org> AuthorDate: Tue Apr 9 14:28:19 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Apr 9 14:33:24 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0c3af9f xfce-extra/xfce4-places-plugin: Bump to EAPI 7, port off xfconf Signed-off-by: Michał Górny gentoo.org> .../xfce4-places-plugin-1.7.0-r1.ebuild | 40 ++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/xfce-extra/xfce4-places-plugin/xfce4-places-plugin-1.7.0-r1.ebuild b/xfce-extra/xfce4-places-plugin/xfce4-places-plugin-1.7.0-r1.ebuild new file mode 100644 index 00000000000..7a8330de60d --- /dev/null +++ b/xfce-extra/xfce4-places-plugin/xfce4-places-plugin-1.7.0-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="A panel plug-in to provide quick access to files, folders and removable media" +HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-places-plugin" +SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" +IUSE="libnotify" + +RDEPEND=">=dev-libs/glib-2.28:2 + >=x11-libs/gtk+-2.20:2 + x11-libs/libX11:= + >=xfce-base/exo-0.6:= + >=xfce-base/libxfce4ui-4.8:= + >=xfce-base/libxfce4util-4.8:= + >=xfce-base/xfce4-panel-4.8:= + >=xfce-base/xfconf-4.8:= + libnotify? ( >=x11-libs/libnotify-0.7:= )" +DEPEND="${RDEPEND} + dev-util/intltool + sys-devel/gettext + virtual/pkgconfig" + +src_configure() { + local myconf=( + $(use_enable libnotify notifications) + ) + + econf "${myconf[@]}" +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +}