On 09/06/17 11:34, Stuart Henderson wrote: > I just ran into this... > > ===> Configuring for sleuthkit-4.3.0p0 > checking for a BSD-compatible install... > /usr/obj/ports/sleuthkit-4.3.0/bin/install -c > checking whether build environment is sane... yes > checking for a thread-safe mkdir -p... /usr/local/bin/gmkdir -p > [..snip..] > Making install in auto > /usr/local/bin/gmkdir -p > '/usr/obj/ports/sleuthkit-4.3.0/fake-i386/usr/local/lib' > /bin/sh: /usr/local/bin/gmkdir: not found > > ...which shows that it's not using CONFIGURE_STYLE=gnu. > > Is there a reason why? > >
naddy already asked me the same question to which the reply was I took it over like that, and someone else did the last update, it has been fixed once I catch up with libc / pthread I have this prepared below this bring it upto date with latest found by portroach. It's one of the next lot of portroach updates - socat, tcpreplay once those already posted to ports@ have been ok'd and cleared $ ident Makefile Makefile: $OpenBSD: Makefile,v 1.21 2017/07/26 22:45:30 sthen Exp $ $ cvs -R -q diff -uNp | head -30 Index: Makefile =================================================================== RCS file: /home/cvs/ports/sysutils/sleuthkit/Makefile,v retrieving revision 1.21 diff -u -p -r1.21 Makefile --- Makefile 26 Jul 2017 22:45:30 -0000 1.21 +++ Makefile 29 Aug 2017 21:30:52 -0000 @@ -2,9 +2,8 @@ COMMENT= forensic toolkit based on TCT -DISTNAME= sleuthkit-4.3.0 +DISTNAME= sleuthkit-4.4.2 CATEGORIES= sysutils security -REVISION= 0 SHARED_LIBS += tsk 0.0 # 14.0 @@ -18,17 +17,19 @@ PERMIT_PACKAGE_FTP= Yes MASTER_SITES = https://github.com/sleuthkit/sleuthkit/releases/download/${DISTNAME}/ -WANTLIB += c m pthread ${COMPILER_LIBCXX} z +WANTLIB += c m pthread ${COMPILER_LIBCXX} sqlite3 z -CONFIGURE_STYLE = simple +CONFIGURE_STYLE = gnu CONFIGURE_ARGS += --mandir='${PREFIX}/man' \ --disable-java \ ....... $ make show=MAINTAINER Nigel Taylor <ni...@openbsd.org>