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
Date: Thu, 22 Apr 2010 21:07:50
Message-Id: 20100422210745.A82E22C04B@corvid.gentoo.org
1 ssuominen 10/04/22 21:07:43
2
3 Modified: ChangeLog
4 Added: unixODBC-2.3.0.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.79 dev-db/unixODBC/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/unixODBC/ChangeLog?rev=1.79&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/unixODBC/ChangeLog?rev=1.79&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/unixODBC/ChangeLog?r1=1.78&r2=1.79
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v
19 retrieving revision 1.78
20 retrieving revision 1.79
21 diff -u -r1.78 -r1.79
22 --- ChangeLog 22 Mar 2010 17:15:03 -0000 1.78
23 +++ ChangeLog 22 Apr 2010 21:07:43 -0000 1.79
24 @@ -1,6 +1,12 @@
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.78 2010/03/22 17:15:03 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.79 2010/04/22 21:07:43 ssuominen Exp $
29 +
30 +*unixODBC-2.3.0 (22 Apr 2010)
31 +
32 + 22 Apr 2010; Samuli Suominen <ssuominen@g.o>
33 + +unixODBC-2.3.0.ebuild:
34 + Version bump.
35
36 22 Mar 2010; Samuli Suominen <ssuominen@g.o>
37 unixODBC-2.2.14.ebuild, files/odbcinst.ini:
38
39
40
41 1.1 dev-db/unixODBC/unixODBC-2.3.0.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/unixODBC/unixODBC-2.3.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/unixODBC/unixODBC-2.3.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: unixODBC-2.3.0.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.3.0.ebuild,v 1.1 2010/04/22 21:07:43 ssuominen Exp $
51
52 EAPI=3
53 inherit libtool
54
55 DESCRIPTION="A complete ODBC driver manager"
56 HOMEPAGE="http://www.unixodbc.org/"
57 SRC_URI="mirror://sourceforge/unixodbc/${P}.tar.gz"
58
59 LICENSE="GPL-2 LGPL-2.1"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux"
62 IUSE="static-libs"
63
64 RDEPEND=">=sys-libs/readline-6.0
65 >=sys-libs/ncurses-5.6
66 >=sys-devel/libtool-2.2.6b"
67 DEPEND="${RDEPEND}
68 sys-devel/flex"
69
70 src_prepare() {
71 elibtoolize
72 }
73
74 src_configure() {
75 econf \
76 --sysconfdir="${EPREFIX}/etc/${PN}" \
77 --disable-dependency-tracking \
78 $(use_enable static-libs static) \
79 --enable-drivers \
80 --enable-driver-conf
81 }
82
83 src_install() {
84 emake DESTDIR="${D}" install || die
85
86 dodoc AUTHORS ChangeLog NEWS README*
87 dohtml -a css,gif,html,sql,vsd -r doc/*
88 }