diff options
author | Christian Hoffmann <hoffie@gentoo.org> | 2008-06-15 17:33:57 +0000 |
---|---|---|
committer | Christian Hoffmann <hoffie@gentoo.org> | 2008-06-15 17:33:57 +0000 |
commit | 575a66c7bfbb309385e8316e825a18f37e2a7f24 (patch) | |
tree | ce9f248b384e7eb2d42ccd002f262605b67798b5 /dev-db/unixODBC | |
parent | Version bump. (diff) | |
download | gentoo-2-575a66c7bfbb309385e8316e825a18f37e2a7f24.tar.gz gentoo-2-575a66c7bfbb309385e8316e825a18f37e2a7f24.tar.bz2 gentoo-2-575a66c7bfbb309385e8316e825a18f37e2a7f24.zip |
Moving autotools calls to src_unpack and using e* wrappers instead of calling them directly. Thanks to flameeyes for noticing that, thanks to Rafał Mużyło <galtgendo@o2.pl> for jogging my memory, bug 226545
(Portage version: 2.1.5.5)
Diffstat (limited to 'dev-db/unixODBC')
-rw-r--r-- | dev-db/unixODBC/ChangeLog | 8 | ||||
-rw-r--r-- | dev-db/unixODBC/unixODBC-2.2.12.ebuild | 12 |
2 files changed, 15 insertions, 5 deletions
diff --git a/dev-db/unixODBC/ChangeLog b/dev-db/unixODBC/ChangeLog index 93316ca586fe..5e25bb526382 100644 --- a/dev-db/unixODBC/ChangeLog +++ b/dev-db/unixODBC/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-db/unixODBC # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.74 2008/05/29 14:50:15 dev-zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/ChangeLog,v 1.75 2008/06/15 17:33:57 hoffie Exp $ + + 15 Jun 2008; Christian Hoffmann <hoffie@gentoo.org> + unixODBC-2.2.12.ebuild: + Moving autotools calls to src_unpack and using e* wrappers instead of + calling them directly. Thanks to flameeyes for noticing that, thanks to + Rafał Mużyło <galtgendo@o2.pl> for jogging my memory, bug 226545 29 May 2008; Tiziano Müller <dev-zero@gentoo.org> +files/360-unixODBC-2.2.12-libltdlfixes.patch, unixODBC-2.2.12.ebuild: diff --git a/dev-db/unixODBC/unixODBC-2.2.12.ebuild b/dev-db/unixODBC/unixODBC-2.2.12.ebuild index 6d5ac98094a4..7289c90405fc 100644 --- a/dev-db/unixODBC/unixODBC-2.2.12.ebuild +++ b/dev-db/unixODBC/unixODBC-2.2.12.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $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 $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/unixODBC/unixODBC-2.2.12.ebuild,v 1.15 2008/06/15 17:33:57 hoffie Exp $ WANT_AUTOCONF="latest" WANT_AUTOMAKE="latest" @@ -40,6 +40,13 @@ src_unpack() { rm -rf libltdl eautoreconf + + if use gnome ; then + cd gODBCConfig + touch ChangeLog + autopoint -f || die "autopoint -f failed" + eautoreconf --install + fi } src_compile() { @@ -68,9 +75,6 @@ src_compile() { ln -s "${S}"/odbcinst/.libs ./lib/.libs cd gODBCConfig - touch ChangeLog - gnuconfig_update - autoreconf --install econf --host=${CHOST} \ --with-odbc="${S}" \ --enable-static \ |