Gentoo Archives: gentoo-commits

From: "Jesus Rivero (neurogeek)" <neurogeek@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/unixODBC: ChangeLog unixODBC-2.3.2.ebuild
Date: Tue, 31 Dec 2013 18:30:51
Message-Id: 20131231183046.0C1C42004C@flycatcher.gentoo.org
1 neurogeek 13/12/31 18:30:45
2
3 Modified: ChangeLog
4 Added: unixODBC-2.3.2.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.1.12.2/cvs/Linux i686, signed Manifest commit with key 1F6F0683)
9
10 Revision Changes Path
11 1.115 dev-db/unixODBC/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/ChangeLog?rev=1.115&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/ChangeLog?rev=1.115&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/ChangeLog?r1=1.114&r2=1.115
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v
20 retrieving revision 1.114
21 retrieving revision 1.115
22 diff -u -r1.114 -r1.115
23 --- ChangeLog 3 Mar 2013 23:36:12 -0000 1.114
24 +++ ChangeLog 31 Dec 2013 18:30:45 -0000 1.115
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-db/unixODBC
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.114 2013/03/03 23:36:12 neurogeek Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.115 2013/12/31 18:30:45 neurogeek Exp $
30 +
31 +*unixODBC-2.3.2 (31 Dec 2013)
32 +
33 + 31 Dec 2013; Jesus Rivero <neurogeek@g.o> +unixODBC-2.3.2.ebuild:
34 + Version bump
35
36 *unixODBC-2.3.1-r1 (03 Mar 2013)
37
38
39
40
41 1.1 dev-db/unixODBC/unixODBC-2.3.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/unixODBC-2.3.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/unixODBC/unixODBC-2.3.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: unixODBC-2.3.2.ebuild
47 ===================================================================
48 # Copyright 1999-2013 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.2.ebuild,v 1.1 2013/12/31 18:30:45 neurogeek Exp $
51
52 EAPI=5
53 inherit libtool
54
55 DESCRIPTION="A complete ODBC driver manager"
56 HOMEPAGE="http://www.unixodbc.org/"
57 SRC_URI="http://ftp.unixodbc.org/pub/${PN}/${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 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
62 IUSE="+minimal odbcmanual static-libs unicode"
63
64 RDEPEND=">=sys-devel/libtool-2.2.6b
65 >=sys-libs/readline-6.1
66 >=sys-libs/ncurses-5.7-r7
67 virtual/libiconv"
68 DEPEND="${RDEPEND}
69 sys-devel/flex"
70
71 DOCS="AUTHORS ChangeLog NEWS README"
72
73 src_prepare() {
74 elibtoolize
75 }
76
77 src_configure() {
78 # --enable-driver-conf is --enable-driverc as per configure.in
79 econf \
80 --sysconfdir="${EPREFIX}"/etc/${PN} \
81 --enable-iconv \
82 $(use_enable static-libs static) \
83 $(use_enable !minimal drivers) \
84 $(use_enable !minimal driverc) \
85 $(use_with unicode iconv-char-enc UTF8) \
86 $(use_with unicode iconv-ucode-enc UTF16LE)
87 }
88
89 src_install() {
90 default
91
92 use prefix && dodoc README*
93 use odbcmanual && dohtml -a css,gif,html,sql,vsd -r doc/*
94
95 find "${ED}" -name '*.la' -exec sed -i -e "/^dependency_libs/s:=.*:='':" {} +
96 }