Gentoo Archives: gentoo-commits

From: Denis Dupeyron <calchan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/xfmpc/
Date: Thu, 16 Nov 2017 00:33:21
Message-Id: 1510792388.57090858d6ccfa934cd8760d246605f7ea9f2ad9.calchan@gentoo
1 commit: 57090858d6ccfa934cd8760d246605f7ea9f2ad9
2 Author: Denis Dupeyron <calchan <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 16 00:31:37 2017 +0000
4 Commit: Denis Dupeyron <calchan <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 16 00:33:08 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57090858
7
8 Remove obsolete xfconf.eclass and migrate to EAPI6
9
10 Package-Manager: Portage-2.3.14, Repoman-2.3.6
11
12 media-sound/xfmpc/xfmpc-0.2.3-r1.ebuild | 37 +++++++++++++++++++++++++++++++++
13 1 file changed, 37 insertions(+)
14
15 diff --git a/media-sound/xfmpc/xfmpc-0.2.3-r1.ebuild b/media-sound/xfmpc/xfmpc-0.2.3-r1.ebuild
16 new file mode 100644
17 index 00000000000..c19bd37ce40
18 --- /dev/null
19 +++ b/media-sound/xfmpc/xfmpc-0.2.3-r1.ebuild
20 @@ -0,0 +1,37 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +inherit gnome2-utils xdg-utils
26 +
27 +DESCRIPTION="Music Player Daemon (MPD) client for the Xfce desktop environment"
28 +HOMEPAGE="https://goodies.xfce.org/projects/applications/xfmpc"
29 +SRC_URI="mirror://xfce/src/apps/${PN}/0.2/${P}.tar.bz2"
30 +
31 +LICENSE="GPL-2"
32 +SLOT="0"
33 +KEYWORDS="~amd64 ~x86"
34 +IUSE=""
35 +
36 +RDEPEND=">=dev-libs/glib-2.18:2=
37 + >=media-libs/libmpd-0.15:=
38 + >=x11-libs/gtk+-2.16:2=
39 + >=xfce-base/libxfce4ui-4.8:=
40 + >=xfce-base/libxfce4util-4.8:="
41 +DEPEND="${RDEPEND}
42 + dev-util/intltool
43 + virtual/pkgconfig"
44 +
45 +pkg_setup() {
46 + DOCS=( AUTHORS ChangeLog IDEAS NEWS README THANKS )
47 +}
48 +
49 +pkg_postinst() {
50 + xdg_desktop_database_update
51 + gnome2_icon_cache_update
52 +}
53 +
54 +pkg_postrm() {
55 + xdg_desktop_database_update
56 + gnome2_icon_cache_update
57 +}