summaryrefslogtreecommitdiff
path: root/archivers/dar/Makefile
blob: cb544ef0718e9060fc0fbd6e1185efc7d4545ccb (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
50
51
52
53
54
55
56
57
58
# $NetBSD: Makefile,v 1.25 2007/03/18 04:36:23 dsainty Exp $

DISTNAME=	dar-2.3.3
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
CONFIGURE_ARGS+=	doxygen=no

REPLACE_PERL+=		doc/samples/dar_backup
REPLACE_BASH+=		doc/samples/*.bash doc/samples/clust*.sh
# No extra dependencies, since these are only 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
PLIST_SUBST+=		DARBITS=64
.elif !empty(PKG_OPTIONS:Mdar-int32)
CONFIGURE_ARGS+=	--enable-mode=32
PLIST_SUBST+=		DARBITS=32
.else
PLIST_SUBST+=		DARBITS=
.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"