2a32f668d3
dependency for scheduled update of net/p5-Net-Twitter to 3.05003. OAuth is "An open protocol to allow secure API authentication in a simple and standard method from desktop and web applications." In practical terms, OAuth is a mechanism for a Consumer to request protected resources from a Service Provider on behalf of a user. Net::OAuth provides: * classes that encapsulate OAuth messages (requests and responses) * message signing * message serialization and parsing. * 2-legged requests (aka. tokenless requests, aka. consumer requests) Net::OAuth does not provide: * Consumer or Service Provider encapsulation * token/nonce/key storage/management Please refer to the OAuth spec: http://oauth.net/documentation/spec
26 lines
850 B
Makefile
26 lines
850 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2009/09/16 19:40:03 sno Exp $
|
|
#
|
|
|
|
DISTNAME= Net-OAuth-0.19
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= net perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Net/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://search.cpan.org/dist/Net-OAuth/
|
|
COMMENT= Perl5 extension for OAuth protocol support
|
|
LICENSE= ${PERL5_LICENSE}
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
DEPENDS+= p5-Class-Accessor>=0.31:../../devel/p5-Class-Accessor
|
|
DEPENDS+= p5-Class-Data-Inheritable>=0.06:../../devel/p5-Class-Data-Inheritable
|
|
DEPENDS+= p5-Digest-HMAC>=1.01:../../security/p5-Digest-HMAC
|
|
DEPENDS+= p5-UNIVERSAL-require>=0.10:../../devel/p5-UNIVERSAL-require
|
|
DEPENDS+= p5-URI>=1.31:../../www/p5-URI
|
|
|
|
PERL5_PACKLIST= auto/Net/OAuth/.packlist
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|