summaryrefslogtreecommitdiff
path: root/app-office/mdbtools/mdbtools-0.7.1-r2.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-07-24 11:59:22 +0100
committerV3n3RiX <venerix@redcorelinux.org>2021-07-24 11:59:22 +0100
commit6abaca02d36f161c81e2d5ee467719a89f88b2c5 (patch)
tree3caa7c096e2eccd186e20aa71bda508c5c50fb23 /app-office/mdbtools/mdbtools-0.7.1-r2.ebuild
parentb49088575eb777ced2551f484da86317332d6087 (diff)
gentoo resync (2) : 24.07.2021
Diffstat (limited to 'app-office/mdbtools/mdbtools-0.7.1-r2.ebuild')
-rw-r--r--app-office/mdbtools/mdbtools-0.7.1-r2.ebuild58
1 files changed, 0 insertions, 58 deletions
diff --git a/app-office/mdbtools/mdbtools-0.7.1-r2.ebuild b/app-office/mdbtools/mdbtools-0.7.1-r2.ebuild
deleted file mode 100644
index f64c8aa4c17e..000000000000
--- a/app-office/mdbtools/mdbtools-0.7.1-r2.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="Set of libraries and utilities for reading Microsoft Access database (MDB) files"
-HOMEPAGE="http://mdbtools.sourceforge.net"
-SRC_URI="https://github.com/brianb/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 sparc x86"
-IUSE="odbc"
-
-BDEPEND="
- app-text/txt2man
- sys-devel/flex
- virtual/pkgconfig
- virtual/yacc
-"
-RDEPEND="
- dev-libs/glib:2
- sys-libs/ncurses:0=
- sys-libs/readline:0=
- odbc? ( >=dev-db/unixODBC-2.0 )"
-DEPEND="${RDEPEND}"
-
-DOCS=( AUTHORS ChangeLog HACKING NEWS README TODO )
-
-PATCHES=( "${FILESDIR}/${P}-parallel-make.patch" )
-
-src_prepare() {
- default
-
- # bug #697568
- sed -i -e "s:/lib\":/$(get_libdir)\":" configure.ac || die
-
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- --disable-gtk-doc
- --disable-gmdb2
- --disable-static
- $(use odbc && echo "--with-unixodbc=${EPREFIX}/usr")
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- default
-
- find "${ED}" -name '*.la' -delete || die
-}