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-office/calcurse/
Date: Sun, 26 Aug 2018 14:49:15
Message-Id: 1535294942.f0d53ac90bf31f73069fa3bb81947ee1c5c81df2.monsieurp@gentoo
1 commit: f0d53ac90bf31f73069fa3bb81947ee1c5c81df2
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 26 14:48:40 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 26 14:49:02 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0d53ac9
7
8 app-office/calcurse: revision bump.
9
10 ... so as to make Soap happy.
11
12 Package-Manager: Portage-2.3.40, Repoman-2.3.9
13
14 app-office/calcurse/calcurse-4.3.0-r1.ebuild | 45 ++++++++++++++++++++++++++++
15 1 file changed, 45 insertions(+)
16
17 diff --git a/app-office/calcurse/calcurse-4.3.0-r1.ebuild b/app-office/calcurse/calcurse-4.3.0-r1.ebuild
18 new file mode 100644
19 index 00000000000..451271ee693
20 --- /dev/null
21 +++ b/app-office/calcurse/calcurse-4.3.0-r1.ebuild
22 @@ -0,0 +1,45 @@
23 +# Copyright 1999-2018 Gentoo Foundation
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=6
27 +
28 +inherit autotools eutils multilib-minimal
29 +
30 +DESCRIPTION="a text-based calendar and scheduling application"
31 +HOMEPAGE="https://calcurse.org/"
32 +SRC_URI="https://calcurse.org/files/${P}.tar.gz"
33 +
34 +LICENSE="BSD-2"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~x86 ~ppc ~ppc64"
37 +
38 +RDEPEND="
39 + dev-python/httplib2
40 + sys-libs/ncurses:0="
41 +
42 +DEPEND="
43 + ${RDEPEND}"
44 +
45 +PATCHES=(
46 + "${FILESDIR}"/${PN}-4.2.1-tinfo.patch
47 +)
48 +
49 +# Most tests fail.
50 +RESTRICT="test"
51 +
52 +src_prepare() {
53 + default
54 + eautoreconf
55 +}
56 +
57 +multilib_src_configure() {
58 + ECONF_SOURCE="${S}" econf
59 +}
60 +
61 +src_compile() {
62 + multilib-minimal_src_compile
63 +}
64 +
65 +src_install() {
66 + multilib-minimal_src_install
67 +}