blob: 4dd7d36625dfbae0a8e7621fbb8db1a020b7c9ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="FreeBSD Whois Client"
HOMEPAGE="https://www.freebsd.org/"
SRC_URI="http://utenti.gufi.org/~drizzt/codes/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux"
PATCHES=(
"${FILESDIR}/${PN}-1.43.2.1-musl-cdefs.patch"
)
src_install() {
default
mv "${ED}"/usr/share/man/man1/{whois,bsdwhois}.1 || die
mv "${ED}"/usr/bin/{whois,bsdwhois} || die
}
|