blob: b077966499d9ba3dc8bb84f8ba677df444692f8a (
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
|
# Ports collection makefile for: afflib
#
# Date created: 15/02/2008
# Whom: Chris Calvey <chris@securityforensics.co.uk>
#
# $FreeBSD$
#
PORTNAME= afflib
PORTVERSION= 3.6.15
CATEGORIES= sysutils
MASTER_SITES= http://afflib.org/downloads/ \
http://www.c-s.li/ports/
MAINTAINER= cs@FreeBSD.org
COMMENT= The Advanced Forensics Format library and utilities
LICENSE= BSD
LIB_DEPENDS= fuse:${PORTSDIR}/sysutils/fusefs-libs \
expat:${PORTSDIR}/textproc/expat2 \
curl:${PORTSDIR}/ftp/curl
USE_LDCONFIG= yes
USE_OPENSSL= yes
USE_ICONV = yes
USE_GMAKE= yes
GNU_CONFIGURE= yes
USE_GNOME= gnomehack
USE_AUTOTOOLS= autoconf
CONFIGURE_ARGS= --enable-s3=yes --libdir=${PREFIX}
CPPFLAGS+= -DFUSE_USE_VERSION=26
LDFLAGS+= ${PTHREAD_LIBS}
CFLAGS+= ${PTHREAD_LIBS}
MAKE_JOBS_SAFE= yes
MAN1= affcat.1
AUTOTOOLSFILES= aclocal.m4
post-patch:
@${REINPLACE_CMD} -e 's|2.61|%%AUTOCONF_VERSION%%|g' ${WRKSRC}/aclocal.m4
@${REINPLACE_CMD} -e 's|(libdir)|(libdir)/lib|' \
${WRKSRC}/lib/Makefile.in
@${REINPLACE_CMD} -e 's|(libdir)|(libdir)/libdata|' \
${WRKSRC}/Makefile.in
.include <bsd.port.mk>
|