summaryrefslogtreecommitdiff
path: root/mk/defaults
AgeCommit message (Collapse)AuthorFilesLines
2005-07-21Describe ggi option.wiz1-0/+1
2005-07-21Replace GECKO_PROVIDER with option group. New options are firefoxdillo2-7/+3
and mozilla. Backwards compatibilty is provided. Reviewed by wiz.
2005-07-21Do not list all licenses. Mention that packageswiz1-117/+7
for which you need to accept a license will display the necessary information. ok gdt@.
2005-07-19Distinguish options specific to each of the following packages:schmonz1-10/+10
djbdns, ezmlm, qmail.
2005-07-19Note that OSI/FSF approved licenses do not require a LICENSE variable,gdt1-3/+4
clarifying from definition by example.
2005-07-19Remove shareware license type; it was ill-defined, and no package still uses it.wiz1-4/+2
2005-07-18Describe althash, badrcptto, bigdns, darwin, ignoreip2, netqmail,schmonz1-16/+15
outgoingip, qregex, realrcptto, sasl, starttls, syncdir, tinydns64, tls, viruscan. Remove nullenvsender (obsolete).
2005-07-18Add an aalib option to mplayer. Patch from Leonard Schmidt on tech-pkg.wiz1-0/+1
2005-07-14document option jasperdillo1-0/+1
2005-07-14sortdillo1-5/+5
2005-07-11Document UNPRIVILEGED and default to NO so that it can be used by thesketch1-1/+6
bulk build scripts.
2005-06-08Add description for emacs-xaw3d.markd1-0/+1
2005-06-08Remove obsolete EMACS_USE_XAW3D.markd1-6/+1
2005-06-07Add description for mjpegtools-cmov, from Geert Hendrickx in PR 30366.wiz1-0/+1
2005-06-06make legacy variables external:dillo1-10/+10
PKG_LEGACY_OPTIONS PKG_OPTIONS_DEPRECATED_WARNINGS
2005-06-04Describe new xterm options, from Jeroen Ruigrok van der Wervenwiz1-0/+3
2005-06-03Remove obsolete USE_GIF variable.wiz1-8/+1
2005-06-03Describe options used in inputmethod/uim and www/w3m.uebayasi1-6/+9
2005-06-03Describe idea option.wiz1-1/+1
2005-06-03Remove obsolete USE_IDEA variable.wiz1-7/+1
2005-06-03Remove USE_ESOUND, all users have been converted.wiz1-7/+1
2005-06-03"socks" option has been removed, remove it here too.wiz1-1/+0
2005-06-03Remove gtk2 options description now that option has been removed :)wiz1-1/+0
2005-06-03Add gtk2 option description.wiz1-0/+1
2005-06-02Fix USE_SOCKS=5 case.wiz1-2/+2
2005-06-02Document socks4 and socks5, and mention that socks should not be used.wiz1-3/+3
2005-06-02Fix a typo, and remove package names fromwiz1-4/+4
descriptions for package-specific options.
2005-06-02Remove obsolete PINFO* variable.wiz1-7/+1
2005-06-02Document pinfo options.wiz1-0/+1
2005-06-02Remove obsolete W3M* variables.wiz1-16/+1
2005-06-02Document w3m options.wiz1-0/+3
2005-06-02Remove obsolete GOLEM_WITH_SOUND variable.wiz1-6/+1
2005-06-02Add an article.wiz1-1/+1
2005-06-02Remove obsoleted MPLAYER_* variables.wiz1-23/+1
2005-06-02Remove obsolete blender options.wiz1-31/+1
2005-06-02Describe blender options, and sort.wiz1-3/+5
2005-06-01remove obsolete variable BATTLEBALL_USE_MESAdillo1-7/+1
2005-06-01Remove two obsolete QPOPPER variables.wiz1-11/+1
2005-06-01Document some more options.wiz1-5/+6
2005-06-01Remove USE_MMX section; all USE_MMX users have been convertedwiz1-7/+1
to the mmx option.
2005-06-01Document mmx.wiz1-1/+1
2005-06-01Remove obsolete ATERM variables.wiz1-21/+1
2005-06-01Document aterm options.wiz1-0/+4
2005-06-01Describe lprng-* options.wiz1-0/+2
2005-06-01Remove obsolete LPRNG* options.wiz1-11/+1
2005-06-01Convert the mplayer* and mencoder* packages to the options framework.jmmv1-6/+18
This means that the MPLAYER_ENABLE_RUNTIME_CPU_DETECTION, MPLAYER_DISABLE_DRIVERS and MPLAYER_USE_MEDIALIB become deprecated (although still recognized). Visible changes in the resulting binary packages should be minimum by default (everything that was enabled before still is, and the same dependencies are kept). A notable addition, though, is the support for user-defined menus, closing PR pkg/29784. Also note that (almost) all dependencies have now a corresponding option to disable them in case you want to get a minimalist mplayer package. 'make show-options' is your friend ;) With thanks to wiz@ and dillo@ for their comments and help.
2005-06-01Remove ipv6 -- use inet6 instead.wiz1-1/+0
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-3/+1
Several changes are involved since they are all interrelated. These changes affect about 1000 files. The first major change is rewriting bsd.builtin.mk as well as all of the builtin.mk files to follow the new example in bsd.builtin.mk. The loop to include all of the builtin.mk files needed by the package is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk is now included by each of the individual builtin.mk files and provides some common logic for all of the builtin.mk files. Currently, this includes the computation for whether the native or pkgsrc version of the package is preferred. This causes USE_BUILTIN.* to be correctly set when one builtin.mk file includes another. The second major change is teach the builtin.mk files to consider files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most of the builtin.mk files test for the presence of built-in software by checking for the existence of certain files, e.g. <pthread.h>, and we now assume that if that file is under ${LOCALBASE}, then it must be from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The exceptions to this new check are the X11 distribution packages, which are handled specially as noted below. The third major change is providing builtin.mk and version.mk files for each of the X11 distribution packages in pkgsrc. The builtin.mk file can detect whether the native X11 distribution is the same as the one provided by pkgsrc, and the version.mk file computes the version of the X11 distribution package, whether it's built-in or not. The fourth major change is that the buildlink3.mk files for X11 packages that install parts which are part of X11 distribution packages, e.g. Xpm, Xcursor, etc., now use imake to query the X11 distribution for whether the software is already provided by the X11 distribution. This is more accurate than grepping for a symbol name in the imake config files. Using imake required sprinkling various builtin-imake.mk helper files into pkgsrc directories. These files are used as input to imake since imake can't use stdin for that purpose. The fifth major change is in how packages note that they use X11. Instead of setting USE_X11, package Makefiles should now include x11.buildlink3.mk instead. This causes the X11 package buildlink3 and builtin logic to be executed at the correct place for buildlink3.mk and builtin.mk files that previously set USE_X11, and fixes packages that relied on buildlink3.mk files to implicitly note that X11 is needed. Package buildlink3.mk should also include x11.buildlink3.mk when linking against the package libraries requires also linking against the X11 libraries. Where it was obvious, redundant inclusions of x11.buildlink3.mk have been removed.
2005-06-01Remove obsolete DELIVER_SUID.wiz1-6/+1
2005-06-01Document deliver-suid.wiz1-0/+1