Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/sqliteodbc: ChangeLog sqliteodbc-0.83.ebuild
Date: Mon, 07 Sep 2009 23:02:44
Message-Id: E1MknEQ-0004Na-04@stork.gentoo.org
1 arfrever 09/09/07 23:02:41
2
3 Modified: ChangeLog
4 Added: sqliteodbc-0.83.ebuild
5 Log:
6 Version bump. Respect CC and LDFLAGS.
7 (Portage version: 14212-svn/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.13 dev-db/sqliteodbc/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqliteodbc/ChangeLog?rev=1.13&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqliteodbc/ChangeLog?rev=1.13&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqliteodbc/ChangeLog?r1=1.12&r2=1.13
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-db/sqliteodbc/ChangeLog,v
19 retrieving revision 1.12
20 retrieving revision 1.13
21 diff -u -r1.12 -r1.13
22 --- ChangeLog 7 Sep 2009 22:23:26 -0000 1.12
23 +++ ChangeLog 7 Sep 2009 23:02:41 -0000 1.13
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-db/sqliteodbc
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-db/sqliteodbc/ChangeLog,v 1.12 2009/09/07 22:23:26 arfrever Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-db/sqliteodbc/ChangeLog,v 1.13 2009/09/07 23:02:41 arfrever Exp $
29 +
30 +*sqliteodbc-0.83 (07 Sep 2009)
31 +
32 + 07 Sep 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
33 + +sqliteodbc-0.83.ebuild, +files/sqliteodbc-0.83-respect_LDFLAGS.patch:
34 + Version bump. Respect CC and LDFLAGS.
35
36 08 Sep 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
37 sqliteodbc-0.79.ebuild:
38
39
40
41 1.1 dev-db/sqliteodbc/sqliteodbc-0.83.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqliteodbc/sqliteodbc-0.83.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/sqliteodbc/sqliteodbc-0.83.ebuild?rev=1.1&content-type=text/plain
45
46 Index: sqliteodbc-0.83.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-db/sqliteodbc/sqliteodbc-0.83.ebuild,v 1.1 2009/09/07 23:02:41 arfrever Exp $
51
52 EAPI="2"
53
54 inherit eutils toolchain-funcs
55
56 DESCRIPTION="ODBC driver to access local SQLite database files."
57 HOMEPAGE="http://www.ch-werner.de/sqliteodbc/"
58 SRC_URI="http://www.ch-werner.de/sqliteodbc/${P}.tar.gz"
59
60 LICENSE="BSD"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86"
63 IUSE=""
64
65 DEPEND=">=dev-db/sqlite-3.6
66 || (
67 >=dev-db/unixODBC-2.2
68 >=dev-db/libiodbc-3.5
69 )"
70 RDEPEND="${DEPEND}"
71
72 pkg_setup() {
73 tc-export CC
74 }
75
76 src_prepare() {
77 epatch "${FILESDIR}/${P}-respect_LDFLAGS.patch"
78 }
79
80 src_install() {
81 dodir "/usr/$(get_libdir)"
82 einstall || die "einstall failed"
83 dodoc ChangeLog README
84 }