You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-perl/Net-DNS/Net-DNS-0.660.0.ebuild

46 lines
1.1 KiB

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Net-DNS/Net-DNS-0.660.0.ebuild,v 1.5 2013/06/24 23:49:32 zlogene Exp $
EAPI=4
MODULE_AUTHOR=OLAF
MODULE_VERSION=0.66
inherit toolchain-funcs perl-module
DESCRIPTION="Perl Net::DNS - Perl DNS Resolver Module"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="ipv6 test"
RDEPEND="virtual/perl-Digest-MD5
dev-perl/Digest-HMAC
virtual/perl-Digest-SHA
dev-perl/Net-IP
ipv6? ( dev-perl/IO-Socket-INET6 )
virtual/perl-MIME-Base64"
DEPEND="${RDEPEND}
test? (
virtual/perl-Test-Simple
dev-perl/Test-Pod
)"
PATCHES=( ${FILESDIR}/${PN}-0.64-ar.patch )
SRC_TEST="do"
src_prepare() {
perl-module_src_prepare
mydoc="TODO"
if use ipv6 ; then
myconf="--IPv6-tests"
else
myconf="--no-IPv6-tests"
fi
myconf="${myconf} --no-online-tests"
}
src_compile() {
emake AR="$(tc-getAR)" OTHERLDFLAGS="${LDFLAGS}"
}