diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2010-12-02 15:51:21 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2010-12-02 15:51:21 +0000 |
commit | 118f83cb9ad5739fc13046af92279b28faac5e6c (patch) | |
tree | 241f41ae041e026cbc78309528622a28a2f6975b /app-office/mdbtools/mdbtools-0.6_pre1-r1.ebuild | |
parent | QA: remove unneeded dependency over automake 1.4; remove unneeded src_unpack;... (diff) | |
download | historical-118f83cb9ad5739fc13046af92279b28faac5e6c.tar.gz historical-118f83cb9ad5739fc13046af92279b28faac5e6c.tar.bz2 historical-118f83cb9ad5739fc13046af92279b28faac5e6c.zip |
Remove old version as well.
Package-Manager: portage-2.2.0_alpha6/cvs/Linux x86_64
Diffstat (limited to 'app-office/mdbtools/mdbtools-0.6_pre1-r1.ebuild')
-rw-r--r-- | app-office/mdbtools/mdbtools-0.6_pre1-r1.ebuild | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/app-office/mdbtools/mdbtools-0.6_pre1-r1.ebuild b/app-office/mdbtools/mdbtools-0.6_pre1-r1.ebuild deleted file mode 100644 index 6dee0c3ae542..000000000000 --- a/app-office/mdbtools/mdbtools-0.6_pre1-r1.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/mdbtools/mdbtools-0.6_pre1-r1.ebuild,v 1.19 2008/12/30 09:29:57 graaff Exp $ - -WANT_AUTOMAKE="1.7" - -inherit eutils autotools - -MY_P=${P/_/} -S="${WORKDIR}/${MY_P}" - -DESCRIPTION="A set of libraries and utilities for reading Microsoft Access database (MDB) files" -HOMEPAGE="http://sourceforge.net/projects/mdbtools" -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" - -IUSE="gnome odbc" -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_unpack() { - unpack ${A} - cd "${S}" - - epatch "${FILESDIR}"/${P}-gcc34.patch - epatch "${FILESDIR}"/${P}-gcc41.patch - epatch "${FILESDIR}"/${P}-as-needed.patch - epatch "${FILESDIR}"/${P}-strlen.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_compile() { - local myconf - use odbc && myconf="${myconf} --with-unixodbc=/usr" - - econf --enable-sql \ - ${myconf} || die "configure failed" - - emake || die "Compilation failed" -} - -src_install() { - make 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 -} |