summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-04-20 14:23:59 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-04-20 14:23:59 +0000
commitde2ec1d15677dae3894c1f3b94a55510560e45bc (patch)
treea00bee4f4c7e27c1d2b1fc9f1d0000ab75489318 /app-office
parentLinux patch 3.19.5 (diff)
downloadgentoo-2-de2ec1d15677dae3894c1f3b94a55510560e45bc.tar.gz
gentoo-2-de2ec1d15677dae3894c1f3b94a55510560e45bc.tar.bz2
gentoo-2-de2ec1d15677dae3894c1f3b94a55510560e45bc.zip
Remove old.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'app-office')
-rw-r--r--app-office/mdbtools/ChangeLog6
-rw-r--r--app-office/mdbtools/mdbtools-0.6_pre2-r3.ebuild67
-rw-r--r--app-office/mdbtools/mdbtools-0.7.ebuild46
3 files changed, 5 insertions, 114 deletions
diff --git a/app-office/mdbtools/ChangeLog b/app-office/mdbtools/ChangeLog
index 9158ce743625..799155d800ac 100644
--- a/app-office/mdbtools/ChangeLog
+++ b/app-office/mdbtools/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-office/mdbtools
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/mdbtools/ChangeLog,v 1.65 2015/03/02 09:27:55 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/mdbtools/ChangeLog,v 1.66 2015/04/20 14:23:59 mrueg Exp $
+
+ 20 Apr 2015; Manuel Rüger <mrueg@gentoo.org> -mdbtools-0.6_pre2-r3.ebuild,
+ -mdbtools-0.7.ebuild:
+ Remove old.
02 Mar 2015; Agostino Sarubbo <ago@gentoo.org> mdbtools-0.7.1.ebuild:
Stable for ppc, wrt bug #521896
diff --git a/app-office/mdbtools/mdbtools-0.6_pre2-r3.ebuild b/app-office/mdbtools/mdbtools-0.6_pre2-r3.ebuild
deleted file mode 100644
index 1cddcdfc98b1..000000000000
--- a/app-office/mdbtools/mdbtools-0.6_pre2-r3.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2012 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-r3.ebuild,v 1.2 2012/05/03 20:00:39 jdhore Exp $
-
-EAPI="2"
-
-# Will fail with 1.10+ because of config.rpath
-WANT_AUTOMAKE="1.9"
-
-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}
- virtual/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
- epatch "${FILESDIR}"/${P}-odbc_definitions.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 gnome gmdb2) \
- $(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
-}
diff --git a/app-office/mdbtools/mdbtools-0.7.ebuild b/app-office/mdbtools/mdbtools-0.7.ebuild
deleted file mode 100644
index 831e1bcf4ad1..000000000000
--- a/app-office/mdbtools/mdbtools-0.7.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/mdbtools/mdbtools-0.7.ebuild,v 1.2 2013/10/14 13:30:15 pinkbyte Exp $
-
-EAPI="5"
-
-AUTOTOOLS_AUTORECONF=1
-AUTOTOOLS_IN_SOURCE_BUILD=1 # needed for proper man generation
-inherit autotools-utils
-
-DESCRIPTION="A 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 ~x86-fbsd"
-
-IUSE="gnome odbc static-libs"
-
-RDEPEND="dev-libs/glib:2
- sys-libs/ncurses
- sys-libs/readline
- gnome? (
- gnome-base/libglade:2.0
- gnome-base/libgnomeui
- )
- odbc? ( >=dev-db/unixODBC-2.0 )"
-DEPEND="${RDEPEND}
- app-text/txt2man
- sys-devel/flex
- virtual/pkgconfig
- virtual/yacc"
-
-DOCS=( AUTHORS ChangeLog HACKING NEWS README TODO )
-
-PATCHES=( "${FILESDIR}/${PN}-0.7.1-parallel-make.patch" )
-
-src_configure() {
- local myeconfargs=(
- --disable-gtk-doc
- $(use_enable gnome gmdb2)
- $(use odbc && echo "--with-unixodbc=${EPREFIX}/usr")
- )
- autotools-utils_src_configure
-}