summaryrefslogtreecommitdiff
path: root/net-dialup/lrzsz/lrzsz-0.12.20-r3.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-10-22 11:09:47 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-10-22 11:09:47 +0100
commit64e107b9b6058580ff0432107eb37cefb0b2a7d8 (patch)
tree9a44e603e2ae365e2b1fe35ac37f73e830cdee1d /net-dialup/lrzsz/lrzsz-0.12.20-r3.ebuild
parent957235cf19a691360c720f7913672adda4258ed0 (diff)
gentoo resync : 22.10.2018
Diffstat (limited to 'net-dialup/lrzsz/lrzsz-0.12.20-r3.ebuild')
-rw-r--r--net-dialup/lrzsz/lrzsz-0.12.20-r3.ebuild61
1 files changed, 0 insertions, 61 deletions
diff --git a/net-dialup/lrzsz/lrzsz-0.12.20-r3.ebuild b/net-dialup/lrzsz/lrzsz-0.12.20-r3.ebuild
deleted file mode 100644
index 8449f89be7ab..000000000000
--- a/net-dialup/lrzsz/lrzsz-0.12.20-r3.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-
-inherit autotools flag-o-matic eutils toolchain-funcs
-
-DESCRIPTION="Communication package providing the X, Y, and ZMODEM file transfer protocols"
-HOMEPAGE="https://www.ohse.de/uwe/software/lrzsz.html"
-SRC_URI="https://www.ohse.de/uwe/releases/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
-IUSE="nls"
-
-DEPEND="nls? ( virtual/libintl )"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-autotools.patch
- epatch "${FILESDIR}"/${PN}-implicit-decl.patch
- epatch "${FILESDIR}"/${P}-automake-1.12.patch
- epatch "${FILESDIR}"/${P}-automake-1.13.patch
-
- # automake is unhappy if this is missing
- >> config.rpath
- # This is too old. Remove it so automake puts in a newer copy.
- rm -f missing
- # Autoheader does not like seeing this file.
- rm -f acconfig.h
-
- eautoreconf
-}
-
-src_configure() {
- tc-export CC
- append-flags -Wstrict-prototypes
- econf $(use_enable nls) || die "econf failed"
-}
-
-src_test() {
- #Don't use check target.
- #See bug #120748 before changing this function.
- make vcheck || die "tests failed"
-}
-
-src_install() {
- emake \
- DESTDIR="${D}" \
- install || die "make install failed"
-
- local x
- for x in {r,s}{b,x,z} ; do
- dosym l${x} /usr/bin/${x}
- dosym l${x:0:1}z.1 /usr/share/man/man1/${x}.1
- [ "${x:1:1}" = "z" ] || dosym l${x:0:1}z.1 /usr/share/man/man1/l${x}.1
- done
-
- dodoc AUTHORS COMPATABILITY ChangeLog NEWS README* THANKS TODO
-}