Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/unixODBC: ChangeLog unixODBC-2.3.0.ebuild unixODBC-2.2.14.ebuild
Date: Sun, 02 May 2010 19:33:29
Message-Id: 20100502193321.62F552C264@corvid.gentoo.org
1 ssuominen 10/05/02 19:33:21
2
3 Modified: ChangeLog unixODBC-2.3.0.ebuild
4 Removed: unixODBC-2.2.14.ebuild
5 Log:
6 Pass --disable-drivers and --disable-driver-conf per upstream default in ./configure with USE +minimal. Same as building basic libraries only per default.
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.80 dev-db/unixODBC/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/unixODBC/ChangeLog?rev=1.80&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/unixODBC/ChangeLog?rev=1.80&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/unixODBC/ChangeLog?r1=1.79&r2=1.80
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v
19 retrieving revision 1.79
20 retrieving revision 1.80
21 diff -u -r1.79 -r1.80
22 --- ChangeLog 22 Apr 2010 21:07:43 -0000 1.79
23 +++ ChangeLog 2 May 2010 19:33:21 -0000 1.80
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-db/unixODBC
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.79 2010/04/22 21:07:43 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.80 2010/05/02 19:33:21 ssuominen Exp $
29 +
30 + 02 May 2010; Samuli Suominen <ssuominen@g.o> unixODBC-2.3.0.ebuild:
31 + Pass --disable-drivers and --disable-driver-conf per upstream default in
32 + ./configure with USE +minimal. Same as building basic libraries only per
33 + default.
34
35 *unixODBC-2.3.0 (22 Apr 2010)
36
37
38
39
40 1.2 dev-db/unixODBC/unixODBC-2.3.0.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/unixODBC/unixODBC-2.3.0.ebuild?rev=1.2&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/unixODBC/unixODBC-2.3.0.ebuild?rev=1.2&content-type=text/plain
44 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/unixODBC/unixODBC-2.3.0.ebuild?r1=1.1&r2=1.2
45
46 Index: unixODBC-2.3.0.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.3.0.ebuild,v
49 retrieving revision 1.1
50 retrieving revision 1.2
51 diff -u -r1.1 -r1.2
52 --- unixODBC-2.3.0.ebuild 22 Apr 2010 21:07:43 -0000 1.1
53 +++ unixODBC-2.3.0.ebuild 2 May 2010 19:33:21 -0000 1.2
54 @@ -1,6 +1,6 @@
55 # Copyright 1999-2010 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.3.0.ebuild,v 1.1 2010/04/22 21:07:43 ssuominen Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.3.0.ebuild,v 1.2 2010/05/02 19:33:21 ssuominen Exp $
59
60 EAPI=3
61 inherit libtool
62 @@ -12,7 +12,7 @@
63 LICENSE="GPL-2 LGPL-2.1"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux"
66 -IUSE="static-libs"
67 +IUSE="+minimal static-libs"
68
69 RDEPEND=">=sys-libs/readline-6.0
70 >=sys-libs/ncurses-5.6
71 @@ -29,8 +29,8 @@
72 --sysconfdir="${EPREFIX}/etc/${PN}" \
73 --disable-dependency-tracking \
74 $(use_enable static-libs static) \
75 - --enable-drivers \
76 - --enable-driver-conf
77 + $(use_enable !minimal drivers) \
78 + $(use_enable !minimal driver-conf)
79 }
80
81 src_install() {