diff options
author | clsung <clsung@FreeBSD.org> | 2008-03-22 08:42:55 +0800 |
---|---|---|
committer | clsung <clsung@FreeBSD.org> | 2008-03-22 08:42:55 +0800 |
commit | 96a572459c584b112ba9e194298bbd2ddeebec7b (patch) | |
tree | 35c7e1aaae4fcf0e5d051d5fcef6f701ca5e3083 /net | |
parent | 82dc3ab2ab9d2fc9d485486963947df8a6e86391 (diff) | |
download | freebsd-ports-gnome-96a572459c584b112ba9e194298bbd2ddeebec7b.tar.gz freebsd-ports-gnome-96a572459c584b112ba9e194298bbd2ddeebec7b.tar.zst freebsd-ports-gnome-96a572459c584b112ba9e194298bbd2ddeebec7b.zip |
Jifty is a full-stack web framework. It provides an optional REST interface
for applications. Using this module, you can interact with that
REST interface to write client-side utilities.
You can use this module directly, but you'll be better off subclassing it.
This module also provides a number of convenient methods for writing
short scripts. For example, passing use_config => 1 to new will look at
the config file for the username and password (or SID) of the user.
If neither is available, it will prompt the user for them.
WWW: http://search.cpan.org/dist/Net-Jifty/
Diffstat (limited to 'net')
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/p5-Net-Jifty/Makefile | 32 | ||||
-rw-r--r-- | net/p5-Net-Jifty/distinfo | 3 | ||||
-rw-r--r-- | net/p5-Net-Jifty/pkg-descr | 12 | ||||
-rw-r--r-- | net/p5-Net-Jifty/pkg-plist | 5 |
5 files changed, 53 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index b4d9031f853b..5680ad3cb650 100644 --- a/net/Makefile +++ b/net/Makefile @@ -498,6 +498,7 @@ SUBDIR += p5-Net-IPTrie SUBDIR += p5-Net-Ident SUBDIR += p5-Net-Interface + SUBDIR += p5-Net-Jifty SUBDIR += p5-Net-LDAP-Express SUBDIR += p5-Net-LDAP-LDAPhash SUBDIR += p5-Net-Libdnet diff --git a/net/p5-Net-Jifty/Makefile b/net/p5-Net-Jifty/Makefile new file mode 100644 index 000000000000..54615e806764 --- /dev/null +++ b/net/p5-Net-Jifty/Makefile @@ -0,0 +1,32 @@ +# New ports collection makefile for: p5-Net-Jifty +# Date created: 2008-03-18 +# Whom: Cheng-Lung Sung <clsung@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= Net-Jifty +PORTVERSION= 0.06 +CATEGORIES= net perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= clsung@FreeBSD.org +COMMENT= Perl interface to online Jifty applications + +RUN_DEPENDS= p5-libwww>=0:${PORTSDIR}/www/p5-libwww \ + ${SITE_PERL}/${PERL_ARCH}/Term/ReadKey.pm:${PORTSDIR}/devel/p5-Term-ReadKey \ + ${SITE_PERL}/${PERL_ARCH}/DateTime.pm:${PORTSDIR}/devel/p5-DateTime \ + ${SITE_PERL}/URI.pm:${PORTSDIR}/net/p5-URI \ + ${SITE_PERL}/YAML.pm:${PORTSDIR}/textproc/p5-YAML \ + ${SITE_PERL}/Email/Address.pm:${PORTSDIR}/mail/p5-Email-Address \ + ${SITE_PERL}/Hash/Merge.pm:${PORTSDIR}/textproc/p5-Hash-Merge \ + ${SITE_PERL}/Path/Class.pm:${PORTSDIR}/devel/p5-Path-Class \ + ${SITE_PERL}/Moose.pm:${PORTSDIR}/devel/p5-Moose +BUILD_DEPENDS= ${RUN_DEPENDS} + +PERL_CONFIGURE= yes + +MAN3= Net::Jifty.3 + +.include <bsd.port.mk> diff --git a/net/p5-Net-Jifty/distinfo b/net/p5-Net-Jifty/distinfo new file mode 100644 index 000000000000..485092b7c122 --- /dev/null +++ b/net/p5-Net-Jifty/distinfo @@ -0,0 +1,3 @@ +MD5 (Net-Jifty-0.06.tar.gz) = 3906d7bd548b4bd4965ab80d1f6b0728 +SHA256 (Net-Jifty-0.06.tar.gz) = fd24533c734909a082a43c8ef883d310f33d9b5a45502aae9467628f6015e50e +SIZE (Net-Jifty-0.06.tar.gz) = 29579 diff --git a/net/p5-Net-Jifty/pkg-descr b/net/p5-Net-Jifty/pkg-descr new file mode 100644 index 000000000000..295b8819bc29 --- /dev/null +++ b/net/p5-Net-Jifty/pkg-descr @@ -0,0 +1,12 @@ +Jifty is a full-stack web framework. It provides an optional REST interface +for applications. Using this module, you can interact with that +REST interface to write client-side utilities. + +You can use this module directly, but you'll be better off subclassing it. + +This module also provides a number of convenient methods for writing +short scripts. For example, passing use_config => 1 to new will look at +the config file for the username and password (or SID) of the user. +If neither is available, it will prompt the user for them. + +WWW: http://search.cpan.org/dist/Net-Jifty/ diff --git a/net/p5-Net-Jifty/pkg-plist b/net/p5-Net-Jifty/pkg-plist new file mode 100644 index 000000000000..6fad1554814d --- /dev/null +++ b/net/p5-Net-Jifty/pkg-plist @@ -0,0 +1,5 @@ +%%SITE_PERL%%/Net/Jifty.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/Jifty/.packlist +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/Jifty +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net +@dirrmtry %%SITE_PERL%%/Net |