blob: 831634e10614bb81d0a255a89cf231d060c966e4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Created by: Mathieu Arnold <m@absolight.net>
# $FreeBSD$
PORTNAME= Time-Local
PORTVERSION= 1.23.00
CATEGORIES= devel perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
DISTNAME= ${PORTNAME}-${PORTVERSION:R}${PORTVERSION:E}
MAINTAINER= perl@FreeBSD.org
COMMENT= Efficiently compute time from local and GMT time
LICENSE= ART10 GPLv1
LICENSE_COMB= dual
OPTIONS_DEFINE= DOCS
USES= perl5
USE_PERL5= configure
PORTDOCS= Changes
.include <bsd.port.pre.mk>
post-install:
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${STAGEDIR}${DOCSDIR}/
cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/
.endif
.include <bsd.port.post.mk>
|