diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2003-02-07 22:03:01 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2003-02-07 22:03:01 +0000 |
commit | 90222851894a43ea9fe48deeb9752eca41a7697c (patch) | |
tree | 496e2af66322aaf9cfc5645ea2f7d1fea6c8ee9e /dev-db | |
parent | Added some more fluff so the user will notice the odbc/gtk2 thingy (diff) | |
download | historical-90222851894a43ea9fe48deeb9752eca41a7697c.tar.gz historical-90222851894a43ea9fe48deeb9752eca41a7697c.tar.bz2 historical-90222851894a43ea9fe48deeb9752eca41a7697c.zip |
fixes configure issue, and sandbox problem
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/unixODBC/ChangeLog | 5 | ||||
-rw-r--r-- | dev-db/unixODBC/unixODBC-2.0.6.ebuild | 15 |
2 files changed, 17 insertions, 3 deletions
diff --git a/dev-db/unixODBC/ChangeLog b/dev-db/unixODBC/ChangeLog index 24d8b0488714..6189f8fb5440 100644 --- a/dev-db/unixODBC/ChangeLog +++ b/dev-db/unixODBC/ChangeLog @@ -1,9 +1,12 @@ # ChangeLog for dev-db/unixODBC # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.4 2002/10/19 22:00:52 cselkirk Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.5 2003/02/07 22:03:01 rphillips Exp $ *unixODBC-2.2.2 (9 Jul 2002) + 07 Feb 2003; Ryan Phillips <rphillips@gentoo.org> unixODBC-2.0.6.ebuild : + Fixes #13166 + 19 Oct 2002; Calum Selkirk <cselkirk@gentoo.org> unixODBC-2.0.6.ebuild unixODBC-2.0.8.ebuild : diff --git a/dev-db/unixODBC/unixODBC-2.0.6.ebuild b/dev-db/unixODBC/unixODBC-2.0.6.ebuild index 762a6e6f4d62..72dcb487cbfe 100644 --- a/dev-db/unixODBC/unixODBC-2.0.6.ebuild +++ b/dev-db/unixODBC/unixODBC-2.0.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.0.6.ebuild,v 1.11 2002/10/19 22:00:52 cselkirk Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.0.6.ebuild,v 1.12 2003/02/07 22:03:01 rphillips Exp $ IUSE="qt" @@ -21,6 +21,15 @@ src_unpack() { cd ${S} cp Makefile.in Makefile.orig sed -e "s:touch :touch \${DESTDIR}/:" Makefile.orig > Makefile.in + cp configure.in configure.orig + sed -e "s:AC_CHECK_LIB *( *c *,:AC_CHECK_FUNC(:" configure.orig >configure.in + cd gODBCConfig + libtoolize + aclocal + cd .. + libtoolize + aclocal + autoreconf-2.13 } src_compile() { @@ -43,7 +52,9 @@ src_compile() { } src_install () { - make DESTDIR=${D} install || die + mkdir -p ${D}/etc/unixODBC + make DESTDIR=${D} sysconfdir=${D}/etc/unixODBC install || die + rm -r ${D}/var dodoc AUTHORS COPYING ChangeLog NEWS README* cp -a doc ${D}/usr/share/doc/${PF}/html |