blob: 79b4badb55983975ce765d0c1b2e293defa6d080 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# $NetBSD: Makefile,v 1.23 2006/10/07 07:10:29 obache Exp $
DISTNAME= dar-2.3.1
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
USE_LANGUAGES= c c++
USE_LIBTOOL= yes
USE_PKGLOCALEDIR= yes
USE_TOOLS+= gmake
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --disable-dar-static
CONFIGURE_ARGS+= --disable-nodump-flag
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
# Needed for getopt() with SunPro
CPPFLAGS.SunOS+= -D__EXTENSIONS__
.include "../../archivers/bzip2/buildlink3.mk"
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../devel/zlib/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|