mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
5005b67362
OPTIONS_DEFINE. This policy has been implemented only recently that's why we have many ports violating this policy. This patch adds the default options specified in the Porter's Handbook to OPTIONS_DEFINE where they are being used. Ports maintained by gnome@FreeBSD.org, kde@FreeBSD.org and x11@FreeBSD.org have been excluded. Approved by: portmgr (bapt)
35 lines
764 B
Makefile
35 lines
764 B
Makefile
# Created by: John Hein <jhein@symmetricom.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= bbcp
|
|
PORTVERSION= 20120520
|
|
CATEGORIES= sysutils net
|
|
MASTER_SITES= https://bitbucket.org/jhein/bbcp/downloads/
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${PORTNAME}-20100818.pdf
|
|
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= jhein@symmetricom.com
|
|
COMMENT= Secure and fast copy utility
|
|
|
|
LICENSE= BSD
|
|
|
|
BUILD_WRKSRC= ${WRKSRC}/src
|
|
PLIST_FILES= bin/bbcp
|
|
PORTDOCS= ${PORTNAME}.pdf
|
|
USE_XZ= yes
|
|
|
|
NO_STAGE= yes
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bin/FreeBSD/bbcp ${PREFIX}/bin
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${DISTDIR}/${PORTNAME}-20100818.pdf ${DOCSDIR}/${PORTNAME}.pdf
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|