mirror of
https://git.freebsd.org/ports.git
synced 2025-06-26 23:20:30 -04:00
defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590
60 lines
1.8 KiB
Makefile
60 lines
1.8 KiB
Makefile
# Created by: Pieter Danhieux <opr@bsdaemon.be>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= sleuthkit
|
|
PORTVERSION= 4.6.4
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils security
|
|
MASTER_SITES= https://github.com/sleuthkit/sleuthkit/releases/download/sleuthkit-${PORTVERSION}/
|
|
|
|
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:devel/p5-DateTime-TimeZone \
|
|
exif:graphics/exif
|
|
|
|
CONFLICTS= ja-ls-[0-9]* icat-[0-9]*
|
|
|
|
CPPFLAGS+= -D_WITH_GETLINE
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= ac_cv_header_libpq_fe_h=no
|
|
USES= compiler:c++11-lang libtool perl5 sqlite
|
|
USE_LDCONFIG= yes
|
|
INSTALL_TARGET= install-strip
|
|
DATADIR= ${PREFIX}/share/tsk
|
|
|
|
PORTDOCS= NEWS.txt README.md
|
|
|
|
OPTIONS_DEFINE= AFFLIB DOCS LIBEWF LIBVHDI LIBVMDK
|
|
AFFLIB_DESC= Build with AFF support
|
|
LIBEWF_DESC= Build with EWF support
|
|
LIBVHDI_DESC= Build with VHDI support
|
|
LIBVMDK_DESC= Build with VMDK support
|
|
OPTIONS_DEFAULT=LIBEWF LIBVHDI LIBVMDK
|
|
|
|
AFFLIB_LIB_DEPENDS= libafflib.so:sysutils/afflib
|
|
AFFLIB_CONFIGURE_WITH= afflib=${LOCALBASE}
|
|
|
|
LIBEWF_LIB_DEPENDS= libewf.so:devel/libewf
|
|
LIBEWF_CONFIGURE_WITH= libewf=${LOCALBASE}
|
|
|
|
LIBVHDI_LIB_DEPENDS= libvhdi.so:devel/libvhdi
|
|
LIBVHDI_CONFIGURE_WITH= libvhdi=${LOCALBASE}
|
|
|
|
LIBVMDK_LIB_DEPENDS= libvmdk.so:devel/libvmdk
|
|
LIBVMDK_CONFIGURE_WITH= libvmdk=${LOCALBASE}
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|