mirror of
https://git.freebsd.org/ports.git
synced 2025-06-19 11:40:31 -04:00
- new diff implementation from git.gameoftrees.org/diff.git - new blame algorithm which compares commit N-1 to N - handle binary files in got/tog diff commands; add -a options to force text - consistently label removed files as "/dev/null" in diff headers - add histedit -f flag for folding shortcut - prevent log message loss of folded commits during histedit - tog: show current/total line numbers in diff view header - tog: highlight matched search terms in diff and blame views - tog: reset diff view's scroll position if diff context shrinks too much - tog: make tog diff accept reference and tag arguments; add -w and -C options - tog: new 'tog ref' subcommand which displays references in the repository - tog: fix entry selection when moving to the parent in tree view - tog: fix page-down/page-up scrolling in the tree view - tog: log view now requests more commits when the window expands - tog: fix bug on FreeBSD where pressing 'q' in a child view caused tog to exit - tog: fix move to next/prev commit in diff view if log is not displayed - tog: make ^L in the log view stick to branches/tags selected via -c option - tog: make tree view keep track of branches/tags specified via -c - tog: fix crashes when the log view reloads displayed data - tog: resize events go to child views as well as parent views - tog: move the tree view's selection cursor up if terminal shrinks too much - tog: fix display of lines that end in "\r\n"
11 lines
270 B
Text
11 lines
270 B
Text
--- tog/Makefile.orig 2020-11-10 22:54:37 UTC
|
|
+++ tog/Makefile
|
|
@@ -28,8 +28,4 @@ DPADD = ${LIBZ} ${LIBUTIL}
|
|
NOMAN = Yes
|
|
.endif
|
|
|
|
-realinstall:
|
|
- ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} \
|
|
- -m ${BINMODE} ${PROG} ${BINDIR}/${PROG}
|
|
-
|
|
.include <bsd.prog.mk>
|