2013-09-21 01:05:58 +02:00
|
|
|
# Created by: Greg Larkin <glarkin@FreeBSD.org>
|
2011-11-30 23:20:54 +01:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
PORTNAME= feather
|
2017-01-18 15:23:27 +01:00
|
|
|
PORTVERSION= 1.3.0
|
2016-04-26 14:43:52 +02:00
|
|
|
DISTVERSIONPREFIX= v
|
2011-11-30 23:20:54 +01:00
|
|
|
CATEGORIES= sysutils python
|
|
|
|
|
2013-12-16 19:24:49 +01:00
|
|
|
MAINTAINER= ports@FreeBSD.org
|
2014-06-06 17:15:35 +02:00
|
|
|
COMMENT= Python script for managing tarsnap backups
|
2011-11-30 23:20:54 +01:00
|
|
|
|
2016-04-01 16:25:16 +02:00
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yaml>=0:devel/py-yaml \
|
|
|
|
tarsnap>=0:sysutils/tarsnap
|
2011-11-30 23:20:54 +01:00
|
|
|
|
2016-04-26 14:43:52 +02:00
|
|
|
USES= python:2,run
|
2011-11-30 23:20:54 +01:00
|
|
|
NO_BUILD= yes
|
2016-04-22 11:02:53 +02:00
|
|
|
NO_ARCH= yes
|
2011-11-30 23:20:54 +01:00
|
|
|
|
2016-04-26 14:43:52 +02:00
|
|
|
USE_GITHUB= yes
|
|
|
|
GH_ACCOUNT= danrue
|
|
|
|
|
2011-11-30 23:20:54 +01:00
|
|
|
SUB_FILES= pkg-message
|
|
|
|
|
2016-04-26 14:43:52 +02:00
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES
|
|
|
|
|
|
|
|
PORTDOCS= README.md
|
|
|
|
PORTEXAMPLES= feather.cron.d.example
|
|
|
|
PLIST_FILES= bin/feather etc/feather.yaml.dist
|
2014-07-05 00:25:48 +02:00
|
|
|
|
2011-11-30 23:20:54 +01:00
|
|
|
do-install:
|
2016-04-22 11:02:53 +02:00
|
|
|
${INSTALL_SCRIPT} ${WRKSRC}/feather ${STAGEDIR}${PREFIX}/bin
|
2014-07-05 00:25:48 +02:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/feather.yaml.dist ${STAGEDIR}${PREFIX}/etc
|
2016-04-22 11:02:53 +02:00
|
|
|
|
|
|
|
do-install-DOCS-on:
|
2014-07-05 00:25:48 +02:00
|
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
2016-04-26 14:43:52 +02:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR}
|
|
|
|
|
|
|
|
do-install-EXAMPLES-on:
|
|
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/${PORTEXAMPLES} ${STAGEDIR}${EXAMPLESDIR}
|
2011-11-30 23:20:54 +01:00
|
|
|
|
|
|
|
.include <bsd.port.mk>
|