4ff16bd58e
While here add DESTDIR support. Changes in 2000.14: Text editing features: * Case-insensitive search (except when searching for an identifier). * New command Alt-x toggles preceding character and its hexadecimal code. Character encoding support enhancements: * Additional option -E? just determines and displays text file encoding(s). * Additional option +E? just determines and displays terminal encoding. * Separated display of "isolated" combining characters (e.g. after TAB). * Improved text encoding auto-detection: * Improved detection of CJK encodings vs. 8-bit encodings. * Added auto-detection of Windows-"ANSI" (CP1252), PC-Latin (CP850), MacRoman. * Improved configuration of auto-detection. Character input enhancements: * New shortcuts for input of plain quote marks (in smart quotes mode). Interworking enhancements: Terminal encoding handling: * Added options -f / -F to indicate limited font coverage of special characters. * Detecting and handling non-Unicode terminal with Arabic ligature joining. * Detecting and handling special width behaviour of rxvt, mlterm, konsole concerning unassigned characters, non-BMP, or non-Unicode characters. * Applying display replacement for illegal Unicode characters by default (codes ending with FFFE/FFFF, surrogates, non-Unicode code points). * Fixed a lot of other remaining width display inconsistencies. * Making use of window focus out/in reports (xterm 224). * Workaround for xterm 224 bug which could lock up the terminal. * Adjusting display details to properties of gnome-terminal, konsole. * Considering termcap information of function key escape sequences. Miscellaneous changes: * Increased speed of some UTF-8 search operations by a factor of ~ 40. * Colour highlighting of DOS/Mac line end indications.
25 lines
682 B
Text
25 lines
682 B
Text
$NetBSD: patch-ac,v 1.3 2007/08/17 23:24:12 tnn Exp $
|
|
|
|
--- src/makefile.bsd.orig 2006-10-18 00:00:00.000000000 +0200
|
|
+++ src/makefile.bsd
|
|
@@ -15,9 +15,9 @@ root = $(INSTALLROOT)
|
|
# (a copy of the mined home page).
|
|
|
|
# directories for target "make install"
|
|
-prefix = $(root)/usr
|
|
+prefix = ${DESTDIR}${PREFIX}
|
|
bindir = $(prefix)/bin
|
|
-mandir = $(prefix)/share/man
|
|
+mandir = $(prefix)/${PKGMANDIR}
|
|
rundir = $(prefix)/share/mined
|
|
# FreeBSD:
|
|
#docdir = $(lprefix)/share/doc/mined
|
|
@@ -96,7 +96,7 @@ SLIB = $(termcap)
|
|
SYSTEM = -Dunix
|
|
|
|
# select operating system environment
|
|
-DEFS = -Dunix
|
|
+DEFS = -Dunix -DPREFIX='"${PREFIX}"'
|
|
|
|
|
|
# collection of system parameters for compilation
|