1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-27 10:03:20 +00:00
freebsd-ports/sysutils/ufs_copy/Makefile
MANTANI Nobutaka aeae7f4dc7 Add ufs_copy.
The ufs_copy copies a UFS filesystem image like dd(1).
It doesn't copy free blocks for speed and it generates a sparse destination
file for saving space.

WWW: http://people.freebsd.org/~simokawa/ufs/
2005-07-03 13:58:06 +00:00

33 lines
692 B
Makefile

# New ports collection makefile for: ufs_copy
# Date created: 3 July 2005
# Whom: MANTANI Nobutaka <nobutaka@freebsd.org>
#
# $FreeBSD$
#
PORTNAME= ufs_copy
PORTVERSION= 20041015
CATEGORIES= sysutils
MASTER_SITES= http://people.freebsd.org/~simokawa/ufs/
DISTNAME= ufs-${PORTVERSION}
MAINTAINER= nobutaka@freebsd.org
COMMENT= Fast copy utility for UFS filesystem
WRKSRC= ${WRKDIR}/ufs
MAKE_ARGS= BINDIR=${PREFIX}/sbin
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 500000
IGNORE= FreeBSD 4.x does not have libufs
.endif
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
.include <bsd.port.post.mk>