47 lines
1.2 KiB
Bash
47 lines
1.2 KiB
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat6/netcat6-1.0-r2.ebuild,v 1.13 2013/12/04 03:21:59 radhermit Exp $
|
|
|
|
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 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 )
|
|
!net-analyzer/netcat"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
S=${WORKDIR}/nc6-${PV}
|
|
|
|
DOCS=( AUTHORS BUGS README NEWS TODO CREDITS ChangeLog )
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/netcat6-1.0-unix-sockets.patch
|
|
epatch "${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
|
|
}
|