diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2003-07-31 19:36:23 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2003-07-31 19:36:23 +0000 |
commit | 50d18bb21bb0b6e8ceb4b288d34dd2d6eecb6a1b (patch) | |
tree | 3c784f625f417e946b83835c09cf2edb3d1474de /dev-db/unixODBC | |
parent | fix bug 25639: use exuberant-ctags (diff) | |
download | gentoo-2-50d18bb21bb0b6e8ceb4b288d34dd2d6eecb6a1b.tar.gz gentoo-2-50d18bb21bb0b6e8ceb4b288d34dd2d6eecb6a1b.tar.bz2 gentoo-2-50d18bb21bb0b6e8ceb4b288d34dd2d6eecb6a1b.zip |
added Bernd Wollny's yac fix #23609
Diffstat (limited to 'dev-db/unixODBC')
-rw-r--r-- | dev-db/unixODBC/ChangeLog | 5 | ||||
-rw-r--r-- | dev-db/unixODBC/files/gentoo-yac.diff | 10 | ||||
-rw-r--r-- | dev-db/unixODBC/unixODBC-2.2.2.ebuild | 3 |
3 files changed, 16 insertions, 2 deletions
diff --git a/dev-db/unixODBC/ChangeLog b/dev-db/unixODBC/ChangeLog index 370ca2b9f2f6..4e94dcb58faf 100644 --- a/dev-db/unixODBC/ChangeLog +++ b/dev-db/unixODBC/ChangeLog @@ -1,6 +1,6 @@ # ChangeLog for dev-db/unixODBC # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.10 2003/07/11 21:04:18 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.11 2003/07/31 19:36:23 rphillips Exp $ 10 Jun 2003; Will Woods <wwoods@gentoo.org> unixODBC-2.0.6.ebuild, unixODBC-2.0.8.ebuild, unixODBC-2.2.2.ebuild: @@ -11,6 +11,9 @@ *unixODBC-2.2.2 (9 Jul 2002) + 31 Jul 2003; Ryan Phillips <rphillips@gentoo.org> unixODBC-2.2.2.ebuild: + Fixes #23609. yac patch + 11 Mar 2003; Guy Matrin <gmsoft@gentoo.org> unixODBC-2.2.2.ebuild, unixODBC-2.0.8.ebuild, unixODBC-2.0.6.ebuild : Added hppa to keywords. diff --git a/dev-db/unixODBC/files/gentoo-yac.diff b/dev-db/unixODBC/files/gentoo-yac.diff new file mode 100644 index 000000000000..4d2546f614d6 --- /dev/null +++ b/dev-db/unixODBC/files/gentoo-yac.diff @@ -0,0 +1,10 @@ +--- sqp/yac.y.orig 2003-06-27 20:34:17.000000000 +0200 ++++ sqp/yac.y 2003-06-27 20:34:40.000000000 +0200 +@@ -214,6 +214,7 @@ + y_escape: + /* optional */ { $$ = NULL; } + | ESCAPE STRING { $$ = $2; } ++; + + y_comparisons: + y_comparisons OR y_comparisons { $$ = sqpStoreCond( sqpor, $1, $3, NULL ); } diff --git a/dev-db/unixODBC/unixODBC-2.2.2.ebuild b/dev-db/unixODBC/unixODBC-2.2.2.ebuild index 0e0688c4ab80..1036ed01f04e 100644 --- a/dev-db/unixODBC/unixODBC-2.2.2.ebuild +++ b/dev-db/unixODBC/unixODBC-2.2.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.2.2.ebuild,v 1.10 2003/07/22 19:35:13 tester Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.2.2.ebuild,v 1.11 2003/07/31 19:36:23 rphillips Exp $ IUSE="qt" @@ -23,6 +23,7 @@ src_unpack() { # need to edit the file to make it DESTDIR sensitive. cp Makefile.in Makefile.orig sed -e "s:touch :touch \${DESTDIR}/:" -e "s:mkdir -p :mkdir -p \${DESTDIR}/:" Makefile.orig > Makefile.in + epatch ${FILESDIR}/gentoo-yac.diff } src_compile() { |