2024-03-17 23:38:13 +03:00
|
|
|
# Copyright 1999-2024 Gentoo Authors
|
2017-09-02 20:43:02 +03:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2023-03-12 14:54:47 +03:00
|
|
|
EAPI=8
|
|
|
|
|
|
|
|
inherit autotools
|
2017-09-02 20:43:02 +03:00
|
|
|
|
2024-03-17 23:38:13 +03:00
|
|
|
DESCRIPTION="Shell interface to network sockets"
|
|
|
|
HOMEPAGE="https://mj.ucw.cz/sw/"
|
|
|
|
SRC_URI="https://mj.ucw.cz/download/net/${P}.tar.gz"
|
2023-03-12 14:54:47 +03:00
|
|
|
|
2017-09-02 20:43:02 +03:00
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
2023-03-12 14:54:47 +03:00
|
|
|
KEYWORDS="amd64 sparc x86"
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
default
|
|
|
|
|
|
|
|
# Clang 16, bug #900256
|
|
|
|
eautoreconf
|
|
|
|
}
|
2017-09-02 20:43:02 +03:00
|
|
|
|
2020-02-23 01:13:57 +03:00
|
|
|
src_install() {
|
2023-03-12 14:54:47 +03:00
|
|
|
dobin ${PN}
|
|
|
|
doman ${PN}.1
|
2017-09-02 20:43:02 +03:00
|
|
|
einstalldocs
|
|
|
|
}
|