blob: f325cd1cdc2ab43be7f875b779ad6a0460e9c8c0 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils autotools toolchain-funcs
DESCRIPTION="netcat clone with better IPv6 support, improved code, etc..."
HOMEPAGE="http://netcat6.sourceforge.net/"
SRC_URI="ftp://ftp.deepspace6.net/pub/ds6/sources/nc6/nc6-${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ppc ~ppc64 s390 sh sparc x86 ~amd64-linux ~arm-linux ~x86-linux"
IUSE="ipv6 nls bluetooth"
# need to block netcat as we provide the "nc" file now too
DEPEND="
bluetooth? ( net-wireless/bluez )
"
RDEPEND="
${DEPEND}
!net-analyzer/netcat
"
S=${WORKDIR}/nc6-${PV}
DOCS=( AUTHORS BUGS README NEWS TODO CREDITS ChangeLog )
src_prepare() {
epatch \
"${FILESDIR}"/${P}-unix-sockets.patch \
"${FILESDIR}"/${P}-automake-1.14.patch
AM_OPTS="--force-missing" eautoreconf
}
src_configure() {
econf \
$(use_enable ipv6) \
$(use_enable bluetooth bluez) \
$(use_enable nls)
}
src_compile() {
emake AR=$(tc-getAR)
}
src_install() {
default
dodir /usr/bin
dosym /usr/bin/nc6 /usr/bin/nc
}
|