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 C48AD1382C5 for ; Fri, 13 Apr 2018 19:31:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1680CE089A; Fri, 13 Apr 2018 19:31: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 E8708E089A for ; Fri, 13 Apr 2018 19:31:36 +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 710AF335C76 for ; Fri, 13 Apr 2018 19:31:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C2BC2230 for ; Fri, 13 Apr 2018 19:31:33 +0000 (UTC) From: "Denis Dupeyron" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Denis Dupeyron" Message-ID: <1523647888.5df82772ff26ea98d5eec020b43b1fd021b4976c.calchan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-modemlights-plugin/ X-VCS-Repository: repo/gentoo X-VCS-Files: xfce-extra/xfce4-modemlights-plugin/xfce4-modemlights-plugin-0.1.3.99-r1.ebuild X-VCS-Directories: xfce-extra/xfce4-modemlights-plugin/ X-VCS-Committer: calchan X-VCS-Committer-Name: Denis Dupeyron X-VCS-Revision: 5df82772ff26ea98d5eec020b43b1fd021b4976c X-VCS-Branch: master Date: Fri, 13 Apr 2018 19:31: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-Archives-Salt: 669b600c-c17f-4e59-be14-79bef603da81 X-Archives-Hash: ba2c9d136e1bd106e90d9ed7a4496daa commit: 5df82772ff26ea98d5eec020b43b1fd021b4976c Author: Denis Dupeyron gentoo org> AuthorDate: Fri Apr 13 19:29:32 2018 +0000 Commit: Denis Dupeyron gentoo org> CommitDate: Fri Apr 13 19:31:28 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5df82772 xfce-extra/xfce4-modemlights-plugin: remove obsolete xfconf.eclass, migrate to EAPI6 Package-Manager: Portage-2.3.28, Repoman-2.3.9 .../xfce4-modemlights-plugin-0.1.3.99-r1.ebuild | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/xfce-extra/xfce4-modemlights-plugin/xfce4-modemlights-plugin-0.1.3.99-r1.ebuild b/xfce-extra/xfce4-modemlights-plugin/xfce4-modemlights-plugin-0.1.3.99-r1.ebuild new file mode 100644 index 00000000000..02d23ae0b33 --- /dev/null +++ b/xfce-extra/xfce4-modemlights-plugin/xfce4-modemlights-plugin-0.1.3.99-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit multilib gnome2-utils + +DESCRIPTION="A panel plug-in intended to simplify establishing a ppp connection" +HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-modemlights-plugin" +SRC_URI="mirror://xfce/src/panel-plugins/${PN}/${PV%.*.*}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=dev-libs/glib-2 + x11-libs/gtk+:2 + >=xfce-base/libxfce4util-4.8 + >=xfce-base/libxfcegui4-4.8 + >=xfce-base/xfce4-panel-4.8" +DEPEND="${RDEPEND} + dev-util/intltool + virtual/pkgconfig" + +src_configure() { + econf --libexecdir="${EPREFIX}"/usr/$(get_libdir) +} + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +}