blob: fd3351ca7cd4bb756d83e2d11e63be7f240db1c8 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/perl-core/libnet/libnet-1.21.ebuild,v 1.12 2008/04/23 14:50:41 tove Exp $
inherit perl-module
DESCRIPTION="A URI Perl Module"
HOMEPAGE="http://search.cpan.org/~gbarr/"
SRC_URI="mirror://cpan/authors/id/G/GB/GBARR/${P}.tar.gz"
LICENSE="Artistic"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd"
IUSE="sasl"
SRC_TEST="do"
DEPEND="dev-lang/perl
sasl? ( dev-perl/Authen-SASL )"
src_unpack() {
perl-module_src_unpack
cp "${FILESDIR}"/libnet.cfg "${S}"
}
|