head 1.3; access; symbols pkgsrc-2019Q3:1.2.0.42 pkgsrc-2019Q3-base:1.2 pkgsrc-2019Q2:1.2.0.40 pkgsrc-2019Q2-base:1.2 pkgsrc-2019Q1:1.2.0.38 pkgsrc-2019Q1-base:1.2 pkgsrc-2018Q4:1.2.0.36 pkgsrc-2018Q4-base:1.2 pkgsrc-2018Q3:1.2.0.34 pkgsrc-2018Q3-base:1.2 pkgsrc-2018Q2:1.2.0.32 pkgsrc-2018Q2-base:1.2 pkgsrc-2018Q1:1.2.0.30 pkgsrc-2018Q1-base:1.2 pkgsrc-2017Q4:1.2.0.28 pkgsrc-2017Q4-base:1.2 pkgsrc-2017Q3:1.2.0.26 pkgsrc-2017Q3-base:1.2 pkgsrc-2017Q2:1.2.0.22 pkgsrc-2017Q2-base:1.2 pkgsrc-2017Q1:1.2.0.20 pkgsrc-2017Q1-base:1.2 pkgsrc-2016Q4:1.2.0.18 pkgsrc-2016Q4-base:1.2 pkgsrc-2016Q3:1.2.0.16 pkgsrc-2016Q3-base:1.2 pkgsrc-2016Q2:1.2.0.14 pkgsrc-2016Q2-base:1.2 pkgsrc-2016Q1:1.2.0.12 pkgsrc-2016Q1-base:1.2 pkgsrc-2015Q4:1.2.0.10 pkgsrc-2015Q4-base:1.2 pkgsrc-2015Q3:1.2.0.8 pkgsrc-2015Q3-base:1.2 pkgsrc-2015Q2:1.2.0.6 pkgsrc-2015Q2-base:1.2 pkgsrc-2015Q1:1.2.0.4 pkgsrc-2015Q1-base:1.2 pkgsrc-2014Q4:1.2.0.2 pkgsrc-2014Q4-base:1.2 pkgsrc-2014Q3:1.1.0.2 pkgsrc-2014Q3-base:1.1; locks; strict; comment @# @; 1.3 date 2019.10.22.16.37.05; author khorben; state dead; branches; next 1.2; commitid LOlGjvar2Ze0MSHB; 1.2 date 2014.12.09.14.37.06; author khorben; state Exp; branches; next 1.1; commitid 6OhsJBiL14gcdn1y; 1.1 date 2014.08.02.14.11.08; author khorben; state Exp; branches; next ; commitid opOwdmeFunYlhNKx; desc @@ 1.3 log @Update pev to version 0.80 The new patches fix compatibility with OpenSSL 1.1.0, and attempt to fix the build on FreeBSD, NetBSD, and OpenBSD. It does not link on NetBSD (like the previous version, 0.70) but it does on macOS. There was no changelog upstream. @ text @$NetBSD: patch-lib_libpe_Makefile,v 1.2 2014/12/09 14:37:06 khorben Exp $ Fixed generation and installation of the libpe shared library on NetBSD --- lib/libpe/Makefile.orig 2013-12-27 10:39:52.000000000 +0000 +++ lib/libpe/Makefile @@@@ -70,6 +70,8 @@@@ libpe: CPPFLAGS += -D_GNU_SOURCE libpe: $(libpe_OBJS) ifeq ($(PLATFORM_OS), Linux) $(LINK) -shared -Wl,-soname,$(LIBNAME).so.1 $(LDFLAGS) -o $(LIBNAME).so $^ +else ifeq ($(PLATFORM_OS), NetBSD) + $(LINK) -shared -Wl,-soname,$(LIBNAME).so.1 $(LDFLAGS) -o $(LIBNAME).so $^ else ifeq ($(PLATFORM_OS), Darwin) $(LINK) -headerpad_max_install_names -dynamiclib \ -flat_namespace -install_name $(LIBNAME).$(VERSION).dylib \ @@@@ -88,6 +90,10 @@@@ ifeq ($(PLATFORM_OS), Linux) $(INSTALL_DATA) $(LIBNAME).so $(DEST)/$(LIBNAME).so.$(VERSION) cd $(DEST); $(SYMLINK) $(LIBNAME).so.$(VERSION) $(LIBNAME).so cd $(DEST); $(SYMLINK) $(LIBNAME).so.$(VERSION) $(LIBNAME).so.1 +else ifeq ($(PLATFORM_OS), NetBSD) + $(INSTALL_DATA) $(LIBNAME).so $(DEST)/$(LIBNAME).so.$(VERSION) + cd $(DEST); $(SYMLINK) $(LIBNAME).so.$(VERSION) $(LIBNAME).so + cd $(DEST); $(SYMLINK) $(LIBNAME).so.$(VERSION) $(LIBNAME).so.1 else ifeq ($(PLATFORM_OS), Darwin) $(INSTALL_DATA) $(LIBNAME).dylib $(DEST)/$(LIBNAME).$(VERSION).dylib cd $(DEST); $(SYMLINK) $(LIBNAME).$(VERSION).dylib $(LIBNAME).dylib @@@@ -102,6 +108,8 @@@@ installdirs: strip-binaries: ifeq ($(PLATFORM_OS), Linux) $(STRIP) $(LIBNAME).so +else ifeq ($(PLATFORM_OS), NetBSD) + $(STRIP) $(LIBNAME).so else ifeq ($(PLATFORM_OS), Darwin) $(STRIP) $(LIBNAME).dylib else ifeq ($(PLATFORM_OS), CYGWIN) @ 1.2 log @Updated security/pev to 0.70 Changelog for this version: pev 0.70 - December 26, 2013 ! Missing full/English documentation. ! Missing valid XML and HTML output formats. ! pestr: no support for --net option when parsing unicode strings. ! pestr: unable to handle too big strings. * libpe: rewritten, now using mmap. (Jardel Weyrich). * pestr: added countries domains suffixes. * readpe and peres: output enhancements (Jardel Weyrich). + pehash: sections and headers hash calculation (Jardel Weyrich). + pehash: ssdeep fuzzy hash calculation. + pehash: support for new digest hashes like sha512, ripemd160 and more. + peres: added new tool to analyze/extract PE resources (Marcelo Fleury). + pescan: cpl malware detection. + pescan: undocumented anti-disassembly fpu trick detection. + pesec: show and extract cerfiticates from digitally signed binaries (Jardel Weyrich). - readpe can't show functions exported by ID only. - readpe: fixed subsystem types (Dmitry Mostovenko). @ text @d1 1 a1 1 $NetBSD$ @ 1.1 log @Imported security/pev version 0.60 from wip pev is a PE file analysis toolkit that includes some nice programs to work with PE files in many systems. It can be useful for programmers, security analysts and forensic investigators. It's licensed under GPLv3+ terms. @ text @d5 1 a5 1 --- lib/libpe/Makefile.orig 2012-10-31 03:59:14.000000000 +0000 d7 2 a8 2 @@@@ -30,6 +30,8 @@@@ all: pe.c pe.h $(CC) -o $(LIBNAME).o $(CFLAGS) $(SRC) d10 1 a10 1 $(CC) -shared -Wl,-soname,$(LIBNAME).so.1 -o $(LIBNAME).so $(LIBNAME).o d12 1 a12 1 + $(CC) -shared -Wl,-soname,$(LIBNAME).so.1 -o $(LIBNAME).so $(LIBNAME).o d14 1 a14 1 $(CC) -headerpad_max_install_names -dynamiclib \ d16 2 a17 2 @@@@ -46,6 +48,11 @@@@ ifeq ($(PLATFORM_OS), Linux) $(INSTALL) $(LIBNAME).so $(DEST)/$(LIBNAME).so.$(VERSION) d21 1 a21 2 + $(STRIP) $(LIBNAME).so + $(INSTALL) $(LIBNAME).so $(DEST)/$(LIBNAME).so.$(VERSION) d25 9 d35 1 a35 1 $(INSTALL) $(LIBNAME).dylib $(DEST)/$(LIBNAME).$(VERSION).dylib @