mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
18e10ae5f1
formatting functions are tied to hash variables, so they can be used inside strings as well as in ordinary expressions. The formatting codes used are meant to be easy to remember, use, and read. They follow a simple, consistent pattern. If I've done my job right, once you learn the codes, you should never have to refer to the documentation again. A quick-reference page is included, just in case. ;-) Time::Format can also format DateTime objects, and strings created with Date::Manip. Also provided is a tied-hash interface to POSIX::strftime and Date::Manip::UnixDate. If the I18N::Langinfo module is available, Time::Format provides weekday and month names in a language appropriate for your locale. A companion module, Time::Format_XS, is also available; if it is installed, Time::Format will detect and use it, which will result in a significant speed improvement. WWW: http://search.cpan.org/dist/Time-Format/ PR: ports/140659 Submitted by: Sergey V. Dyatko <Sergey.Dyatko at gmail.com>
22 lines
415 B
Makefile
22 lines
415 B
Makefile
# New ports collection makefile for: devel/p5-Time-Format
|
|
# Date created: 18 November 2009
|
|
# Whom: Sergey V. Dyatko <Sergey.Dyatko@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= Time-Format
|
|
PORTVERSION= 1.11
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= Sergey.Dyatko@gmail.com
|
|
COMMENT= Easy-to-use date/time formatting.
|
|
|
|
PERL_CONFIGURE= yes
|
|
|
|
MAN3= Time::Format.3
|
|
|
|
.include <bsd.port.mk>
|