Gentoo Archives: gentoo-commits

From: "Michael Weber (xmw)" <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-office/teapot: teapot-2.3.0.ebuild ChangeLog
Date: Fri, 31 May 2013 13:49:51
Message-Id: 20130531134947.481E62171D@flycatcher.gentoo.org
1 xmw 13/05/31 13:49:47
2
3 Modified: ChangeLog
4 Added: teapot-2.3.0.ebuild
5 Log:
6 Version bump (bug 451738)
7
8 (Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key 62EEF090)
9
10 Revision Changes Path
11 1.5 app-office/teapot/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/teapot/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/teapot/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/teapot/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-office/teapot/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 15 Dec 2011 22:45:18 -0000 1.4
24 +++ ChangeLog 31 May 2013 13:49:47 -0000 1.5
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-office/teapot
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-office/teapot/ChangeLog,v 1.4 2011/12/15 22:45:18 pacho Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-office/teapot/ChangeLog,v 1.5 2013/05/31 13:49:47 xmw Exp $
31 +
32 +*teapot-2.3.0 (31 May 2013)
33 +
34 + 31 May 2013; Michael Weber <xmw@g.o> +files/teapot-2.3.0-doc-dir.patch,
35 + +files/teapot-2.3.0-helpfile.patch, +teapot-2.3.0.ebuild:
36 + Version bump (bug 451738)
37
38 15 Dec 2011; Pacho Ramos <pacho@g.o> metadata.xml:
39 Drop maintainer due retirement, bug #353461
40 @@ -16,4 +22,3 @@
41 03 Feb 2011; Samuli Suominen <ssuominen@g.o> +teapot-2.2.0.ebuild,
42 +files/teapot-2.2.0-doc-dir.patch, +files/teapot-2.2.0-helpfile.patch:
43 Initial commit wrt #353579 by Kevin McCarthy.
44 -
45
46
47
48 1.1 app-office/teapot/teapot-2.3.0.ebuild
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/teapot/teapot-2.3.0.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/teapot/teapot-2.3.0.ebuild?rev=1.1&content-type=text/plain
52
53 Index: teapot-2.3.0.ebuild
54 ===================================================================
55 # Copyright 1999-2013 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/app-office/teapot/teapot-2.3.0.ebuild,v 1.1 2013/05/31 13:49:47 xmw Exp $
58
59 EAPI=4
60 inherit cmake-utils flag-o-matic
61
62 DESCRIPTION="A powerful spreadhseet program"
63 HOMEPAGE="http://www.syntax-k.de/projekte/teapot/"
64 SRC_URI="http://www.syntax-k.de/projekte/teapot/${P}.tar.gz"
65
66 LICENSE="GPL-3"
67 SLOT="0"
68 KEYWORDS="~amd64 ~x86"
69 IUSE="doc fltk"
70
71 RDEPEND="sys-libs/ncurses
72 fltk? ( >=x11-libs/fltk-1.3.0:1 )"
73 DEPEND="${RDEPEND}
74 doc? (
75 app-office/lyx
76 dev-tex/latex2html
77 dev-tex/pgf
78 dev-texlive/texlive-fontsrecommended
79 )"
80
81 PATCHES=(
82 "${FILESDIR}"/${P}-doc-dir.patch
83 "${FILESDIR}"/${P}-helpfile.patch
84 )
85
86 src_configure() {
87 mycmakeargs=(
88 $(cmake-utils_use_enable doc HELP)
89 -DPF=${PF}
90 )
91
92 if use fltk; then
93 mycmakeargs+=(
94 -DFLTK_USE_FILE=/usr/share/cmake/Modules/FLTKConfig.cmake
95 -DFLTK_DIR=/usr/share/cmake/Modules
96 -DFLTK_FLUID_EXECUTABLE=/usr/bin/fluid
97 )
98 append-cxxflags -I/usr/include/fltk-1
99 append-ldflags -L/usr/$(get_libdir)/fltk-1
100 fi
101
102 cmake-utils_src_configure
103 }