forked from Lainports/freebsd-ports
- Bump PORTREVISION for ftp/curl shlib change - Add TEST_DEPENDS - Convert to new options framework - Adjust options: - Add COOKIES - Add CYASSL, NSS, POLARSSL, THREADED_RESOLVER, TLS_SRP [1] - Add GSSAPI and SPNEGO [2] - Remove KERBEROS4 - Rename LIBIDN to IDN - Remove TRACKMEMORY [1] - Sort option handler - Add SLAVEDIRS: ftp/curl-hiphop - Cosmetic change - Cleanup Makefile header - While I'm here, fix typo (PORTREVSION) in x11-wm/ede/Makefile Changes: http://curl.haxx.se/changes.html PR: ports/172325 (-exp run), ports/177369 (based on) [1] Submitted by: Hirohisa Yamaguchi <umq@ueo.co.jp> [1], hrs (via email) [2] Exp run by: miwi
40 lines
961 B
Makefile
40 lines
961 B
Makefile
# Created by: Chris Calvey <chris@securityforensics.co.uk>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= afflib
|
|
PORTVERSION= 3.7.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://cloud.github.com/downloads/simsong/AFFLIBv3/ \
|
|
http://www.c-s.li/ports/
|
|
|
|
MAINTAINER= cs@FreeBSD.org
|
|
COMMENT= The Advanced Forensics Format library and utilities
|
|
|
|
LICENSE= BSD
|
|
|
|
LIB_DEPENDS= expat:${PORTSDIR}/textproc/expat2 \
|
|
curl:${PORTSDIR}/ftp/curl
|
|
|
|
USE_LDCONFIG= yes
|
|
USE_OPENSSL= yes
|
|
USES= fuse pathfix iconv
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_AUTOTOOLS= autoconf
|
|
CONFIGURE_ARGS= --enable-s3=yes --libdir=${PREFIX}
|
|
CPPFLAGS+= -DFUSE_USE_VERSION=26
|
|
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>
|