Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/cbatticon/
Date: Fri, 30 Dec 2016 17:03:08
Message-Id: 1483108465.eb7409afefccb5c1b37dc1f2081f9ab8e93e9373.jer@gentoo
1 commit: eb7409afefccb5c1b37dc1f2081f9ab8e93e9373
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 30 14:34:25 2016 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 30 14:34:25 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb7409af
7
8 x11-misc/cbatticon: Version bump.
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 x11-misc/cbatticon/Manifest | 1 +
13 x11-misc/cbatticon/cbatticon-1.6.5.ebuild | 50 +++++++++++++++++++++++++++++++
14 2 files changed, 51 insertions(+)
15
16 diff --git a/x11-misc/cbatticon/Manifest b/x11-misc/cbatticon/Manifest
17 index 4668327..08621c7 100644
18 --- a/x11-misc/cbatticon/Manifest
19 +++ b/x11-misc/cbatticon/Manifest
20 @@ -1,3 +1,4 @@
21 DIST cbatticon-1.3.2.tar.gz 12749 SHA256 40f5b80e9a405ce79ecca74bcd72778372729b2add63a9c4e3386908cfb8ad4c SHA512 492b0e9e16b7a14a8bf184d213af7c7366a2cd8bfe9fe91e935e95a72e8f5213029d8b32512961f142da9db3832dd5fa98f291223b0d473a133132614ed926aa WHIRLPOOL 78cc260cc9060931cea9b9fa87e0be81b33f74641cd09a4592911612ae78e3c0ee80c4e2f045c186f030f389946264e1468451068c4fe319d9247d30f227d9b5
22 DIST cbatticon-1.6.3.tar.gz 23327 SHA256 39fcb49815c5fc54a39f45ca8c0618fda6b6aa73e9301589a22668fcfd1242ba SHA512 6eb0aee5e189dac05835d3e94bfe8cffc3b036e4b0ed65ddefbe0d3c4641d250209b3f875dd196bd3887e176ee8229027a9ef7aa5af865ddce918cf746bc2586 WHIRLPOOL cf6f7c3e627f70e100d9cd4bff836b2a86126ca6e8cb12208e4edcc139692a07a8adb1f7499ed662cacf38d9982dc05a7b882cd6e05097ae0080e529436f1ec5
23 DIST cbatticon-1.6.4.tar.gz 27458 SHA256 1d773d678fe7160d1af7ba7cbfe66ccbabefa10e2bf387334a341f4c94de6e08 SHA512 049f0aee12718995daa6753a19a94e3b3837d2991b4ac230aa4be1e34e487de2ac5d461e2fb5d60b6e39e7a8ae739e2216051dba8edf78293294c99b81107073 WHIRLPOOL 5676e75ab1215d650d10bb17ea318da14f8974833007f4847960660315907c8adef445c78321a1ab6570001e012c478ddc3b1c4310d1c569567b6c9071a77dc9
24 +DIST cbatticon-1.6.5.tar.gz 27951 SHA256 bbc70d77b2fd5c14a65b3f1d14d064b0b8c9966b521b3e295fa7d487950bff77 SHA512 5e1648cf3b31fe42aefd0a5e79c4e5dc22c3ce4b6f594f0933229494ca6f2e28e44a7e078ef839de1df0b8c1ba494fce8a58866ad70d056799320f4dea32713b WHIRLPOOL f9cdf706f632a01c2bea2353cc7171d3d568aed0964bd2f2159f1c68d18bd5b374b449581d334ff96deceb32c7d1bf9aeb235d66490a83bb60a1901b5fe16492
25
26 diff --git a/x11-misc/cbatticon/cbatticon-1.6.5.ebuild b/x11-misc/cbatticon/cbatticon-1.6.5.ebuild
27 new file mode 100644
28 index 00000000..c3983a8
29 --- /dev/null
30 +++ b/x11-misc/cbatticon/cbatticon-1.6.5.ebuild
31 @@ -0,0 +1,50 @@
32 +# Copyright 1999-2016 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=6
37 +inherit eutils toolchain-funcs
38 +
39 +DESCRIPTION="A lightweight and fast battery icon that sits in your system tray"
40 +HOMEPAGE="https://github.com/ColinJones/cbatticon"
41 +SRC_URI="https://github.com/ColinJones/cbatticon/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="GPL-2"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE="libnotify"
47 +
48 +RDEPEND="
49 + dev-libs/glib:2
50 + x11-libs/gtk+:3
51 + libnotify? ( x11-libs/libnotify )
52 +"
53 +DEPEND="
54 + ${RDEPEND}
55 + virtual/pkgconfig
56 +"
57 +
58 +src_prepare() {
59 + default
60 +
61 + strip-linguas -i .
62 +}
63 +
64 +src_compile() {
65 + tc-export CC
66 + emake \
67 + $(usex libnotify WITH_NOTIFY=1 WITH_NOTIFY=0) \
68 + V=1 \
69 + VERSION="${PF}" \
70 + WITH_GTK3=1
71 +}
72 +
73 +src_install() {
74 + emake \
75 + DESTDIR="${D}" \
76 + LANGUAGES="${LINGUAS}" \
77 + V=1 VERSION="${PF}" \
78 + install
79 +
80 + dodoc Changelog
81 +}