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.96.ebuild ChangeLog
Date: Mon, 30 Jul 2012 07:52:01
Message-Id: 20120730075150.AAA9E2004B@flycatcher.gentoo.org
1 patrick 12/07/30 07:51:50
2
3 Modified: ChangeLog
4 Added: sqliteodbc-0.96.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.30 dev-db/sqliteodbc/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqliteodbc/ChangeLog?rev=1.30&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqliteodbc/ChangeLog?rev=1.30&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqliteodbc/ChangeLog?r1=1.29&r2=1.30
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-db/sqliteodbc/ChangeLog,v
20 retrieving revision 1.29
21 retrieving revision 1.30
22 diff -u -r1.29 -r1.30
23 --- ChangeLog 4 Jun 2012 07:04:26 -0000 1.29
24 +++ ChangeLog 30 Jul 2012 07:51:50 -0000 1.30
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.29 2012/06/04 07:04:26 zmedico Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-db/sqliteodbc/ChangeLog,v 1.30 2012/07/30 07:51:50 patrick Exp $
30 +
31 +*sqliteodbc-0.96 (30 Jul 2012)
32 +
33 + 30 Jul 2012; Patrick Lauer <patrick@g.o> +sqliteodbc-0.96.ebuild:
34 + Bump
35
36 04 Jun 2012; Zac Medico <zmedico@g.o> sqliteodbc-0.87.ebuild,
37 sqliteodbc-0.94.ebuild:
38 @@ -124,4 +129,3 @@
39
40 22 Apr 2005; Anders Rune Jensen <arj@g.o> +sqliteodbc-0.64.ebuild:
41 New package. Fixes #56259.
42 -
43
44
45
46 1.1 dev-db/sqliteodbc/sqliteodbc-0.96.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqliteodbc/sqliteodbc-0.96.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqliteodbc/sqliteodbc-0.96.ebuild?rev=1.1&content-type=text/plain
50
51 Index: sqliteodbc-0.96.ebuild
52 ===================================================================
53 # Copyright 1999-2012 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/dev-db/sqliteodbc/sqliteodbc-0.96.ebuild,v 1.1 2012/07/30 07:51:50 patrick Exp $
56
57 EAPI=4
58
59 inherit eutils multilib toolchain-funcs
60
61 DESCRIPTION="ODBC driver to access local SQLite database files."
62 HOMEPAGE="http://www.ch-werner.de/sqliteodbc/"
63 SRC_URI="http://www.ch-werner.de/sqliteodbc/${P}.tar.gz"
64
65 LICENSE="BSD"
66 SLOT="0"
67 KEYWORDS="~amd64 ~arm ~ppc ~x86"
68 IUSE=""
69
70 DEPEND=">=dev-db/sqlite-3.6
71 || (
72 >=dev-db/unixODBC-2.2
73 >=dev-db/libiodbc-3.5
74 )"
75 RDEPEND="${DEPEND}"
76
77 pkg_setup() {
78 tc-export CC
79 }
80
81 src_prepare() {
82 epatch "${FILESDIR}/${PN}-0.93-respect_LDFLAGS.patch"
83 }
84
85 src_configure() {
86 econf --disable-static
87 }
88
89 src_install() {
90 dodir "/usr/$(get_libdir)"
91 einstall
92 find "${D}" -name '*.la' -exec rm -f {} + || die "la file removal failed"
93 dodoc ChangeLog README
94 }