blob: cde3647f55a132e8c09cc4d14f9c34d5a060111b (
plain) (
blame)
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
|
# Created by: Pieter Danhieux <opr@bsdaemon.be>
# $FreeBSD$
PORTNAME= sleuthkit
PORTVERSION= 4.1.0
CATEGORIES= sysutils security
MASTER_SITES= SF
MAINTAINER= antoine@FreeBSD.org
COMMENT= Tools and library for filesystem forensic analysis
LICENSE= CPL IBM GPLv2
LICENSE_COMB= multi
LICENSE_NAME_CPL=Common Public License
LICENSE_NAME_IBM=IBM Public License
LICENSE_FILE_CPL=${WRKSRC}/licenses/cpl1.0.txt
LICENSE_FILE_IBM=${WRKSRC}/licenses/IBM-LICENSE
LICENSE_PERMS_CPL=dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
LICENSE_PERMS_IBM=dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
RUN_DEPENDS= p5-DateTime-TimeZone>=0:${PORTSDIR}/devel/p5-DateTime-TimeZone \
exif:${PORTSDIR}/graphics/exif
CONFLICTS= ja-ls-[0-9]* icat-[0-9]*
GNU_CONFIGURE= yes
USES= perl5
USE_LDCONFIG= yes
DATADIR= ${PREFIX}/share/tsk
CPPFLAGS+= -I${LOCALBASE}/include
PORTDOCS= NEWS.txt README.txt
MAN1= blkcalc.1 blkcat.1 blkls.1 \
blkstat.1 ffind.1 fls.1 fsstat.1 hfind.1 icat.1 ifind.1 \
ils.1 img_cat.1 img_stat.1 istat.1 jcat.1 jls.1 mactime.1 \
mmls.1 mmstat.1 mmcat.1 sigfind.1 sorter.1 \
tsk_comparedir.1 tsk_gettimes.1 tsk_loaddb.1 tsk_recover.1
OPTIONS_DEFINE= DOCS LIBEWF
LIBEWF_DESC= Build with EWF support
OPTIONS_DEFAULT=LIBEWF
LIBEWF_LIB_DEPENDS= libewf.so:${PORTSDIR}/devel/libewf
LIBEWF_CONFIGURE_ON= --with-libewf=${LOCALBASE}
LIBEWF_CONFIGURE_OFF= --without-libewf
NO_STAGE= yes
.include <bsd.port.options.mk>
post-install:
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}
.endif
.include <bsd.port.mk>
|