summaryrefslogtreecommitdiff
path: root/mk/defaults
AgeCommit message (Collapse)AuthorFilesLines
2022-12-15options.description: Add QT6triaxx1-0/+1
2022-10-25mk: Document the jemalloc option.jperkin1-0/+1
2022-10-25Add description for ps (PostScript) option.prlw11-0/+1
2022-10-17options.description: restore erlang-hipe, still used by erlang21gutteridge1-0/+1
2022-10-17options.description: erlang-hipe is no moregutteridge1-1/+0
2022-09-29Add fpx option descriptionnros1-0/+1
2022-09-29Remove support for Bitrig.charlotte1-2/+2
2022-09-27mk: Enable mktools on supported platforms.jperkin1-8/+8
The default is now auto detection, which will enable mktools on platforms that have set _OPSYS_SUPPORTS_MKTOOLS. Users can still override either way via PKGSRC_USE_MKTOOLS. Please add and enable on other platforms once they have been verified.
2022-09-13mk: describe jansson optionwiz1-0/+1
2022-09-03mk/defaults/options.description: add ruby-unicorntaca1-0/+1
Enable unicorn support.
2022-08-18add option descriptions for sge and slurmthor1-0/+2
2022-08-16defaults/options.description: add lighttpdtaca1-0/+1
Add lighttpd; Enable support for lighttpd web server.
2022-08-13mk: describe some llvm optionstnn1-0/+2
2022-08-08*** empty log message ***wiz1-0/+1
2022-08-01mk: add stack-clash option to PKGSRC_USE_STACK_CHECKwiz1-3/+4
2022-07-16Document openipmi optionleot1-0/+1
From Yuuki Enomoto via PR pkg/56929, thanks!
2022-07-16Document libssh optionleot1-0/+1
From Yuuki Enomoto via PR pkg/56928, thanks!
2022-06-19Document spotify-player image optionpin1-0/+1
2022-06-13rust: For clarity, rename rust-llvm to rust-internal-llvmnia1-1/+1
2022-06-07Document spotify-player optionpin1-0/+1
2022-06-07mk: Add PKGSRC_USE_MKTOOLS support.jperkin1-1/+10
When enabled, pull in the pkgtools/mktools package to use C-based tools for certain parts of the pkgsrc mk infrastructure. Default is off for now while any portability issues are shaken out, but it has been tested successfully on at least illumos, macOS, and NetBSD. The first tool is mk-buildlink-symlinks which creates the buildlink3 symlinks as part of the "wrapper" phase. This significantly improves performance, especially with packages that have a lot of buildlink3 dependencies. For example, the time for "bmake wrapper" in x11/kde-workspace4 goes from: real 3:20.696394375 user 50.553556463 sys 2:23.883823896 to: real 19.873100598 user 8.141441461 sys 11.740602820 It's expected that other tools will be added over time to speed up other parts of the infrastructure.
2022-06-07mk: revert unintended commitwiz1-10/+1
2022-06-07mk: remove documentation for introspection optionwiz2-2/+10
This option is not needed any longer and should be removed from packages that still have it. https://mail-index.netbsd.org/pkgsrc-users/2022/06/06/msg035658.html
2022-06-04mk: revert unintended commitwiz1-10/+1
2022-06-04mk: remove option description for unused optionwiz2-2/+10
2022-05-13mk/defaults: Add a description about sunaudio optionryoon1-0/+1
2022-05-05mk/defaults/mk.conf: Update for editors/emacs28 and editors/emacs27ryoon1-2/+3
Noticed by wiz@. Thank you.
2022-04-14ats2: Optionally build included Emacs mode. Add 'emacs' to supported options.nikita1-0/+1
2022-04-06mk: document xps optionwiz1-0/+1
2022-04-01mk/defaults: document SDL12_TYPEnia1-1/+7
2022-04-01mk/defaults: document RUST_TYPEnia1-1/+8
2022-02-13mk: Flip partial MKRELRO back on now that many problems have been resolved.nia1-3/+3
2022-02-07options.description: add a couple of PHP optionsgutteridge1-0/+2
2022-01-27Add defaults for DQCACHE_{USER,GROUP}.schmonz1-1/+11
2022-01-24defaults/mk.conf: remove some now unused variablesgutteridge1-32/+1
Prune a bunch of variables that haven't been used for years. In some cases, the packages they influenced don't even exist anymore. There may be more of these, this is after a quick pass through.
2022-01-04Provide a default value for TLSWRAPPER_CHROOT.schmonz1-1/+7
2022-01-03kiwiki: add option for choosing markdown backendwiz1-0/+3
From Vladimir Stupin in PR 56602.
2021-12-06Add mongodb3 & mongodb4 to defaults/options.descriptionabs1-0/+2
2021-12-06mk: document pbulk-rsync optionwiz1-0/+1
2021-11-30options.description: add gspell optiongutteridge1-0/+1
2021-11-07mk: revert RELRO default and cease use of wrappers until some morenia1-3/+3
substantial changes to infrastructure and testing can be performed to ensure it's applied universally without breaking anything
2021-11-02mk: Lower default RELRO down from full to partial.nia1-3/+3
Judging by private discussions there's not clear enough consensus that BIND_NOW is beneficial or performant enough to have enabled by default, at least until more benchmarking tests are done.
2021-11-01mk: describe missing musicpd options. sort.wiz1-2/+5
2021-10-12mk: Document pkgin-prefer-gzip option.jperkin1-0/+1
2021-09-27mk: ... and the docs for the defaultsnia1-3/+4
2021-09-27mk: Bump default hardening options.nia1-4/+4
2021-07-20mk/defaults/options.description: +llvm-target-aarch64tnn1-0/+1
2021-06-11Mention consolekitabs1-0/+1
2021-05-30Introduce a new SYSCONFBASE variable (defaults to /etc)khorben1-3/+9
This is part 1 to support additional platforms with the RC scripts provided in pkgsrc, in privileged as well as in unprivileged mode, including on NetBSD (with part 2 in pkgtools/rc.subr). This variable is meant to point to the configuration directory of the base system (as opposed to pkgsrc's own prefix) when it should be used by pkgsrc in special cases (e.g. installing RC scripts), or to point to the existing PKG_SYSCONFBASE directory otherwise (e.g. for any unprivileged bootstrap). This teaches pkgsrc where the RC scripts should be installed, and more importantly, where the local copy of rc.subr can be expected. Part 3 will progressively update each and every RC script to substitute this path as expected. No functional changes are intended in privileged mode without a bootstrap. The only variable affected by this change directly is RCD_SCRIPTS_DIR, which currently remains with the same default of /etc/rc.d, and can be overridden as before. When bootstrapping, SYSCONFBASE also remains with the existing default when no prefix is set or is "/usr/pkg" or "/usr"; it is set to $prefix/etc otherwise. It can be specified specifically with --sysconfbase if necessary. Existing installations or bootstraps are not affected, as this change needs setting SYSCONFBASE in the corresponding $sysconfdir/mk.conf to have an impact. Tested in privileged and unprivileged modes on NetBSD/amd64, and unprivileged mode on Darwin/amd64; submitted for review on tech-pkg@.
2021-05-25+columnstorenia1-0/+1