Gentoo Archives: gentoo-commits

From: "Ilya Volynets (iluxa)" <iluxa@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-cpp/sptk: ChangeLog sptk-3.5.8.10.ebuild
Date: Fri, 08 May 2009 09:14:53
Message-Id: E1M2MAN-0002UZ-OS@stork.gentoo.org
1 iluxa 09/05/08 09:14:51
2
3 Modified: ChangeLog sptk-3.5.8.10.ebuild
4 Log:
5 Add gnutls flag to sptk-3.5.8.10 ebuild
6 (Portage version: 2.1.6.11/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.58 dev-cpp/sptk/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/ChangeLog?rev=1.58&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/ChangeLog?rev=1.58&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/ChangeLog?r1=1.57&r2=1.58
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-cpp/sptk/ChangeLog,v
18 retrieving revision 1.57
19 retrieving revision 1.58
20 diff -u -r1.57 -r1.58
21 --- ChangeLog 8 May 2009 09:09:04 -0000 1.57
22 +++ ChangeLog 8 May 2009 09:14:51 -0000 1.58
23 @@ -1,6 +1,10 @@
24 # ChangeLog for dev-cpp/sptk
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/ChangeLog,v 1.57 2009/05/08 09:09:04 iluxa Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/ChangeLog,v 1.58 2009/05/08 09:14:51 iluxa Exp $
28 +
29 + 08 May 2009; Ilya A. Volynets-Evenbakh <iluxa@g.o>
30 + sptk-3.5.8.10.ebuild:
31 + Add gnutls flag
32
33 08 May 2009; Ilya A. Volynets-Evenbakh <iluxa@g.o>
34 sptk-3.5.8.10.ebuild:
35
36
37
38 1.7 dev-cpp/sptk/sptk-3.5.8.10.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild?rev=1.7&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild?rev=1.7&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild?r1=1.6&r2=1.7
43
44 Index: sptk-3.5.8.10.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild,v
47 retrieving revision 1.6
48 retrieving revision 1.7
49 diff -u -r1.6 -r1.7
50 --- sptk-3.5.8.10.ebuild 8 May 2009 09:09:04 -0000 1.6
51 +++ sptk-3.5.8.10.ebuild 8 May 2009 09:14:51 -0000 1.7
52 @@ -1,12 +1,12 @@
53 # Copyright 2006-2009 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild,v 1.6 2009/05/08 09:09:04 iluxa Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild,v 1.7 2009/05/08 09:14:51 iluxa Exp $
57
58 EAPI=1
59
60 inherit multilib cmake-utils
61
62 -IUSE="fltk odbc doc sqlite excel postgres aspell mysql"
63 +IUSE="fltk odbc doc sqlite excel postgres aspell mysql gnutls"
64
65 DESCRIPTION="C++ user interface toolkit for X with database and Excel support"
66 SRC_URI="http://www.sptk.net/sptk-${PV}.tbz2"
67 @@ -21,7 +21,8 @@
68 sqlite? ( >=dev-db/sqlite-3 )
69 postgres? ( >=virtual/postgresql-base-8.0 )
70 mysql? ( virtual/mysql )
71 - aspell? ( >=app-text/aspell-0.50 )"
72 + aspell? ( >=app-text/aspell-0.50 )
73 + gnutls? ( net-libs/gnutls )"
74
75 DEPEND="${RDEPEND}
76 doc? ( app-doc/doxygen )"
77 @@ -35,10 +36,10 @@
78 $(cmake-utils_use_no odbc ODBC)
79 $(cmake-utils_use_no aspell ASPELL)
80 $(cmake-utils_use_no fltk FLTK)
81 - $(cmake-utils_use_no excel EXCEL)"
82 + $(cmake-utils_use_no excel EXCEL)
83 + $(cmake-utils_use_no gnutls TLS)"
84
85 mycmakeargs="${mycmakeargs} -D CMAKE_INSTALL_PREFIX:PATH=/usr -D LIBDIR=$(get_libdir) ${SPTK_OPTIONS} -DNO_EXAMPLES:BOOLEAN=TRUE"
86 - einfo "mycmakeargs=${mycmakeargs}"
87
88 cmake-utils_src_configure