mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-23 18:38:08 -07:00
Upstream: - Use kernel to select empty port - Dont' run command when port is empty - Implement hack on windows to determine port used Package-Manager: Portage-2.3.5, Repoman-2.3.2
32 lines
630 B
Bash
32 lines
630 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
DIST_AUTHOR=TOKUHIROM
|
|
DIST_VERSION=2.19
|
|
inherit perl-module
|
|
|
|
DESCRIPTION="Testing TCP program"
|
|
|
|
SLOT="0"
|
|
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
|
|
IUSE="test"
|
|
|
|
RDEPEND="
|
|
virtual/perl-IO
|
|
virtual/perl-IO-Socket-IP
|
|
>=dev-perl/Test-SharedFork-0.290.0
|
|
virtual/perl-Test-Simple
|
|
>=virtual/perl-IO-1.230.0
|
|
virtual/perl-Time-HiRes
|
|
"
|
|
DEPEND="${RDEPEND}
|
|
>=virtual/perl-ExtUtils-MakeMaker-6.640.0
|
|
test? (
|
|
>=virtual/perl-Test-Simple-0.980.0
|
|
virtual/perl-File-Temp
|
|
virtual/perl-Socket
|
|
)
|
|
"
|