blob: 6a03bc143d2454d8adf14bf03c5feaae8895d7ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="A UCSPI implementation for Unix domain sockets"
HOMEPAGE="https://untroubled.org/ucspi-unix/"
SRC_URI="https://untroubled.org/ucspi-unix/archive/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="amd64 ppc ~riscv ~sparc x86"
IUSE=""
# We statically link bglibs.
DEPEND=">=dev-libs/bglibs-2.04"
# Block other unixcat installers. #480546
RDEPEND="!net-analyzer/mk-livestatus"
src_configure() {
echo "$(tc-getCC) ${CFLAGS} -D_GNU_SOURCE" > conf-cc || die
echo "$(tc-getCC) ${LDFLAGS}" > conf-ld || die
}
src_install() {
dobin unixserver unixclient unixcat
doman unixserver.1 unixclient.1
dodoc ANNOUNCEMENT ChangeLog NEWS PROTOCOL README TODO
}
|