diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2019-06-04 06:40:59 +0200 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2019-06-04 06:44:42 +0200 |
commit | 24303abdcf984e6ccc76d9782a84695a62ee86db (patch) | |
tree | e254ef2f900f9062f57b5f3aa7f6cb9f809d2e43 /net-misc/smbc | |
parent | net-misc/smbc: EAPI=7 bump (diff) | |
download | gentoo-24303abdcf984e6ccc76d9782a84695a62ee86db.tar.gz gentoo-24303abdcf984e6ccc76d9782a84695a62ee86db.tar.bz2 gentoo-24303abdcf984e6ccc76d9782a84695a62ee86db.zip |
net-misc/smbc: Remove old
Closes: https://github.com/gentoo/gentoo/pull/12056
Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'net-misc/smbc')
-rw-r--r-- | net-misc/smbc/smbc-1.2.2-r2.ebuild | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/net-misc/smbc/smbc-1.2.2-r2.ebuild b/net-misc/smbc/smbc-1.2.2-r2.ebuild deleted file mode 100644 index 777beb5ac048..000000000000 --- a/net-misc/smbc/smbc-1.2.2-r2.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="2" - -inherit autotools eutils - -DESCRIPTION="Text mode (ncurses) SMB network commander. Features: resume and UTF-8" -HOMEPAGE="https://sourceforge.net/projects/smbc/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tgz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~ppc ~x86" -IUSE="nls debug" - -DEPEND="net-fs/samba - sys-libs/ncurses - dev-libs/popt - nls? ( sys-devel/gettext )" -RDEPEND="${DEPEND}" - -src_prepare() { - epatch "${FILESDIR}"/${P}-cflags.patch - epatch "${FILESDIR}"/${P}-size_t.patch - eautoreconf -} - -src_configure() { - econf \ - $(use_enable nls) \ - $(use_with debug) \ - || die "econf failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - mkdir -p "${D}/usr/share/doc" - mv -v "${D}/usr/share/"{${PN},doc/${PF}} -} |