pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/archivers/dar Add support for dar-int32 and dar-int64 ...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/7461dab3278e
branches:  trunk
changeset: 515796:7461dab3278e
user:      dsainty <dsainty%pkgsrc.org@localhost>
date:      Sat Jul 08 07:09:34 2006 +0000

description:
Add support for dar-int32 and dar-int64 package options.

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 dar-int32 and
dar-int64 options can significantly reduce the run-time memory and CPU
overheads of Dar.

Leave the default unchanged (thus no package version bump).

diffstat:

 archivers/dar/Makefile |  19 ++++++++++++++++++-
 1 files changed, 18 insertions(+), 1 deletions(-)

diffs (33 lines):

diff -r aaee1eef4c4b -r 7461dab3278e archivers/dar/Makefile
--- a/archivers/dar/Makefile    Sat Jul 08 06:33:56 2006 +0000
+++ b/archivers/dar/Makefile    Sat Jul 08 07:09:34 2006 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.21 2006/05/26 10:10:08 adam Exp $
+# $NetBSD: Makefile,v 1.22 2006/07/08 07:09:34 dsainty Exp $
 
 DISTNAME=      dar-2.3.0
 CATEGORIES=    archivers sysutils
@@ -20,6 +20,23 @@
 CONFIGURE_ARGS+=       --disable-upx
 CONFIGURE_ARGS+=       --enable-examples
 
+PKG_OPTIONS_VAR=       PKG_OPTIONS.dar
+PKG_SUPPORTED_OPTIONS= dar-int32 dar-int64
+PKG_SUGGESTED_OPTIONS=
+
+.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.
+.if !empty(PKG_OPTIONS:Mdar-int64)
+CONFIGURE_ARGS+=       --enable-mode=64
+.elif !empty(PKG_OPTIONS:Mdar-int32)
+CONFIGURE_ARGS+=       --enable-mode=32
+.endif
+
 PKGCONFIG_OVERRIDE=    src/libdar/libdar.pc.tmpl.in
 UNLIMIT_RESOURCES=     datasize
 



Home | Main Index | Thread Index | Old Index