Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/unixODBC/
Date: Tue, 06 Jun 2017 12:51:22
Message-Id: 1496753243.e2a606128c7324399dc3a486c3a7363e1b4f79b2.pacho@gentoo
1 commit: e2a606128c7324399dc3a486c3a7363e1b4f79b2
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 6 12:47:23 2017 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 6 12:47:23 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2a60612
7
8 dev-db/unixODBC: Drop old
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 dev-db/unixODBC/unixODBC-2.3.2-r2.ebuild | 52 --------------------------------
13 1 file changed, 52 deletions(-)
14
15 diff --git a/dev-db/unixODBC/unixODBC-2.3.2-r2.ebuild b/dev-db/unixODBC/unixODBC-2.3.2-r2.ebuild
16 deleted file mode 100644
17 index 300a544a84e..00000000000
18 --- a/dev-db/unixODBC/unixODBC-2.3.2-r2.ebuild
19 +++ /dev/null
20 @@ -1,52 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -inherit libtool autotools-multilib eutils
26 -
27 -DESCRIPTION="A complete ODBC driver manager"
28 -HOMEPAGE="http://www.unixodbc.org/"
29 -SRC_URI="http://ftp.unixodbc.org/pub/${PN}/${P}.tar.gz"
30 -
31 -LICENSE="GPL-2 LGPL-2.1"
32 -SLOT="0"
33 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
34 -IUSE="+minimal odbcmanual static-libs unicode"
35 -
36 -RDEPEND="|| (
37 - dev-libs/libltdl:0[${MULTILIB_USEDEP}]
38 - >=sys-devel/libtool-2.4.2-r1[${MULTILIB_USEDEP}]
39 - )
40 - >=sys-libs/readline-6.2_p5-r1:0=[${MULTILIB_USEDEP}]
41 - >=sys-libs/ncurses-5.9-r3:0=[${MULTILIB_USEDEP}]
42 - >=virtual/libiconv-0-r1[${MULTILIB_USEDEP}]
43 - abi_x86_32? ( !app-emulation/emul-linux-x86-db[-abi_x86_32(-)] )"
44 -DEPEND="${RDEPEND}
45 - sys-devel/flex"
46 -
47 -DOCS="AUTHORS ChangeLog NEWS README"
48 -MULTILIB_CHOST_TOOLS=( /usr/bin/odbc_config )
49 -MULTILIB_WRAPPED_HEADERS=( /usr/include/unixodbc_conf.h )
50 -
51 -src_configure() {
52 - # --enable-driver-conf is --enable-driverc as per configure.in
53 - myeconfargs=(
54 - --sysconfdir="${EPREFIX}"/etc/${PN}
55 - --enable-iconv
56 - $(use_enable static-libs static)
57 - $(use_enable !minimal drivers)
58 - $(use_enable !minimal driverc)
59 - $(use_with unicode iconv-char-enc UTF8)
60 - $(use_with unicode iconv-ucode-enc UTF16LE)
61 - )
62 - autotools-multilib_src_configure
63 -}
64 -
65 -multilib_src_install_all() {
66 - einstalldocs
67 -
68 - use prefix && dodoc README*
69 - use odbcmanual && dohtml -a css,gif,html,sql,vsd -r doc/*
70 -
71 - find "${ED}" -name '*.la' -exec sed -i -e "/^dependency_libs/s:=.*:='':" {} +
72 -}