Gentoo Archives: gentoo-commits

From: Ettore Di Giacinto <mudler@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gentoo-mate:master commit in: mate-base/mate/
Date: Tue, 29 Nov 2016 19:49:32
Message-Id: 1480445088.2f5df461db4ed372359934438b4056e4245e0a3b.mudler@gentoo
1 commit: 2f5df461db4ed372359934438b4056e4245e0a3b
2 Author: Ettore Di Giacinto <mudler <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 28 17:29:14 2016 +0000
4 Commit: Ettore Di Giacinto <mudler <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 29 18:44:48 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=2f5df461
7
8 mate-base/mate: version bump to 1.16
9
10 Package-Manager: portage-2.3.1
11
12 mate-base/mate/mate-1.16.ebuild | 85 +++++++++++++++++++++++++++++++++++++++++
13 1 file changed, 85 insertions(+)
14
15 diff --git a/mate-base/mate/mate-1.16.ebuild b/mate-base/mate/mate-1.16.ebuild
16 new file mode 100644
17 index 0000000..5781c83
18 --- /dev/null
19 +++ b/mate-base/mate/mate-1.16.ebuild
20 @@ -0,0 +1,85 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +
27 +if [[ ${PV} == 9999 ]]; then
28 + MATE_BRANCH=9999
29 + MATE_THEMES_V=9999
30 +else
31 + inherit versionator
32 + MATE_BRANCH="$(get_version_component_range 1-2)"
33 + MATE_THEMES_V=3
34 + KEYWORDS="~amd64 ~arm ~x86"
35 +fi
36 +
37 +SRC_URI=""
38 +DESCRIPTION="Meta ebuild for MATE, a traditional desktop environment"
39 +HOMEPAGE="http://mate-desktop.org"
40 +
41 +LICENSE="metapackage"
42 +
43 +SLOT="0"
44 +IUSE="+base -bluetooth gtk3 help +notification +themes +extras"
45 +
46 +S="${WORKDIR}"
47 +
48 +RDEPEND="
49 + =mate-base/mate-desktop-${MATE_BRANCH}*:0[gtk3(-)?]
50 + =mate-base/mate-menus-${MATE_BRANCH}*:0
51 + =mate-base/mate-panel-${MATE_BRANCH}*:0[gtk3(-)?]
52 + =mate-base/mate-session-manager-${MATE_BRANCH}*:0
53 + =mate-base/mate-settings-daemon-${MATE_BRANCH}*:0[gtk3(-)?]
54 + =x11-wm/marco-${MATE_BRANCH}*:0[gtk3(-)?]
55 + base? (
56 + =mate-base/caja-${MATE_BRANCH}*:0[gtk3(-)?]
57 + =mate-base/mate-applets-meta-${MATE_BRANCH}*:0[gtk3(-)?]
58 + =mate-base/mate-control-center-${MATE_BRANCH}*:0[gtk3(-)?]
59 + =mate-extra/mate-media-${MATE_BRANCH}*:0[gtk3(-)?]
60 + =x11-misc/mozo-${MATE_BRANCH}*:0
61 + =x11-terms/mate-terminal-${MATE_BRANCH}*:0
62 + )
63 + bluetooth? ( net-wireless/blueman:0 )
64 + themes? (
65 + =x11-themes/mate-backgrounds-${MATE_BRANCH}*:0
66 + =x11-themes/mate-icon-theme-${MATE_BRANCH}*:0
67 + >=x11-themes/mate-themes-meta-${MATE_THEMES_V}:0
68 + )
69 + extras? (
70 + =app-arch/engrampa-${MATE_BRANCH}*:0
71 + =app-editors/pluma-${MATE_BRANCH}*:0[gtk3(-)?]
72 + =app-text/atril-${MATE_BRANCH}*:0[gtk3(-)?]
73 + gnome-extra/gnome-calculator:0
74 + =mate-extra/caja-extensions-${MATE_BRANCH}*:0[gtk3(-)?]
75 + =mate-extra/mate-netbook-${MATE_BRANCH}*:0[gtk3(-)?]
76 + =mate-extra/mate-power-manager-${MATE_BRANCH}*:0[gtk3(-)?]
77 + =mate-extra/mate-screensaver-${MATE_BRANCH}*:0[gtk3(-)?]
78 + =mate-extra/mate-system-monitor-${MATE_BRANCH}*:0
79 + =mate-extra/mate-utils-${MATE_BRANCH}*:0[gtk3(-)?]
80 + =media-gfx/eom-${MATE_BRANCH}*:0[gtk3(-)?]
81 + sys-apps/gnome-disk-utility:0
82 + )
83 + help? (
84 + gnome-extra/yelp:0
85 + =mate-extra/mate-user-guide-${MATE_BRANCH}*:0
86 + )
87 +"
88 +
89 +PDEPEND="
90 + notification? ( =x11-misc/mate-notification-daemon-${MATE_BRANCH}*:0 )
91 + virtual/notification-daemon:0"
92 +
93 +pkg_postinst() {
94 + elog "For installation, usage and troubleshooting details regarding MATE;"
95 + elog "read more about it at Gentoo Wiki: https://wiki.gentoo.org/wiki/MATE"
96 + elog ""
97 + if ! has_version x11-misc/mate-notification-daemon; then
98 + elog "If you experience any issues with notifications, please try using"
99 + elog "x11-misc/mate-notification-daemon instead your currently installed daemon"
100 + elog ""
101 + fi
102 + elog "Some packages that are not included in this meta-package but may be of interest:"
103 + elog " mate-extra/caja-dropbox"
104 + elog " mate-extra/mate-user-share"
105 +}