Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/freetds/
Date: Mon, 29 Jul 2019 17:31:05
Message-Id: 1564421443.ba4527020543e5ddba7d9cd30894ee68c2aaca1e.asturm@gentoo
1 commit: ba4527020543e5ddba7d9cd30894ee68c2aaca1e
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 29 16:19:14 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 29 17:30:43 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba452702
7
8 dev-db/freetds: Drop unmaintained live ebuild
9
10 Package-Manager: Portage-2.3.69, Repoman-2.3.16
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 dev-db/freetds/freetds-9999.ebuild | 62 --------------------------------------
14 1 file changed, 62 deletions(-)
15
16 diff --git a/dev-db/freetds/freetds-9999.ebuild b/dev-db/freetds/freetds-9999.ebuild
17 deleted file mode 100644
18 index a18ef188436..00000000000
19 --- a/dev-db/freetds/freetds-9999.ebuild
20 +++ /dev/null
21 @@ -1,62 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -inherit autotools git-r3
28 -
29 -DESCRIPTION="Tabular Datastream Library"
30 -HOMEPAGE="https://www.freetds.org/"
31 -EGIT_REPO_URI="https://github.com/FreeTDS/${PN}.git"
32 -
33 -LICENSE="GPL-2"
34 -SLOT="0"
35 -KEYWORDS=""
36 -IUSE="gnutls iconv kerberos libressl mssql iodbc odbc ssl"
37 -RESTRICT="test"
38 -
39 -# sed, grep, and awk are used by the build system and the osql script.
40 -COMMON_DEPEND="sys-apps/sed
41 - sys-apps/grep
42 - virtual/awk
43 - gnutls? ( net-libs/gnutls )
44 - iconv? ( virtual/libiconv )
45 - iodbc? ( dev-db/libiodbc )
46 - kerberos? ( virtual/krb5 )
47 - odbc? ( dev-db/unixODBC )
48 - ssl? (
49 - !libressl? ( dev-libs/openssl:0 )
50 - libressl? ( dev-libs/libressl )
51 - )"
52 -
53 -DEPEND="${COMMON_DEPEND}"
54 -
55 -# bind-tools is needed because the osql script calls "host".
56 -# binutils is for "strings".
57 -RDEPEND="${COMMON_DEPEND}
58 - sys-devel/binutils
59 - net-dns/bind-tools"
60 -
61 -# iODBC and unixODBC are mutually-exclusive choices for
62 -# the ODBC driver manager. Future versions of FreeTDS
63 -# will throw an error if you specify both.
64 -REQUIRED_USE="?? ( iodbc odbc )"
65 -
66 -src_prepare() {
67 - default
68 - eautoreconf
69 -}
70 -
71 -src_configure() {
72 - local myconf=( $(use_with iodbc) )
73 - myconf+=( $(use_with odbc unixodbc "${EPREFIX}/usr") )
74 - myconf+=( $(use_enable iconv libiconv) )
75 - myconf+=( $(use_with iconv libiconv-prefix "${EPREFIX}/usr") )
76 - myconf+=( $(use_enable kerberos krb5) )
77 - myconf+=( $(use_enable mssql msdblib) )
78 - myconf+=( $(use_with gnutls) )
79 - myconf+=( $(use_with ssl openssl "${EPREFIX}/usr") )
80 - myconf+=( --docdir="/usr/share/doc/${PF}" )
81 -
82 - econf "${myconf[@]}"
83 -}