Gentoo Archives: gentoo-commits

From: "Christian Hoffmann (hoffie)" <hoffie@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/libiodbc: ChangeLog libiodbc-3.52.7.ebuild
Date: Mon, 05 Oct 2009 15:33:25
Message-Id: E1MupYw-0003Xx-Km@stork.gentoo.org
1 hoffie 09/10/05 15:33:22
2
3 Modified: ChangeLog
4 Added: libiodbc-3.52.7.ebuild
5 Log:
6 version bump, should fix bug 286525
7 (Portage version: 2.1.6.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.42 dev-db/libiodbc/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libiodbc/ChangeLog?rev=1.42&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libiodbc/ChangeLog?rev=1.42&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libiodbc/ChangeLog?r1=1.41&r2=1.42
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-db/libiodbc/ChangeLog,v
19 retrieving revision 1.41
20 retrieving revision 1.42
21 diff -u -r1.41 -r1.42
22 --- ChangeLog 31 Dec 2007 12:27:28 -0000 1.41
23 +++ ChangeLog 5 Oct 2009 15:33:22 -0000 1.42
24 @@ -1,6 +1,13 @@
25 # ChangeLog for dev-db/libiodbc
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-db/libiodbc/ChangeLog,v 1.41 2007/12/31 12:27:28 armin76 Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-db/libiodbc/ChangeLog,v 1.42 2009/10/05 15:33:22 hoffie Exp $
30 +
31 +*libiodbc-3.52.7 (05 Oct 2009)
32 +
33 + 05 Oct 2009; Christian Hoffmann <hoffie@g.o>
34 + +libiodbc-3.52.7.ebuild:
35 + version bump, should fix bug 286525, thanks a lot to Juergen Rose
36 + <rose@××××××××××××××.de> and Rafał Mużyło <galtgendo@××.pl>
37
38 31 Dec 2007; Raúl Porcel <armin76@g.o> libiodbc-3.52.6.ebuild:
39 alpha/ia64/sparc stable wrt #203633
40
41
42
43 1.1 dev-db/libiodbc/libiodbc-3.52.7.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libiodbc/libiodbc-3.52.7.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/libiodbc/libiodbc-3.52.7.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libiodbc-3.52.7.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-db/libiodbc/libiodbc-3.52.7.ebuild,v 1.1 2009/10/05 15:33:22 hoffie Exp $
53
54 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
55
56 DESCRIPTION="ODBC Interface for Linux."
57 HOMEPAGE="http://www.iodbc.org/"
58 SRC_URI="http://www.iodbc.org/downloads/iODBC/${P}.tar.gz"
59 LICENSE="|| ( LGPL-2 BSD )"
60 SLOT="0"
61 IUSE="gtk"
62
63 DEPEND=">=sys-libs/readline-4.1
64 >=sys-libs/ncurses-5.2
65 gtk? ( =x11-libs/gtk+-2* )"
66 RDEPEND="${DEPEND}"
67
68 src_unpack() {
69 unpack ${A}
70 cd "${S}"
71 sed -i.orig \
72 -e '/^cd "$PREFIX"/,/^esac/d' \
73 iodbc/install_libodbc.sh || die "sed failed"
74 }
75
76 src_compile() {
77 econf \
78 --with-layout=gentoo \
79 $(use_enable gtk gui) \
80 || die "econf failed"
81
82 emake -j1 || die "emake failed"
83 }
84
85 src_install() {
86 emake -j1 DESTDIR="${D}" install || die "emake install failed"
87 dodoc AUTHORS ChangeLog NEWS README
88 }