Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-dialup/lrzsz/
Date: Tue, 09 Oct 2018 08:55:23
Message-Id: 1539075303.8d545ad97bb8279370296ad73c90cc8b8b7130d9.zlogene@gentoo
1 commit: 8d545ad97bb8279370296ad73c90cc8b8b7130d9
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 9 08:55:03 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 9 08:55:03 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d545ad9
7
8 net-dialup/lrzsz: Drop old
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11 Package-Manager: Portage-2.3.49, Repoman-2.3.11
12
13 net-dialup/lrzsz/lrzsz-0.12.20-r3.ebuild | 61 --------------------------------
14 1 file changed, 61 deletions(-)
15
16 diff --git a/net-dialup/lrzsz/lrzsz-0.12.20-r3.ebuild b/net-dialup/lrzsz/lrzsz-0.12.20-r3.ebuild
17 deleted file mode 100644
18 index 8449f89be7a..00000000000
19 --- a/net-dialup/lrzsz/lrzsz-0.12.20-r3.ebuild
20 +++ /dev/null
21 @@ -1,61 +0,0 @@
22 -# Copyright 1999-2017 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI="2"
26 -
27 -inherit autotools flag-o-matic eutils toolchain-funcs
28 -
29 -DESCRIPTION="Communication package providing the X, Y, and ZMODEM file transfer protocols"
30 -HOMEPAGE="https://www.ohse.de/uwe/software/lrzsz.html"
31 -SRC_URI="https://www.ohse.de/uwe/releases/${P}.tar.gz"
32 -
33 -LICENSE="GPL-2"
34 -SLOT="0"
35 -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
36 -IUSE="nls"
37 -
38 -DEPEND="nls? ( virtual/libintl )"
39 -RDEPEND="${DEPEND}"
40 -
41 -src_prepare() {
42 - epatch "${FILESDIR}"/${PN}-autotools.patch
43 - epatch "${FILESDIR}"/${PN}-implicit-decl.patch
44 - epatch "${FILESDIR}"/${P}-automake-1.12.patch
45 - epatch "${FILESDIR}"/${P}-automake-1.13.patch
46 -
47 - # automake is unhappy if this is missing
48 - >> config.rpath
49 - # This is too old. Remove it so automake puts in a newer copy.
50 - rm -f missing
51 - # Autoheader does not like seeing this file.
52 - rm -f acconfig.h
53 -
54 - eautoreconf
55 -}
56 -
57 -src_configure() {
58 - tc-export CC
59 - append-flags -Wstrict-prototypes
60 - econf $(use_enable nls) || die "econf failed"
61 -}
62 -
63 -src_test() {
64 - #Don't use check target.
65 - #See bug #120748 before changing this function.
66 - make vcheck || die "tests failed"
67 -}
68 -
69 -src_install() {
70 - emake \
71 - DESTDIR="${D}" \
72 - install || die "make install failed"
73 -
74 - local x
75 - for x in {r,s}{b,x,z} ; do
76 - dosym l${x} /usr/bin/${x}
77 - dosym l${x:0:1}z.1 /usr/share/man/man1/${x}.1
78 - [ "${x:1:1}" = "z" ] || dosym l${x:0:1}z.1 /usr/share/man/man1/l${x}.1
79 - done
80 -
81 - dodoc AUTHORS COMPATABILITY ChangeLog NEWS README* THANKS TODO
82 -}