86ea462e43
Safecopy is a data recovery tool which tries to extract as much data as possible from a problematic (i.e. damaged sectors) source - like floppy drives, hard disk partitions, CDs, tape devices etc, ... , where other tools like dd would fail due to I/O errors. Safecopy includes a low level IO layer to read CDROM disks in raw mode, and issue device resets and other helpful low level operations on a number of other device classes. The project also includes a device simulator which can be used to simulate bad media for testing and benchmarking safecopy as well as other data rescue tools. WWW: http://safecopy.sourceforge.net/ PR: 216892 Submitted by: anastasios@mageirias.com Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D9479
20 lines
381 B
Makefile
20 lines
381 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= safecopy
|
|
PORTVERSION= 1.7
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}/
|
|
|
|
MAINTAINER= anastasios@mageirias.com
|
|
COMMENT= Safe copying of files and partition
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= gmake
|
|
GNU_CONFIGURE= yes
|
|
|
|
PLIST_FILES= bin/safecopy \
|
|
man/man1/safecopy.1.gz
|
|
|
|
.include <bsd.port.mk>
|