summaryrefslogtreecommitdiff
path: root/mk/defaults/obsolete.mk
AgeCommit message (Collapse)AuthorFilesLines
2006-04-07For backwards compatibility ...reed1-1/+8
IGNORE_RECOMMENDED is deprecated and will be removed after 2006Q2 branch. If YES then it sets USE_ABI_DEPENDS=no (Forgot to commit earlier today.)
2006-01-01Remove stuff that was marked for removal after 2005Q4.wiz1-23/+1
2005-12-02Remove legacy option translations for postgresql, they have been here for ↵wiz1-5/+1
over 4 months.
2005-12-02Mark USE_SOCKS handling as to-be-deprecated after 2005Q4.wiz1-9/+9
2005-12-01Mark USE_RSAREF for removal after 2005Q4.wiz1-2/+2
2005-12-01Mark USE_OPENLDAP for removal after 2005Q4.wiz1-2/+2
2005-12-01Remove obsolete USE_INN; LEGACY_VARS handling is in trn's options.mk.wiz1-2/+1
2005-12-01Mark USE_OSS for removal after 2005Q4.wiz1-2/+2
2005-12-01Mark USE_XFACE for removal after 2005Q4.wiz1-2/+2
2005-12-01Mark USE_CANNA, USE_SJ3, and USE_WNN4 for removal after 2005Q4.wiz1-4/+4
2005-12-01Mark some PKG_OPTIONS_LEGACY_VARS for removal after 2005Q4.wiz1-5/+7
2005-10-03Remove some PKG_OPTIONS_LEGACY_VARS that were duewiz1-5/+1
to be removed after pkgsrc-2005Q3.
2005-08-29Map legacy "postgresql*" options to standard "pgsql".tv1-1/+5
2005-08-01Another variable can be removed after the next branch.wiz1-2/+2
2005-08-01Add comment that USE_MILTER legacy handling can be removed after 2005Q3.wiz1-2/+4
2005-08-01Remove some legacy vars that were removed from pkgsrc before the previous ↵wiz1-10/+1
branch.
2005-06-06make legacy variables external:dillo1-10/+10
PKG_LEGACY_OPTIONS PKG_OPTIONS_DEPRECATED_WARNINGS
2005-06-02Fix USE_SOCKS=5 case.wiz1-2/+2
2005-05-31Suggest pam instead of PAM as USE_PAM replacement.wiz1-2/+2
2005-05-31Rename option PAM to pam (so all options are lower case). Backwardsdillo1-1/+3
compatibility provided via PKG_OPTIONS_LEGACY_OPTS.
2005-05-31Packages have no business modifying PKG_DEFAULT_OPTIONS -- it's adillo1-1/+5
user settable variable. Set PKG_SUGGESTED_OPTIONS instead. Also, make use of PKG_OPTIONS_LEGACY_VARS. Reviewed by wiz.
2005-05-08Rewrite how PKG_OPTIONS is computed:dillo1-64/+34
- PKG_SUGGESTED_OPTIONS (set by pkg maintainer in pkg Makefile) lists options enabled by default. - PKG_DEFAULT_OPTIONS (set by user in /etc/mk.conf) enables or disables (when prefixed with `-') options for all packages, takes precedence over PKG_SUGGESTED_OPTIONS - PKG_OPTIONS.foo (set by user in /etc/mk.conf) enables or disables (when prefixed with `-') options for a specific package, takes precedence over PKG_DEFAULT_OPTIONS and PKG_SUGGESTED_OPTIONS Also simplify conversion of legacy USE_XXX variables to options via the new PKG_OPTIONS_LEGACY_VARS variable and emit warnings if legacy variables are in use. Add a new target describe-options that lists all supported options with a one-line description, the options enabled by default and the currently enabled optoions. Reviewed by jlam and wiz. XXX: defaults/options.description has to be filled in XXX: the pkgsrc guide has to be updated
2005-03-28Remove security/cyrus-sasl and security/cy-login. These packagesjlam1-3/+3
tracked the Cyrus SASL 1.5.x releases, which are no longer maintained. Adjust packages to use security/cyrus-sasl2 instead for SASL support. This closes PR pkg/28218 and PR pkg/29736.
2005-03-06Add sasl2 to PKG_DEFAULT_OPTIONS when USE_SASL2 is set,wiz1-2/+2
not sasl. From Lloyd Parkes in PR 29604.
2005-02-07Instantly deprecate USE_PAM from pkgsrc as its value is being set fromjlam1-4/+1
within NetBSD-current's bsd.own.mk, which conflicts with its usage in pkgsrc. The package that use USE_PAM have been converted to use the bsd.options.mk framework. This should fix PR pkg/29257.
2004-11-17Remove some obsolete/deprecated variables that have been in this filejlam1-43/+1
for over two years. They're officially dead now for the upcoming branch and beyond.
2004-10-06Reorganize some of the files under pkgsrc/mk:jlam1-0/+126
(1) defs.${OPSYS}.mk --> platform/${OPSYS}.mk. The "platform" subdirectory is where all of the ${OPSYS}-specific infrastructure logic should reside. (2) bsd.pkg.defaults.mk --> defaults/mk.conf bsd.pkg.obsolete.mk --> defaults/obsolete.mk Renaming bsd.pkg.defaults.mk to defaults/mk.conf is to mimic the way that NetBSD has /etc/rc.conf as well as /etc/defaults/rc.conf, where the latter is a full list of user-settable variables, and the two files share the same name to reinforce the fact /etc/defaults/rc.conf can be directly copied in place as /etc/rc.conf. This is the same relationship shared by defaults/mk.conf and /etc/mk.conf.