blob: 676742fc40c5268f8621cd43f60170a6e7c8158a (
plain)
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
33
34
35
36
37
38
39
40
41
42
43
|
# New ports collection makefile for: gotmail
# Date created: 9 August 2001
# Whom: Christopher Elkins <chrise@scardini.com>
#
# $FreeBSD$
#
PORTNAME= gotmail
PORTVERSION= 0.8.9
CATEGORIES= mail perl5
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= ports@FreeBSD.org
COMMENT= A script to fetch mail from a Hotmail or MSN mailbox
RUN_DEPENDS= curl:${PORTSDIR}/ftp/curl \
${SITE_PERL}/URI.pm:${PORTSDIR}/net/p5-URI \
${SITE_PERL}/Net/libnet.cfg:${PORTSDIR}/net/p5-Net
MAN1= ${PORTNAME}.1
USE_PERL5= yes
do-install:
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.man \
${MANPREFIX}/man/man1/${PORTNAME}.1
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for i in ChangeLog README sample.gotmailrc
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
.endfor # i in ChangeLog README sample.gotmailrc
.endif # !defined(NOPORTDOCS)
.include <bsd.port.pre.mk>
.if ${PERL_LEVEL} < 500600
IGNORE= requires perl 5.6.0 or higher. Please install lang/perl5.8 and try again
.endif
.include <bsd.port.post.mk>
|