Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/sqliteodbc: sqliteodbc-0.99.ebuild ChangeLog
Date: Wed, 30 Jan 2013 04:23:29
Message-Id: 20130130042326.876382171D@flycatcher.gentoo.org
1 patrick 13/01/30 04:23:26
2
3 Modified: ChangeLog
4 Added: sqliteodbc-0.99.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.35 dev-db/sqliteodbc/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqliteodbc/ChangeLog?rev=1.35&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqliteodbc/ChangeLog?rev=1.35&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqliteodbc/ChangeLog?r1=1.34&r2=1.35
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-db/sqliteodbc/ChangeLog,v
20 retrieving revision 1.34
21 retrieving revision 1.35
22 diff -u -r1.34 -r1.35
23 --- ChangeLog 9 Sep 2012 16:23:42 -0000 1.34
24 +++ ChangeLog 30 Jan 2013 04:23:26 -0000 1.35
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-db/sqliteodbc
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-db/sqliteodbc/ChangeLog,v 1.34 2012/09/09 16:23:42 kensington Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-db/sqliteodbc/ChangeLog,v 1.35 2013/01/30 04:23:26 patrick Exp $
31 +
32 +*sqliteodbc-0.99 (30 Jan 2013)
33 +
34 + 30 Jan 2013; Patrick Lauer <patrick@g.o> +sqliteodbc-0.99.ebuild:
35 + Bump
36
37 09 Sep 2012; Michael Palimaka <kensington@g.o>
38 -files/sqliteodbc-0.83-respect_LDFLAGS.patch, -sqliteodbc-0.87.ebuild,
39
40
41
42 1.1 dev-db/sqliteodbc/sqliteodbc-0.99.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqliteodbc/sqliteodbc-0.99.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqliteodbc/sqliteodbc-0.99.ebuild?rev=1.1&content-type=text/plain
46
47 Index: sqliteodbc-0.99.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-db/sqliteodbc/sqliteodbc-0.99.ebuild,v 1.1 2013/01/30 04:23:26 patrick Exp $
52
53 EAPI=4
54
55 inherit eutils multilib toolchain-funcs
56
57 DESCRIPTION="ODBC driver to access local SQLite database files."
58 HOMEPAGE="http://www.ch-werner.de/sqliteodbc/"
59 SRC_URI="http://www.ch-werner.de/sqliteodbc/${P}.tar.gz"
60
61 LICENSE="BSD"
62 SLOT="0"
63 KEYWORDS="~amd64 ~arm ~ppc ~x86"
64 IUSE=""
65
66 DEPEND=">=dev-db/sqlite-3.6
67 || (
68 >=dev-db/unixODBC-2.2
69 >=dev-db/libiodbc-3.5
70 )"
71 RDEPEND="${DEPEND}"
72
73 pkg_setup() {
74 tc-export CC
75 }
76
77 src_prepare() {
78 epatch "${FILESDIR}/${PN}-0.93-respect_LDFLAGS.patch"
79 }
80
81 src_configure() {
82 econf --disable-static
83 }
84
85 src_install() {
86 dodir "/usr/$(get_libdir)"
87 einstall
88 find "${D}" -name '*.la' -exec rm -f {} + || die "la file removal failed"
89 dodoc ChangeLog README
90 }