aboutsummaryrefslogtreecommitdiffhomepage
path: root/freebsd
AgeCommit message (Collapse)AuthorFilesLines
2024-08-23fully support out of tree buildsRobin Haberkorn1-3/+1
* You no longer have to copy contrib/scintilla, contrib/scinterm and contrib/lexilla manually to the build directory. * It turns out, that Scintilla/Lexilla was supporting this since 2016. Scintilla allows pointing to a source directory (srdir) and Lexilla to a binary directory (DIR_O). * For Scinterm I opened a pull request in order to add srcdir/basedir variables: https://github.com/orbitalquark/scinterm/pull/21 * `make distcheck` is therefore now also fixed. * The FreeBSD package is now allowed to build out of source. I haven't tested it yet. * See also https://github.com/ScintillaOrg/lexilla/issues/266
2024-08-18added troff/nroff lexerRobin Haberkorn1-0/+1
* This is optimized for Groff, but works for Heirloom Troff and Neatroff as well. Currently, the Heirloom and Neatroff requests are just added ontop of the Groff ones. Theoretically, we could also try to separate the keyword lists into a base K&R set with Groff, Heirloom and Neatroff ontop. * The lexer necessarily has many restrictions, as Troff is fundamentally unparseable (like classic TECO) and needs a lot of per-request knowledge. * The "*.mm" extension has been removed from the lexers/cpp.tes. I don't know what language this was for, and I prefer `*.mm` files to be considered Troff. * Temporarily changed the lexilla submodule URL. The corresponding Lexila lexer is in the process of being upstreamed. Once it is, I will probably revert the submodule to the official repository, as the "troff" branch is not stable (can be rebased).
2024-01-22FreeBSD port: allow `make test` and appease `make check-plist`Robin Haberkorn1-0/+6
2024-01-22FreeBSD port: moved xvfb-run.sh to scripts/ subdirRobin Haberkorn2-1/+1
2024-01-21FreeBSD port: I am now the maintainer and will try to submit it to the ↵Robin Haberkorn1-2/+2
FreeBSD ports tree * see https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=276492 * also the license is GPLv3+ to be precise
2023-07-23FreeBSD port: fixed the LEXILLA optionRobin Haberkorn2-76/+77
* The lexer scripts are not installed if the LEXILLA option is disabled, so they need to be excluded from pkg-plist.
2023-07-23FreeBSD port: modified the pkg-message.in to use UCL formatRobin Haberkorn1-0/+7
* The plain text format is deprecated. * Thanks to Bob Eager.
2023-07-03fixup 69b4bbb8341cfda5d8456ccbf951034d63e4340c: added missing Makefile for ↵Robin Haberkorn1-0/+87
FreeBSD port * Makefiles are in .gitignore.
2023-07-02added FreBSD port (for ports tree)Robin Haberkorn5-0/+236
* it is supposed to be mainstreamed, but this did not yet happen * even if it will eventually become part of the ports tree, I won't have access to this repo and could not keep it up to date. But I can keep this copy here up to date and it can serve as an upstream source for the ports tree maintainer. * Also, it can be used to build FreeBSD binary packages even now without being part of the official ports tree.