5ef709e6e4
from 2.3.6 to 2.3.7 - fixed bug in dar_manager about the localization of the archive in which to fin d the latest EA - fixed bug in configure script to properly report full blowfish encryption supp ort - fixed a bug in the statistics calculus of dar_manager for most recent files pe r archive - removed inappropriate internal error check - added --disable-libdl-linking option - fixed mistake in API tutorial - updated Swedish translation by Peter Landgren - fixed bug in the file filtering based on listing file ( -[ option ) - fixed typo and spelling errors in documentation - updated code for clean compilation with gcc-4.2.3 - updated code for clean compilation with gcc-4.3 20080208 (experimental gcc) from 2.3.7 to 2.3.8 - fixed bug in libdar met when user supply an empty file as a list of file to include or exclude ( -[ and -] options ) - fixed bug concerning elastic buffers used beside strong encryption. No security issue here, just in some almost rare situations the generated archive was not readable (testing your archive prevents you loosing data in this situation) - added some speed optimizations - avoided warning to appear without -v option set, when an error is met while fetching value of nodump flag (flag not supported on filesystem for example).
103 lines
2.9 KiB
Makefile
103 lines
2.9 KiB
Makefile
# $NetBSD: Makefile,v 1.34 2008/06/22 22:33:37 dsainty Exp $
|
|
|
|
DISTNAME= dar-2.3.8
|
|
CATEGORIES= archivers sysutils
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=dar/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://dar.linux.free.fr/
|
|
COMMENT= Disk archiver
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_LANGUAGES= c c++
|
|
USE_LIBTOOL= yes
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_TOOLS+= gmake pkg-config
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --disable-dar-static
|
|
CONFIGURE_ARGS+= --enable-static=no
|
|
CONFIGURE_ARGS+= --disable-nodump-flag
|
|
CONFIGURE_ARGS+= --disable-upx
|
|
CONFIGURE_ARGS+= --enable-examples
|
|
CONFIGURE_ARGS+= doxygen=no
|
|
|
|
PKGCONFIG_OVERRIDE= src/libdar/libdar.pc.tmpl.in
|
|
|
|
## We use the logic below to find a path for a non-existent ${BASH}.
|
|
## Yeah, I suppose it's a hack, but it does work.
|
|
#
|
|
CHECK_INTERPRETER_SKIP+= share/dar/samples/*
|
|
REPLACE_PERL+= doc/samples/dar_backup
|
|
REPLACE_BASH+= doc/samples/*.bash doc/samples/clust*.sh
|
|
|
|
.if defined(TOOLS_PLATFORM.bash) && exists(${${TOOLS_PLATFORM.bash}:L})
|
|
BASH?= ${TOOLS_PLATFORM.bash}
|
|
.else
|
|
BASH?= ${TOOLS_PREFIX.bash}/bin/bash
|
|
TOOLS_FIND_PREFIX+= TOOLS_PREFIX.bash=bash
|
|
.endif
|
|
|
|
## Our threading check here is the same as the one used in devel/perl5.
|
|
#
|
|
CHECK_BUILTIN.pthread:=yes
|
|
. include "../../mk/pthread.builtin.mk"
|
|
CHECK_BUILTIN.pthread:=no
|
|
|
|
## XXX I'm following the USE_FEATURES semantics used in security/openssl.
|
|
#
|
|
.if !empty(USE_BUILTIN.pthread:tl:Myes)
|
|
USE_FEATURES.dar= threads
|
|
.else
|
|
USE_FEATURES.dar= # empty
|
|
.endif
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.dar
|
|
PKG_OPTIONS_OPTIONAL_GROUPS+= int
|
|
PKG_OPTIONS_GROUP.int= dar-int32 dar-int64
|
|
PKG_SUGGESTED_OPTIONS= dar-int64 ${USE_FEATURES.dar}
|
|
PKG_SUPPORTED_OPTIONS= threads
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
## Dar is built by default with an arbitrary-size-integer library for
|
|
## managing all file length/timestamp details. If 32-bit or 64-bit
|
|
## integers (with overflow protection) are sufficient for requirements,
|
|
## the following options can significantly reduce the run-time memory
|
|
## and CPU overheads of Dar.
|
|
#
|
|
DARBITS= ${PKG_OPTIONS:C/[^[:digit:]]*//:M[36][24]}
|
|
PLIST_SUBST+= DARBITS=${DARBITS}
|
|
|
|
.if !empty(DARBITS)
|
|
CONFIGURE_ARGS+= --enable-mode=${DARBITS:Q}
|
|
.endif
|
|
|
|
## We want the threading library to be specified by pkgsrc, and only
|
|
## when desired, viz. in the case below. Using PTHREAD_AUTO_VARS
|
|
## with the accompanying BUILDLINK_TRANSFORM directive is easier
|
|
## then patching configure.
|
|
#
|
|
.if !empty(PKG_OPTIONS:Mthreads)
|
|
USE_FEATURES.openssl+= threads
|
|
PTHREAD_AUTO_VARS= yes
|
|
BUILDLINK_TRANSFORM+= rm:-lpthread
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-thread-safe
|
|
.endif
|
|
|
|
UNLIMIT_RESOURCES= datasize
|
|
|
|
## XXX Needed for getopt() with SunPro (USE_FEATURES?)
|
|
#
|
|
CPPFLAGS.SunOS+= -D__EXTENSIONS__
|
|
|
|
.include "../../archivers/bzip2/buildlink3.mk"
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|