Gentoo Archives: gentoo-commits

From: Amy Liffey <amynka@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/tint2/
Date: Fri, 29 Oct 2021 18:40:22
Message-Id: 1635532794.4a91ebfb40bc97c92637cfde4f7a11bb04bebd72.amynka@gentoo
1 commit: 4a91ebfb40bc97c92637cfde4f7a11bb04bebd72
2 Author: Amy Liffey <amynka <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 29 18:38:49 2021 +0000
4 Commit: Amy Liffey <amynka <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 29 18:39:54 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a91ebfb
7
8 x11-misc/tint2: version bump 17.0.1
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Amy Liffey <amynka <AT> gentoo.org>
12
13 x11-misc/tint2/Manifest | 1 +
14 x11-misc/tint2/tint2-17.0.1.ebuild | 48 ++++++++++++++++++++++++++++++++++++++
15 2 files changed, 49 insertions(+)
16
17 diff --git a/x11-misc/tint2/Manifest b/x11-misc/tint2/Manifest
18 index ecc77b3f47b..793379334e4 100644
19 --- a/x11-misc/tint2/Manifest
20 +++ b/x11-misc/tint2/Manifest
21 @@ -1 +1,2 @@
22 DIST tint2-v16.7.tar.gz 551197 BLAKE2B ef1c5b3dea255e12f6dcea80a29f016e32e48f729f4be3e1fd7421c6fbdbbacde70f42f3052547dca8421b8343d4b41fbf2ea52b07aa4471974f9f0cc6eea7a7 SHA512 a9bb0b55536e09f70b1d14a5748635f5c5ec1b7b22517453a963b240ab593aae43c56e5cbc7b79d5f19103f0e13200faceb2d25afd66c3d941580424ae6d9d31
23 +DIST tint2-v17.0.1.tar.gz 553523 BLAKE2B 112186c95561af22d67707a0d4d17462c3d32bd4c97165066a1c491c628359eabba3563b271a46e980dd65abaf42a4b59dc36c42ee3cdb2b6d6cde616e0acfe5 SHA512 cc887d1d9eb8b69135ec6f1e591c38b374605f36fa7609fc580de6a81f33ec98c74af0ba2ab326f1ae25d52b75d2056a48cc2a76d78da1fd27dfdf7818fe429b
24
25 diff --git a/x11-misc/tint2/tint2-17.0.1.ebuild b/x11-misc/tint2/tint2-17.0.1.ebuild
26 new file mode 100644
27 index 00000000000..7b5eec7cee8
28 --- /dev/null
29 +++ b/x11-misc/tint2/tint2-17.0.1.ebuild
30 @@ -0,0 +1,48 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +inherit cmake xdg
37 +
38 +DESCRIPTION="Lightweight panel/taskbar for Linux"
39 +HOMEPAGE="https://gitlab.com/o9000/tint2"
40 +SRC_URI="https://gitlab.com/o9000/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz"
41 +S=${WORKDIR}/${PN}-v${PV}
42 +
43 +LICENSE="GPL-2"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm64 ~ppc ~x86"
46 +IUSE="battery startup-notification svg tint2conf"
47 +
48 +DEPEND="
49 + dev-libs/glib:2
50 + svg? ( gnome-base/librsvg:2 )
51 + >=media-libs/imlib2-1.4.2[X,png]
52 + x11-libs/cairo[X]
53 + x11-libs/pango
54 + tint2conf? ( x11-libs/gtk+:2 )
55 + x11-libs/libX11
56 + x11-libs/libXcomposite
57 + x11-libs/libXdamage
58 + x11-libs/libXinerama
59 + >=x11-libs/libXrandr-1.3
60 + x11-libs/libXrender
61 + startup-notification? ( x11-libs/startup-notification )
62 +"
63 +RDEPEND="${DEPEND}"
64 +
65 +src_prepare() {
66 + cmake_src_prepare
67 +}
68 +
69 +src_configure() {
70 + local mycmakeargs=(
71 + -Ddocdir="${EPREFIX}/usr/share/doc/${PF}"
72 + -DENABLE_BATTERY="$(usex battery)"
73 + -DENABLE_TINT2CONF="$(usex tint2conf)"
74 + -DENABLE_SN="$(usex startup-notification)"
75 + -DENABLE_RSVG="$(usex svg)"
76 + )
77 + cmake_src_configure
78 +}