Gentoo Archives: gentoo-commits

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