Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 22 Jan 2013 00:58:35 +0000 (UTC)
From:      Jun Kuriyama <kuriyama@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r310791 - in head/www: . p5-Amon2-Plugin-Web-MobileAgent
Message-ID:  <201301220058.r0M0wZdS029614@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kuriyama
Date: Tue Jan 22 00:58:34 2013
New Revision: 310791
URL: http://svnweb.freebsd.org/changeset/ports/310791

Log:
  This plugin integrates HTTP::MobileAgent and Amon2.
  
  This module adds $c->mobile_agent() method to the context object. The
  agent class is generated by $c->req.
  
  WWW: http://search.cpan.org/dist/Amon2-Plugin-Web-MobileAgent/

Added:
  head/www/p5-Amon2-Plugin-Web-MobileAgent/
  head/www/p5-Amon2-Plugin-Web-MobileAgent/Makefile   (contents, props changed)
  head/www/p5-Amon2-Plugin-Web-MobileAgent/distinfo   (contents, props changed)
  head/www/p5-Amon2-Plugin-Web-MobileAgent/pkg-descr   (contents, props changed)
  head/www/p5-Amon2-Plugin-Web-MobileAgent/pkg-plist   (contents, props changed)
Modified:
  head/www/Makefile

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Tue Jan 22 00:56:09 2013	(r310790)
+++ head/www/Makefile	Tue Jan 22 00:58:34 2013	(r310791)
@@ -606,6 +606,7 @@
     SUBDIR += p5-Amon2
     SUBDIR += p5-Amon2-Lite
     SUBDIR += p5-Amon2-Plugin-LogDispatch
+    SUBDIR += p5-Amon2-Plugin-Web-MobileAgent
     SUBDIR += p5-Any-Template
     SUBDIR += p5-AnyEvent-HTTP
     SUBDIR += p5-AnyEvent-HTTP-LWP-UserAgent

Added: head/www/p5-Amon2-Plugin-Web-MobileAgent/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/p5-Amon2-Plugin-Web-MobileAgent/Makefile	Tue Jan 22 00:58:34 2013	(r310791)
@@ -0,0 +1,38 @@
+# $FreeBSD$
+
+PORTNAME=	Amon2-Plugin-Web-MobileAgent
+PORTVERSION=	0.09
+CATEGORIES=	www perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	kuriyama@FreeBSD.org
+COMMENT=	Perl extension of HTTP::MobileAgent plugin for Amon2
+
+RUN_DEPENDS=	\
+	p5-Amon2>=3.66:${PORTSDIR}/www/p5-Amon2 \
+	ja-p5-Encode-JP-Mobile>=0.29:${PORTSDIR}/japanese/p5-Encode-JP-Mobile \
+	p5-HTTP-MobileAgent>0:${PORTSDIR}/www/p5-HTTP-MobileAgent \
+	p5-HTTP-MobileAgent-Plugin-Charset>0:${PORTSDIR}/www/p5-HTTP-MobileAgent-Plugin-Charset \
+	p5-Lingua-JA-Regular-Unicode>0:${PORTSDIR}/japanese/p5-Lingua-JA-Regular-Unicode
+BUILD_DEPENDS=	${RUN_DEPENDS}
+TEST_DEPENDS=	\
+	p5-Test-Requires>0:${PORTSDIR}/devel/p5-Test-Requires \
+	p5-Tiffany>0:${PORTSDIR}/textproc/p5-Tiffany \
+	p5-Amon2-DBI>0:${PORTSDIR}/databases/p5-Amon2-DBI \
+	p5-LWP-Protocol-PSGI>0:${PORTSDIR}/www/p5-LWP-Protocol-PSGI \
+	p5-HTML-FillInForm-Lite>0:${PORTSDIR}/www/p5-HTML-FillInForm-Lite \
+	p5-HTTP-Session>0:${PORTSDIR}/www/p5-HTTP-Session \
+	p5-Plack-Middleware-ReverseProxy>0:${PORTSDIR}/www/p5-Plack-Middleware-ReverseProxy \
+	p5-Test-WWW-Mechanize-PSGI>0:${PORTSDIR}/devel/p5-Test-WWW-Mechanize-PSGI \
+	p5-DBD-SQLite>0:${PORTSDIR}/databases/p5-DBD-SQLite \
+	p5-String-CamelCase>0:${PORTSDIR}/textproc/p5-String-CamelCase \
+	p5-Module-Find>0:${PORTSDIR}/devel/p5-Module-Find
+
+PERL_MODBUILD=	yes
+
+MAN3=	Amon2::Plugin::Web::MobileAgent.3 \
+	Amon2::Plugin::Web::MobileCharset.3 \
+	Amon2::Setup::Flavor::MobileJP.3
+
+.include <bsd.port.mk>

Added: head/www/p5-Amon2-Plugin-Web-MobileAgent/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/p5-Amon2-Plugin-Web-MobileAgent/distinfo	Tue Jan 22 00:58:34 2013	(r310791)
@@ -0,0 +1,2 @@
+SHA256 (Amon2-Plugin-Web-MobileAgent-0.09.tar.gz) = 072bd805376c10c64384d016818c46b132c8cd4cb0d7488831996c7ee87b2bda
+SIZE (Amon2-Plugin-Web-MobileAgent-0.09.tar.gz) = 17704

Added: head/www/p5-Amon2-Plugin-Web-MobileAgent/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/p5-Amon2-Plugin-Web-MobileAgent/pkg-descr	Tue Jan 22 00:58:34 2013	(r310791)
@@ -0,0 +1,6 @@
+This plugin integrates HTTP::MobileAgent and Amon2.
+
+This module adds $c->mobile_agent() method to the context object. The
+agent class is generated by $c->req.
+
+WWW: http://search.cpan.org/dist/Amon2-Plugin-Web-MobileAgent/

Added: head/www/p5-Amon2-Plugin-Web-MobileAgent/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/p5-Amon2-Plugin-Web-MobileAgent/pkg-plist	Tue Jan 22 00:58:34 2013	(r310791)
@@ -0,0 +1,3 @@
+%%SITE_PERL%%/Amon2/Plugin/Web/MobileAgent.pm
+%%SITE_PERL%%/Amon2/Plugin/Web/MobileCharset.pm
+%%SITE_PERL%%/Amon2/Setup/Flavor/MobileJP.pm



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201301220058.r0M0wZdS029614>