f940f126f9
* This version of biew works on NetBSD/amd64 at least. Changelog: 6.0.1: It supports NEW Intel's AES, AVX, FMA and AMD's XOP, FMA4, CVT16 instructions sets. 6.0.2: It contains minor bug-fixes in 64-bit mode. I hope this release will finalize series of changes for 6.0.x branch. 6.0.1: It contains minor bug-fixes in 64-bit mode. 5.7.3.1: This release fixes one accidental bug in AMD64 disassembler 5.7.3: unknown. 5.7.2: unknown. 5.7.1: Changes: * Minor fixes and cleanups. + feature request: [ 1782395 ] Make Goto (F5) accept percentages 5.7.0: Changes: * Fixes by Daniel Borca <dborca@yahoo.com>: * unix/vio.c use the correct alternate set for line drawing. see http://www.in-ulm.de/~mascheck/various/alternate_charset/ * configure: accept linux and Linux from uname. i?86 is really ia32. * makefile: install xlt and man pages correctly. * unix/os_dep.c: DATADIR conforming to configure. Fix duplicate biew name in configuration file * ia32/_inlines.h: replace xlat with regular table indexing (to be able to test biew with valgrind). * linux/keyboard.c: fix 'I/O possible' error; it seems to be appearing spuriously between __init_vio and the end of __init_keyboard, where SIGIO is hooked as event handler. I think it's harmless to just or maybe block SIGIO events until we are finished setting up the keyboard. + Assembling through the nasm/yasm. Patch by <mauro.giachero@gmail.com> + New opcodes (SSSE3, SSE4.1, SSE4.2, SSE4a) in x86 disassembler. + Provide alternative insns hilighting in ix86-32 disassembler. * Fixed bug of repainting in hexmode when up_arrow key pressed and filepos == 0. * Fixed REX handling in x86_64 disassembler * Fixed CPU information dialog + New disassemblers: + ARM32 / XScale + AIM Power5+ ISA + Added support for PE32+ file format. + NEW: User defined names aka bookmarks (Ctrl-F10)!!! * Many other improvements and fixes. 5.6.4: This is release has goal to fix loopback in biew during file format detection. Also it has some other changes: * Fixed bug #1695783 (biew 5.6.3 - Bug in file detection due mp3.c) * Improved multimedia format support + Added initial support for Sis and SisX formats of Symbian OS * Fixed bug #1696442 (-extraincdir and -extralibdir can only handle one extra lib.) * Added endian selection in hexmode viewer 5.6.3: This minor featues enhancement release which adds support for multimedia file formats
43 lines
2 KiB
Text
43 lines
2 KiB
Text
$NetBSD: patch-aa,v 1.4 2013/06/30 13:39:05 ryoon Exp $
|
|
|
|
* Install with BSD_INSTALL tools.
|
|
|
|
--- makefile.orig 2009-09-23 07:17:50.000000000 +0000
|
|
+++ makefile
|
|
@@ -264,23 +264,19 @@ biewlib/sysdep/ia32/qnx/3sto3r.o:
|
|
endif
|
|
|
|
install:
|
|
-ifeq ($(INSTALL),)
|
|
- @echo "*** 'install' utility was not found and you can't run automatic"
|
|
- @echo "*** installation. Please download 'fileutils' from ftp://ftp.gnu.org and"
|
|
- @echo "*** install them to have possibility perform autiomatic installation"
|
|
- @echo "*** of this project"
|
|
- @exit 1
|
|
-endif
|
|
- $(INSTALL) -D -m 755 $(TARGET) $(DESTDIR)$(PREFIX)/bin/$(TARGET)
|
|
- $(INSTALL) -D -c -m 644 doc/biew.1 $(DESTDIR)$(PREFIX)/man/man1/biew.1
|
|
- $(INSTALL) -D -c -m 644 bin_rc/biew.hlp $(DESTDIR)$(DATADIR)/biew.hlp
|
|
- mkdir --parents $(DESTDIR)$(DATADIR)/skn
|
|
- $(INSTALL) -D -c -m 644 bin_rc/skn/*.skn $(DESTDIR)$(DATADIR)/skn
|
|
- mkdir --parents $(DESTDIR)$(DATADIR)/syntax
|
|
- $(INSTALL) -D -c -m 644 bin_rc/syntax/*.stx $(DESTDIR)$(DATADIR)/syntax
|
|
- mkdir --parents $(DESTDIR)$(DATADIR)/xlt/russian
|
|
- $(INSTALL) -D -c -m 644 bin_rc/xlt/russian/*.xlt $(DESTDIR)$(DATADIR)/xlt/russian
|
|
- $(INSTALL) -D -c -m 644 bin_rc/xlt/*.xlt bin_rc/xlt/readme $(DESTDIR)$(DATADIR)/xlt
|
|
+ ${BSD_INSTALL_PROGRAM_DIR} $(DESTDIR)$(PREFIX)/bin
|
|
+ ${BSD_INSTALL_PROGRAM} $(TARGET) $(DESTDIR)$(PREFIX)/bin/$(TARGET)
|
|
+ ${BSD_INSTALL_MAN_DIR} ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
|
|
+ ${BSD_INSTALL_MAN} doc/biew.1 $(DESTDIR)$(PREFIX)/${PKGMANDIR}/man1/biew.1
|
|
+ ${BSD_INSTALL_DATA_DIR} $(DESTDIR)$(DATADIR)
|
|
+ ${BSD_INSTALL_DATA} bin_rc/biew.hlp $(DESTDIR)$(DATADIR)/biew.hlp
|
|
+ mkdir -p $(DESTDIR)$(DATADIR)/skn
|
|
+ ${BSD_INSTALL_DATA} bin_rc/skn/*.skn $(DESTDIR)$(DATADIR)/skn
|
|
+ mkdir -p $(DESTDIR)$(DATADIR)/syntax
|
|
+ ${BSD_INSTALL_DATA} bin_rc/syntax/*.stx $(DESTDIR)$(DATADIR)/syntax
|
|
+ mkdir -p $(DESTDIR)$(DATADIR)/xlt/russian
|
|
+ ${BSD_INSTALL_DATA} bin_rc/xlt/russian/*.xlt $(DESTDIR)$(DATADIR)/xlt/russian
|
|
+ ${BSD_INSTALL_DATA} bin_rc/xlt/*.xlt bin_rc/xlt/readme $(DESTDIR)$(DATADIR)/xlt
|
|
uninstall:
|
|
$(RM) $(DESTDIR)$(PREFIX)/bin/$(TARGET)
|
|
$(RM) $(DESTDIR)$(DATADIR)/skn/*
|