summaryrefslogtreecommitdiff
blob: d49bf549fc1932590afc999ea8296e9d34eaed0c (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
32
33
34
35
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit toolchain-funcs

DESCRIPTION="Tools to manipulate BSD TCP/IP stream sockets"
HOMEPAGE="http://web.purplefrog.com/~thoth/netpipes/netpipes.html"
SRC_URI="http://web.purplefrog.com/~thoth/netpipes/ftp/${P}-export.tar.gz"
LICENSE="GPL-2+"

SLOT="0"
KEYWORDS="amd64 x86"

S="${WORKDIR}/${P}-export"

PATCHES=( "${FILESDIR}/${P}"-string.patch )

src_prepare() {
	default
	sed -i \
		-e 's:CFLAGS =:CFLAGS +=:' \
		-e '/ -o /s:${CFLAGS}:$(CFLAGS) $(LDFLAGS):g' \
		Makefile || die
}

src_compile() {
	emake CC=$(tc-getCC)
}

src_install() {
	dodir /usr/share/man
	emake INSTROOT="${D}"/usr INSTMAN="${D}"/usr/share/man install
}