Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/smbc/
Date: Tue, 04 Jun 2019 04:45:21
Message-Id: 1559623482.24303abdcf984e6ccc76d9782a84695a62ee86db.dilfridge@gentoo
1 commit: 24303abdcf984e6ccc76d9782a84695a62ee86db
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 4 04:40:59 2019 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 4 04:44:42 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24303abd
7
8 net-misc/smbc: Remove old
9
10 Closes: https://github.com/gentoo/gentoo/pull/12056
11 Package-Manager: Portage-2.3.67, Repoman-2.3.13
12 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
13
14 net-misc/smbc/smbc-1.2.2-r2.ebuild | 40 --------------------------------------
15 1 file changed, 40 deletions(-)
16
17 diff --git a/net-misc/smbc/smbc-1.2.2-r2.ebuild b/net-misc/smbc/smbc-1.2.2-r2.ebuild
18 deleted file mode 100644
19 index 777beb5ac04..00000000000
20 --- a/net-misc/smbc/smbc-1.2.2-r2.ebuild
21 +++ /dev/null
22 @@ -1,40 +0,0 @@
23 -# Copyright 1999-2019 Gentoo Authors
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI="2"
27 -
28 -inherit autotools eutils
29 -
30 -DESCRIPTION="Text mode (ncurses) SMB network commander. Features: resume and UTF-8"
31 -HOMEPAGE="https://sourceforge.net/projects/smbc/"
32 -SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
33 -
34 -LICENSE="GPL-2+"
35 -SLOT="0"
36 -KEYWORDS="~ppc ~x86"
37 -IUSE="nls debug"
38 -
39 -DEPEND="net-fs/samba
40 - sys-libs/ncurses
41 - dev-libs/popt
42 - nls? ( sys-devel/gettext )"
43 -RDEPEND="${DEPEND}"
44 -
45 -src_prepare() {
46 - epatch "${FILESDIR}"/${P}-cflags.patch
47 - epatch "${FILESDIR}"/${P}-size_t.patch
48 - eautoreconf
49 -}
50 -
51 -src_configure() {
52 - econf \
53 - $(use_enable nls) \
54 - $(use_with debug) \
55 - || die "econf failed"
56 -}
57 -
58 -src_install() {
59 - emake DESTDIR="${D}" install || die "emake install failed"
60 - mkdir -p "${D}/usr/share/doc"
61 - mv -v "${D}/usr/share/"{${PN},doc/${PF}}
62 -}