diff options
author | 2010-01-12 18:35:46 +0000 | |
---|---|---|
committer | 2010-01-12 18:35:46 +0000 | |
commit | 778ce8a5f73213176af606f9e2925d06c9b2e891 (patch) | |
tree | ea6024922b83a4cdfab9206190a21ec53c4649e6 /app-office/mdbtools/mdbtools-0.6_pre2-r2.ebuild | |
parent | ppc stable #299125 (diff) | |
download | gentoo-2-778ce8a5f73213176af606f9e2925d06c9b2e891.tar.gz gentoo-2-778ce8a5f73213176af606f9e2925d06c9b2e891.tar.bz2 gentoo-2-778ce8a5f73213176af606f9e2925d06c9b2e891.zip |
Update parallel make patch based on feedback in #253584. Add static-libs USE flag.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'app-office/mdbtools/mdbtools-0.6_pre2-r2.ebuild')
-rw-r--r-- | app-office/mdbtools/mdbtools-0.6_pre2-r2.ebuild | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/app-office/mdbtools/mdbtools-0.6_pre2-r2.ebuild b/app-office/mdbtools/mdbtools-0.6_pre2-r2.ebuild new file mode 100644 index 000000000000..05e77a12bc0a --- /dev/null +++ b/app-office/mdbtools/mdbtools-0.6_pre2-r2.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-office/mdbtools/mdbtools-0.6_pre2-r2.ebuild,v 1.1 2010/01/12 18:35:45 graaff Exp $ + +EAPI="2" +WANT_AUTOMAKE="1.7" + +inherit eutils autotools + +MY_P=${P/_/} +S="${WORKDIR}/${PN}-cvs-20050624" + +DESCRIPTION="A set of libraries and utilities for reading Microsoft Access database (MDB) files" +HOMEPAGE="http://sourceforge.net/projects/mdbtools" +SRC_URI="mirror://gentoo/${PN}-cvs-20050624.tar.gz" + +IUSE="gnome odbc static-libs" +LICENSE="GPL-2 LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" + +RDEPEND=">=dev-libs/glib-2 + sys-libs/ncurses + sys-libs/readline + gnome? ( + >=gnome-base/libglade-2 + >=gnome-base/libgnomeui-2 ) + odbc? ( >=dev-db/unixODBC-2.0 )" +DEPEND="${RDEPEND} + dev-util/pkgconfig + >=sys-devel/flex-2.5.0 + >=sys-devel/bison-1.35" + +src_prepare() { + epatch "${FILESDIR}"/${P}-gcc34.patch + epatch "${FILESDIR}"/${P}-as-needed.patch + epatch "${FILESDIR}"/${P}-haveiconv-fix.patch + epatch "${FILESDIR}"/${P}-parallel-make.patch + + # This is necessary since the upstream tarball was created with a + # buggy libtool, and the .so suffix in library names is lost in + # some platforms (e.g. amd64). Starting with libtool 2.2.4 it is + # also necessary to remove the acinclude.m4 file since it contains + # an old libtool.m4 that is obsolete, #227257. + rm "${S}"/acinclude.m4 + eautoreconf +} + +src_configure() { + local myconf + use odbc && myconf="${myconf} --with-unixodbc=/usr" + + econf ${myconf} \ + $(use_enable static-libs static) || die "configure failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "Installation failed" + dodoc COPYING* NEWS README* TODO AUTHORS HACKING ChangeLog + + # add a compat symlink (gmdb2 is not compiled if gnome USE flag is disabled) + use gnome && dosym gmdb2 /usr/bin/gmdb +} |