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: Sat, 25 Apr 2009 12:35:25
Message-Id: E1Lxh6I-0006R7-Sa@stork.gentoo.org
1 iluxa 09/04/25 12:35:22
2
3 Modified: ChangeLog sptk-3.5.8.10.ebuild
4 Log:
5 Remove "examples" use flag from sptk
6 (Portage version: 2.1.6.7/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.56 dev-cpp/sptk/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/ChangeLog?rev=1.56&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/ChangeLog?rev=1.56&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/ChangeLog?r1=1.55&r2=1.56
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-cpp/sptk/ChangeLog,v
18 retrieving revision 1.55
19 retrieving revision 1.56
20 diff -u -r1.55 -r1.56
21 --- ChangeLog 16 Mar 2009 19:14:06 -0000 1.55
22 +++ ChangeLog 25 Apr 2009 12:35:22 -0000 1.56
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.55 2009/03/16 19:14:06 iluxa Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/ChangeLog,v 1.56 2009/04/25 12:35:22 iluxa Exp $
28 +
29 + 25 Apr 2009; Ilya A. Volynets-Evenbakh <iluxa@g.o>
30 + sptk-3.5.8.10.ebuild:
31 + Remove examples use flag
32
33 16 Mar 2009; Ilya A. Volynets-Evenbakh <iluxa@g.o>
34 sptk-3.5.8.10.ebuild:
35
36
37
38 1.5 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.5&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild?rev=1.5&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.4&r2=1.5
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.4
48 retrieving revision 1.5
49 diff -u -r1.4 -r1.5
50 --- sptk-3.5.8.10.ebuild 16 Mar 2009 19:14:06 -0000 1.4
51 +++ sptk-3.5.8.10.ebuild 25 Apr 2009 12:35:22 -0000 1.5
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.4 2009/03/16 19:14:06 iluxa Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild,v 1.5 2009/04/25 12:35:22 iluxa Exp $
57
58 EAPI=1
59
60 inherit eutils flag-o-matic multilib
61
62 -IUSE="fltk odbc doc sqlite examples excel postgres aspell mysql"
63 +IUSE="fltk odbc doc sqlite excel postgres aspell mysql"
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 @@ -41,7 +41,6 @@
68 }
69
70 src_compile() {
71 - sptk_use_enable examples EXAMPLES
72 sptk_use_enable postgres POSTGRESQL
73 sptk_use_enable mysql MYSQL
74 sptk_use_enable sqlite SQLITE3
75 @@ -50,7 +49,7 @@
76 sptk_use_enable fltk FLTK
77 sptk_use_enable excel EXCEL
78
79 - cmake -D CMAKE_INSTALL_PREFIX:PATH=/usr -D LIBDIR=$(get_libdir) ${SPTK_OPTIONS} . || die "Configuration Failed"
80 + cmake -D CMAKE_INSTALL_PREFIX:PATH=/usr -D LIBDIR=$(get_libdir) ${SPTK_OPTIONS} -DNO_EXAMPLES:BOOLEAN=TRUE . || die "Configuration Failed"
81
82 emake || die "Parallel Make Failed"