summaryrefslogtreecommitdiff
blob: b0633bc47a2a5b44d9b885349334615d14823e1f (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
36
37
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit toolchain-funcs

DESCRIPTION="A usenet binary autoposter for unix"
HOMEPAGE="http://newspost.unixcab.org/"
SRC_URI="http://newspost.unixcab.org/download/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"

PATCHES=(
	# Should fix some problems with unexpected server replies, cf. bug 185468
	"${FILESDIR}"/${P}-nntp.patch
	"${FILESDIR}"/CAN-2005-0101.patch
	"${FILESDIR}"/${P}-glibc-2.10.patch
)

src_prepare() {
	default

	sed -e "/-strip newspost/d" -i Makefile || die
}

src_compile() {
	emake CC="$(tc-getCC)" LIBS="${LDFLAGS}" main
}

src_install() {
	dobin newspost
	doman man/man1/newspost.1
	dodoc CHANGES README
}