aboutsummaryrefslogtreecommitdiff
path: root/sysutils/mtm
Commit message (Collapse)AuthorAgeFilesLines
* sysutils/mtm: Fix build on older releasesMateusz Piotrowski2021-10-131-1/+1
|
* sysutils/mtm: Update to 1.2.1Mateusz Piotrowski2021-10-103-38/+15
| | | | Changes: https://github.com/deadpixi/mtm/releases/tag/1.2.1
* One more small cleanup, forgotten yesterday.Mathieu Arnold2021-04-071-1/+0
| | | | Reported by: lwhsu
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Let mtm use ncurses from the base system on recent CURRENTMateusz Piotrowski2020-10-141-4/+14
| | | | | | | | | | Also, update manual page installation path. PR: 250227 Submitted by: swills Notes: svn path=/head/; revision=552324
* Update to 1.2.0Mateusz Piotrowski2019-10-283-5/+6
| | | | | | | | Changelog: https://github.com/deadpixi/mtm/releases/tag/1.2.0 Notes: svn path=/head/; revision=515853
* Update to 1.1.0Mateusz Piotrowski2019-09-202-4/+4
| | | | | | | | Reported by: portscout Event: EuroBSDcon 2019 Hackathon Notes: svn path=/head/; revision=512418
* sysutils/mtm: Fix building on 11.2 amd64Mateusz Piotrowski2019-08-091-1/+1
| | | | | | | | | | /usr/bin/ld: undefined reference to symbol `intrflush' (try adding -ltinfow) /usr/local/lib/libtinfow.so: could not read symbols: Bad value Reported by: pkg-fallout Notes: svn path=/head/; revision=508478
* sysutils/mtm: Fix a typo in COMMENTMateusz Piotrowski2019-08-061-1/+1
| | | | | | | Reported by: kai Notes: svn path=/head/; revision=508281
* sysutils/mtm: Update to 1.0.1Mateusz Piotrowski2019-08-064-39/+37
| | | | | | | Reported by: Repology Notes: svn path=/head/; revision=508255
* Add gnu99 to USE_CSTD to fix builds on gcc-based archs.Mark Linimon2018-09-181-0/+1
| | | | | | | | | Tested on powerpc64, amd64. Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=479979
* Add sysutils/mtm:Kirill Ponomarev2018-05-115-0/+84
mtm is the Micro Terminal Multiplexer, a terminal multiplexer. It has four major features/princples: - Simplicity: there are three commands (change focus, split, close). There are no modes, no dozens of commands, no crazy feature list. - Compatibility: mtm emulates a classic ANSI text terminal. That means it should work out of the box on essentially all terminfo/termcap-based systems (even pretty old ones), without needing to install a new termcap entry. - Size mtm is small. The entire project is around 1000 lines of code. - Stability: mtm is "finished" as it is now. You don't need to worry about it changing on you unexpectedly. The only changes that can happen at this point are: - Bug fixes. - Translation improvements. - Accessibility improvements. - Fixes to keep it working on modern OSes. WWW: https://github.com/deadpixi/mtm PR: 228152 Submitted by: 0mp@FreeBSD.org Reviewed by: tobik Notes: svn path=/head/; revision=469648