blob: e24273cdcfd2b2424f475b8464661e1d05c56e5f (
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
# $FreeBSD$
PORTNAME= libarchive
PORTVERSION= 3.1.2
PORTEPOCH= 1
CATEGORIES= archivers
MASTER_SITES= http://libarchive.org/downloads/
MAINTAINER= glewis@FreeBSD.org
COMMENT= Library to create and read several streaming archive formats
OPTIONS_DEFINE= LIBXML2 LZO NETTLE
OPTIONS_DEFAULT=LIBXML2 LZO
LIBXML2_DESC= Support writing xar via libxml2
LZO_DESC= Support lzo compression via liblzo2
NETTLE_DESC= Use Nettle instead of OpenSSL
NO_STAGE= yes
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
USE_GNOME= gnomehack
PATCH_STRIP= -p1
CONFIGURE_ARGS+= --without-expat
PLIST_FILES= bin/bsdcpio \
bin/bsdtar \
include/archive.h \
include/archive_entry.h \
lib/libarchive.a \
lib/libarchive.la \
lib/libarchive.so \
lib/libarchive.so.14 \
libdata/pkgconfig/libarchive.pc
MANCOMPRESSED= no
MAN1= bsdcpio.1 \
bsdtar.1
MAN3= archive_entry.3 \
archive_entry_acl.3 \
archive_entry_linkify.3 \
archive_entry_paths.3 \
archive_entry_perms.3 \
archive_entry_stat.3 \
archive_entry_time.3 \
archive_read.3 \
archive_read_data.3 \
archive_read_disk.3 \
archive_read_extract.3 \
archive_read_filter.3 \
archive_read_format.3 \
archive_read_free.3 \
archive_read_header.3 \
archive_read_new.3 \
archive_read_open.3 \
archive_read_set_options.3 \
archive_util.3 \
archive_write.3 \
archive_write_blocksize.3 \
archive_write_data.3 \
archive_write_disk.3 \
archive_write_filter.3 \
archive_write_finish_entry.3 \
archive_write_format.3 \
archive_write_free.3 \
archive_write_header.3 \
archive_write_new.3 \
archive_write_open.3 \
archive_write_set_options.3 \
libarchive.3 \
libarchive_changes.3 \
libarchive_internals.3
MAN5= cpio.5 \
libarchive-formats.5 \
mtree.5 \
tar.5
CFLAGS+= "-I${LOCALBASE}/include"
CPPFLAGS+= "-I${LOCALBASE}/include"
LDFLAGS+= "-L${LOCALBASE}/lib"
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MLIBXML2}
USE_GNOME+= libxml2
CONFIGURE_ARGS+= --with-xml2
.else
CFLAGS+= -DHAVE_BSDXML_H=1
LDFLAGS+= -lbsdxml
CONFIGURE_ARGS+= --without-xml2
.endif
.if ${PORT_OPTIONS:MLZO}
LIB_DEPENDS= lzo2:${PORTSDIR}/archivers/lzo2
CONFIGURE_ARGS+= --with-lzo2
.else
CONFIGURE_ARGS+= --without-lzo2
.endif
.if ${PORT_OPTIONS:MNETTLE}
LIB_DEPENDS+= nettle:${PORTSDIR}/security/nettle
CONFIGURE_ARGS+= --without-openssl --with-nettle
.else
USE_OPENSSL= yes
CONFIGURE_ARGS+= --with-openssl --without-nettle
.endif
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 800505 || (${OSVERSION} >= 900000 && ${OSVERSION} < 900012)
LIB_DEPENDS+= lzma:${PORTSDIR}/archivers/xz
.endif
check:
(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} check)
.include <bsd.port.post.mk>
|