Gentoo Archives: gentoo-commits

From: "Tiziano Mueller (dev-zero)" <dev-zero@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/unixODBC: unixODBC-2.2.12.ebuild ChangeLog
Date: Thu, 29 May 2008 14:50:36
Message-Id: E1K1jSJ-0003vK-Jb@stork.gentoo.org
1 dev-zero 08/05/29 14:50:15
2
3 Modified: unixODBC-2.2.12.ebuild ChangeLog
4 Log:
5 Removed bundled libltdl (fixes bug #221879).
6 (Portage version: 2.1.5_rc7)
7
8 Revision Changes Path
9 1.14 dev-db/unixODBC/unixODBC-2.2.12.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/unixODBC/unixODBC-2.2.12.ebuild?rev=1.14&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/unixODBC/unixODBC-2.2.12.ebuild?rev=1.14&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/unixODBC/unixODBC-2.2.12.ebuild?r1=1.13&r2=1.14
14
15 Index: unixODBC-2.2.12.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.2.12.ebuild,v
18 retrieving revision 1.13
19 retrieving revision 1.14
20 diff -u -r1.13 -r1.14
21 --- unixODBC-2.2.12.ebuild 13 Mar 2008 21:42:01 -0000 1.13
22 +++ unixODBC-2.2.12.ebuild 29 May 2008 14:50:15 -0000 1.14
23 @@ -1,13 +1,13 @@
24 # Copyright 1999-2008 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.2.12.ebuild,v 1.13 2008/03/13 21:42:01 ricmm Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.2.12.ebuild,v 1.14 2008/05/29 14:50:15 dev-zero Exp $
28
29 WANT_AUTOCONF="latest"
30 WANT_AUTOMAKE="latest"
31 PATCH_VERSION="2.2.12-r0"
32 PATCH_P="${PN}-${PATCH_VERSION}-patches"
33
34 -inherit eutils multilib autotools gnuconfig
35 +inherit eutils multilib autotools gnuconfig libtool
36
37 KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
38
39 @@ -22,8 +22,8 @@
40 RDEPEND=">=sys-libs/readline-4.1
41 >=sys-libs/ncurses-5.2
42 qt3? ( =x11-libs/qt-3* )
43 - gnome? ( gnome-base/libgnomeui )"
44 -
45 + gnome? ( gnome-base/libgnomeui )
46 + sys-devel/libtool"
47 DEPEND="${RDEPEND}
48 gnome? ( dev-util/cvs )" # see Bug 173256
49
50 @@ -32,7 +32,14 @@
51 cd "${S}"
52
53 epatch "${WORKDIR}"/${PATCH_P}/*
54 - epatch "${FILESDIR}"/350-${P}-gODBCConfig-as-needed.patch
55 + epatch \
56 + "${FILESDIR}/350-${P}-gODBCConfig-as-needed.patch" \
57 + "${FILESDIR}/360-${P}-libltdlfixes.patch"
58 +
59 + # Remove bundled libltdl copy
60 + rm -rf libltdl
61 +
62 + eautoreconf
63 }
64
65 src_compile() {
66 @@ -44,15 +51,13 @@
67 myconf="--enable-gui=no"
68 fi
69
70 - # Detect mips systems properly
71 - eautoreconf
72 -
73 econf --host=${CHOST} \
74 --prefix=/usr \
75 --sysconfdir=/etc/${PN} \
76 --libdir=/usr/$(get_libdir) \
77 --enable-static \
78 --enable-fdb \
79 + --enable-ltdllib \
80 ${myconf} || die "econf failed"
81 emake -j1 || die "emake failed"
82
83
84
85
86 1.74 dev-db/unixODBC/ChangeLog
87
88 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/unixODBC/ChangeLog?rev=1.74&view=markup
89 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/unixODBC/ChangeLog?rev=1.74&content-type=text/plain
90 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/unixODBC/ChangeLog?r1=1.73&r2=1.74
91
92 Index: ChangeLog
93 ===================================================================
94 RCS file: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v
95 retrieving revision 1.73
96 retrieving revision 1.74
97 diff -u -r1.73 -r1.74
98 --- ChangeLog 13 Mar 2008 21:42:01 -0000 1.73
99 +++ ChangeLog 29 May 2008 14:50:15 -0000 1.74
100 @@ -1,6 +1,10 @@
101 # ChangeLog for dev-db/unixODBC
102 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
103 -# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.73 2008/03/13 21:42:01 ricmm Exp $
104 +# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.74 2008/05/29 14:50:15 dev-zero Exp $
105 +
106 + 29 May 2008; Tiziano Müller <dev-zero@g.o>
107 + +files/360-unixODBC-2.2.12-libltdlfixes.patch, unixODBC-2.2.12.ebuild:
108 + Removed bundled libltdl (fixes bug #221879).
109
110 13 Mar 2008; <ricmm@g.o> unixODBC-2.2.11-r1.ebuild,
111 unixODBC-2.2.12.ebuild:
112
113
114
115 --
116 gentoo-commits@l.g.o mailing list