Gentoo Archives: gentoo-commits

From: "Jeremy Olexa (darkside)" <darkside@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/sqliteodbc: ChangeLog sqliteodbc-0.79.ebuild sqliteodbc-0.64.ebuild sqliteodbc-0.70.ebuild sqliteodbc-0.64-r1.ebuild
Date: Tue, 14 Oct 2008 03:15:08
Message-Id: E1KpaNE-00071A-L7@stork.gentoo.org
1 darkside 08/10/14 03:15:04
2
3 Modified: ChangeLog
4 Added: sqliteodbc-0.79.ebuild
5 Removed: sqliteodbc-0.64.ebuild sqliteodbc-0.70.ebuild
6 sqliteodbc-0.64-r1.ebuild
7 Log:
8 (non maintainer commit) remove old, broke versions. Add new version from Ingo Bormuth in bug #162180
9 (Portage version: 2.2_rc12/cvs/Linux 2.6.26-gentoo x86_64)
10
11 Revision Changes Path
12 1.8 dev-db/sqliteodbc/ChangeLog
13
14 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqliteodbc/ChangeLog?rev=1.8&view=markup
15 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqliteodbc/ChangeLog?rev=1.8&content-type=text/plain
16 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqliteodbc/ChangeLog?r1=1.7&r2=1.8
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-db/sqliteodbc/ChangeLog,v
21 retrieving revision 1.7
22 retrieving revision 1.8
23 diff -u -r1.7 -r1.8
24 --- ChangeLog 21 Apr 2008 17:06:45 -0000 1.7
25 +++ ChangeLog 14 Oct 2008 03:15:04 -0000 1.8
26 @@ -1,6 +1,15 @@
27 # ChangeLog for dev-db/sqliteodbc
28 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-db/sqliteodbc/ChangeLog,v 1.7 2008/04/21 17:06:45 phreak Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-db/sqliteodbc/ChangeLog,v 1.8 2008/10/14 03:15:04 darkside Exp $
31 +
32 +*sqliteodbc-0.79 (14 Oct 2008)
33 +
34 + 14 Oct 2008; Jeremy Olexa <darkside@g.o>
35 + -files/sqliteodbc-0.64-gentoo.patch, +files/sqliteodbc-0.77-iodbc.patch,
36 + -sqliteodbc-0.64.ebuild, -sqliteodbc-0.64-r1.ebuild,
37 + -sqliteodbc-0.70.ebuild, +sqliteodbc-0.79.ebuild:
38 + (non maintainer commit) remove old, broke versions. Add new version from
39 + Ingo Bormuth in bug #162180
40
41 21 Apr 2008; Christian Heim <phreak@g.o> metadata.xml:
42 Fix up metadata.xml. If there's no maintainer for the package, the metadata
43
44
45
46 1.1 dev-db/sqliteodbc/sqliteodbc-0.79.ebuild
47
48 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqliteodbc/sqliteodbc-0.79.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqliteodbc/sqliteodbc-0.79.ebuild?rev=1.1&content-type=text/plain
50
51 Index: sqliteodbc-0.79.ebuild
52 ===================================================================
53 # Copyright 1999-2008 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.79.ebuild,v 1.1 2008/10/14 03:15:04 darkside Exp $
56
57 inherit eutils autotools
58
59 DESCRIPTION="ODBC driver to access local SQLite database files."
60
61 HOMEPAGE="http://www.ch-werner.de/sqliteodbc/"
62 SRC_URI="http://www.ch-werner.de/sqliteodbc/${P}.tar.gz"
63 LICENSE="BSD"
64 SLOT="0"
65 KEYWORDS="~amd64 ~ppc ~x86"
66 IUSE="sqlite3 static"
67
68 DEPEND="
69 >=dev-db/sqlite-2.8.16
70 || (
71 >=dev-db/unixODBC-2.2
72 >=dev-db/libiodbc-3.5
73 )
74 sqlite3? ( >=dev-db/sqlite-3.5 )"
75
76 src_unpack() {
77 unpack ${A}
78 cd "${S}"
79 epatch "${FILESDIR}/${PN}-0.77-iodbc.patch"
80 eautoconf
81 }
82
83 src_compile() {
84 econf $(use_enable static)
85 emake || die "could not compile"
86 }
87
88 src_install() {
89 dodir /usr/lib
90 einstall || die "could not install"
91 dodoc README ChangeLog
92 }