35c86b2559
* Added new option '-H, --test-mode' to simulate read errors. * Added new option '-L, --loose-domain' to ddrescue and ddrescuelog. * Added new option '-N, --no-trim' to disable trimming of damaged areas. * Added new option '-O, --reopen-on-error'. * Added new options '-1, --log-rates', and '-2, --log-reads'. * Extended '-K, --skip-size' with maximum and disable values. * Added new option '-P, --data-preview'. * Added new option '-u, --unidirectional'. * Added new option '-X, --exit-on-error'. * Added new option '--ask' to ask for user confirmation. * Added new option '--cpass' to select passes during copying phase. * Added new option '--pause' to insert a pause between passes. * Added option '-B, --binary-prefixes' to ddrescuelog. * Added new option '-C, --complete-logfile' to ddrescuelog. * Added new option '-P, --compare-as-domain' to ddrescuelog. * If interrupted, ddrescue terminates by raising the signal received. * Show ATA model and serial number with '--ask' or '-vv' on Linux. * rescuebook.cc (copy_non_tried): Do not mark skipped blocks as non-trimmed. Try them in additional passes (before trimming). * rescuebook.cc: Limit the copying phase to 3 passes. * rescuebook.cc: Alternate direction of passes during copying phase. * rescuebook.cc: Smallest blocks are trimmed first. * Skip on the first error during the copying phase. * rescuebook.cc: Trimming done in one pass, may be run in reverse. * The splitting phase has been replaced by a scraping phase. * License changed to GPL version 2 or later.
29 lines
847 B
Makefile
29 lines
847 B
Makefile
# $NetBSD: Makefile,v 1.8 2014/11/11 21:36:53 shattered Exp $
|
|
|
|
DISTNAME= ddrescue-1.19
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=ddrescue/}
|
|
EXTRACT_SUFX= .tar.lz
|
|
|
|
MAINTAINER= ef@math.uni-bonn.de
|
|
HOMEPAGE= http://www.gnu.org/software/ddrescue/ddrescue.html
|
|
COMMENT= GNU ddrescue is a data recovery tool
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
HAS_CONFIGURE= YES
|
|
USE_LANGUAGES= c++
|
|
USE_TOOLS+= gmake
|
|
INFO_FILES= YES
|
|
|
|
CONFIGURE_ARGS+= CC=${CC:Q} CXX=${CXX:Q} CPPFLAGS=${CPPFLAGS:Q}
|
|
CONFIGURE_ARGS+= CFLAGS=${CFLAGS:Q} CXXFLAGS=${CXXFLAGS:Q}
|
|
CONFIGURE_ARGS+= LDFLAGS=${LDFLAGS:Q}
|
|
CONFIGURE_ARGS+= --prefix=${PREFIX}
|
|
CONFIGURE_ARGS+= --infodir=${PREFIX}/${PKGINFODIR}
|
|
CONFIGURE_ARGS+= --mandir=${PREFIX}/${PKGMANDIR}
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
|
|
|
|
TEST_TARGET= check
|
|
INSTALL_TARGET= install install-man
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|