mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
168f57451a
COMMENT typos and surrounding whitespace fixes. A few Makefiles where not included as they contain Latin-1 characters that break the Phabricator workflow. Category M. CR: D306 Approved by: portmgr (bapt)
35 lines
841 B
Makefile
35 lines
841 B
Makefile
# Created by: Christopher Elkins <chrise@scardini.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gotmail
|
|
PORTVERSION= 0.9.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= mail perl5
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Script to fetch mail from a Hotmail or MSN mailbox
|
|
|
|
RUN_DEPENDS= curl:${PORTSDIR}/ftp/curl \
|
|
p5-URI>=0:${PORTSDIR}/net/p5-URI \
|
|
p5-Net>=0:${PORTSDIR}/net/p5-Net
|
|
|
|
USES= perl5 shebangfix
|
|
|
|
PLIST_FILES= bin/gotmail man/man1/gotmail.1.gz
|
|
SHEBANG_FILES= gotmail
|
|
PORTDOCS= ChangeLog README sample.gotmailrc
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.man \
|
|
${STAGEDIR}${MANPREFIX}/man/man1/${PORTNAME}.1
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for f in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|