Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/gcal/
Date: Fri, 26 Jan 2018 21:26:42
Message-Id: 1517001995.20c062d056d0d5a9fda5508648aa18e24f22f368.monsieurp@gentoo
1 commit: 20c062d056d0d5a9fda5508648aa18e24f22f368
2 Author: Alberto Sartori <alberto.sartori86 <AT> gmail <DOT> com>
3 AuthorDate: Sat Dec 23 22:22:47 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 26 21:26:35 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20c062d0
7
8 app-misc/gcal: version bump to 4.1.
9
10 Closes: https://github.com/gentoo/gentoo/pull/6614
11
12 app-misc/gcal/Manifest | 1 +
13 app-misc/gcal/gcal-4.1.ebuild | 33 +++++++++++++++++++++++++++++++++
14 2 files changed, 34 insertions(+)
15
16 diff --git a/app-misc/gcal/Manifest b/app-misc/gcal/Manifest
17 index dc2b4651588..6e5c89893fa 100644
18 --- a/app-misc/gcal/Manifest
19 +++ b/app-misc/gcal/Manifest
20 @@ -1 +1,2 @@
21 DIST gcal-3.6.3.tar.xz 1640172 BLAKE2B 322a3bf34a389ab92daa0262b8b36f99b585c7f76e46e5a921a5e23ced74ae98bf09446e02988c98c29ecadf631b6624cb43e76c8da736a185e52ed34441c334 SHA512 9be7d6e58a55fbb7531f91bd2a6fa51e8d62364636c31d8d65f6ac24415ac2de8af5eaab8496e155c2820b7480ecf926c4395114ff4363deb21bd268dec44963
22 +DIST gcal-4.1.tar.xz 1658948 BLAKE2B 980b509923d7e3afbd391f1129a77e647f61e09d68aec29490bc16041260e56082097732f015260515036a4560bee18391c8f6aaa5eaff69740f18a37a44d8f2 SHA512 24b9ee87c3dbfd3231b2017fd0a3030cc5b7c7fde032ea1fcf816b0f10dc40d808c646aa8ece86651da4f3928fecf35f84f4c68c0bfdb8cf63e3ecc189d2074d
23
24 diff --git a/app-misc/gcal/gcal-4.1.ebuild b/app-misc/gcal/gcal-4.1.ebuild
25 new file mode 100644
26 index 00000000000..da50405b570
27 --- /dev/null
28 +++ b/app-misc/gcal/gcal-4.1.ebuild
29 @@ -0,0 +1,33 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +inherit eutils flag-o-matic toolchain-funcs
36 +
37 +DESCRIPTION="The GNU Calendar - a replacement for cal"
38 +HOMEPAGE="https://www.gnu.org/software/gcal/"
39 +SRC_URI="mirror://gnu/gcal/${P}.tar.xz"
40 +
41 +LICENSE="GPL-3"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
44 +IUSE="ncurses nls unicode"
45 +
46 +DEPEND="
47 + app-arch/xz-utils
48 + nls? ( >=sys-devel/gettext-0.17 )"
49 +
50 +RDEPEND="nls? ( virtual/libintl )"
51 +
52 +DOCS=( BUGS LIMITATIONS NEWS README THANKS TODO )
53 +
54 +src_configure() {
55 + tc-export CC
56 + append-cppflags -D_GNU_SOURCE
57 + econf \
58 + --disable-rpath \
59 + $(use_enable nls) \
60 + $(use_enable ncurses term) \
61 + $(use_enable unicode)
62 +}