mirror of
https://git.freebsd.org/ports.git
synced 2025-06-22 21:20:31 -04:00
EXPIRATION_DATE at the end of April 2017. In the past six months, about a third of the ports marked BROKEN because they were hosted on Google Code have been fixed. The remaining must not be of use to anyone. With hat: portmgr Sponsored by: Absolight
30 lines
750 B
Makefile
30 lines
750 B
Makefile
# Created by: Daniel Knaggs <knaggsy2000@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= danzfs
|
|
PORTVERSION= 0.2.0
|
|
CATEGORIES= sysutils python
|
|
MASTER_SITES= GOOGLE_CODE
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= knaggsy2000@gmail.com
|
|
COMMENT= Provides a Python API for interacting with ZFS without using libzfs
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
BROKEN= Unfetchable (google code has gone away)
|
|
DEPRECATED= Unfetchable for more than six months (google code has gone away)
|
|
EXPIRATION_DATE= 2017-04-30
|
|
|
|
USE_PYTHON= distutils
|
|
USES= python tar:xz
|
|
|
|
WRKSRC= ${WRKDIR}/danzfs
|
|
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/danzfs
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
(cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} \* ${STAGEDIR}${EXAMPLESDIR})
|
|
|
|
.include <bsd.port.mk>
|