summaryrefslogtreecommitdiff
path: root/mk
AgeCommit message (Collapse)AuthorFilesLines
2007-01-22Reverted the change between 1.37 and 1.38.rillig1-2/+1
MANPATH cannot be overridden so easily to make it right for imake Packages. Noticed by Dan.
2007-01-22Add xinit as tool.joerg1-2/+13
2007-01-22A big cleanup:rillig1-66/+40
- The "header" of the build log is always printed, not only when PRECLEAN is set. - The variable "installed" was redundant. Removing it saves 5 lines of code. - When the package is outdated and currently installed, it suffices to just run pkg_delete. The "make deinstall" is too expensive and doesn't do anything further. - Completely rewrote the section that deinstalls unneeded packages. It seems to me that the pkg_info -Q flag has been introduced after the bulk build was initially written, so it wasn't used here. - A package that doesn't get deinstalled with a simple pkg_delete probably has a reason for that. Don't try to run pkg_delete -f after it. - To remove all packages, it isn't necessary to iterate over the installed packages. Just pkg_delete -r "*". - Replaced "required package" with "dependency" in the log messages, since that is shorter. Maybe the term "required package" comes from the time where packages also depended on shared library versions, so that terminology made sense back in 2000. Anyway, that's long ago.
2007-01-21Fixed misleading indentation.rillig1-3/+3
2007-01-21Some variable definitions in mk/defaults/mk.conf have only one word inrillig1-2/+2
the line where the variable name appears.
2007-01-18Backed out my previous change. The variable fetchdir needs to be arillig1-6/+3
relative path. The error message nevertheless includes the full path.
2007-01-18pkgsrc bulk builds need much CPU time, but do they also need much stack?rillig1-3/+4
2007-01-17The sunpro C++ compiler needs its own cache, since cc and CC transformrillig1-2/+3
-Wall to different arguments.
2007-01-17The sunpro wrapper needs to distinguish whether cc or CC is called inrillig1-6/+31
some cases. XXX: There should be more support in the infrastructure for this case.
2007-01-17Documented WRKDIR.rillig1-1/+20
2007-01-17Add coqide option descriptiontonio1-0/+1
2007-01-17Renamed BUILDLINK_TRANSFORM.* to BUILDLINK_FNAME_TRANSFORM.*, to makerillig1-5/+9
clear that these variables are completely unrelated to BUILDLINK_TRANSFORM. Added a legacy check that catches appearances of BUILDLINK_TRANSFORM.*. XXX: Where should incompatible changes in pkgsrc be documented?
2007-01-16change the default user/group for dbus to something <=8 chars since some ↵dmcmahill1-5/+5
systems (eg solaris) need that. Addresses PR/34127
2007-01-16Add modular Xorg support for iceauth and xmessage as tool, nukejoerg1-3/+24
makepsres at the same time. The latter wasn't used in pkgsrc and is related to DPS which is dead.
2007-01-16when using sunpro, go ahead and use the sun fortran compiler insted of f2c. ↵dmcmahill1-9/+23
The former seems to work as well or better
2007-01-16alias f2c-f77 as g77 as well as f77 and f2c-f77. libtool cares.dmcmahill1-2/+2
2007-01-15Made the database lookup for deinstalling the unneeded packages lessrillig1-10/+13
obscure by using awk instead of sed.
2007-01-15Documented PKGDIR.rillig1-1/+18
2007-01-14Options to subprocesses like the assember must pass the transformations.rillig1-5/+2
They are _not_ GCC warnings, although they start with -W.
2007-01-14The new variable SUBST_SKIP_TEXT_CHECK.* can be set to "yes" to do therillig1-2/+14
substitutions in all files, whether or not file(1) says they are text.
2007-01-14The default variable assignment is printed by "make help" again.rillig1-3/+3
Completely empty lines are suppressed.
2007-01-14Inserted an empty line between two paragraphs, so they look a littlerillig1-2/+3
more aesthetic.
2007-01-12Add descriptions for speex, sndfile, samplerate. Sort.wiz1-2/+5
2007-01-12Added the file msg.help, which describes the INFO_MSG, WARNING_MSG,rillig2-1/+21
ERROR_MSG and FATAL_MSG commands.
2007-01-12PKGTOOLS_ENV does not exist anymore.rillig1-5/+1
2007-01-12Fixed the documentation of the PREFIX variable. It cannot be overridden,rillig1-3/+12
neither by the user nor by a package.
2007-01-11When a SUBST change leaves a file as-is, print an informational message.rillig1-3/+4
For all messages, the current SUBST_CLASS is printed, too.
2007-01-11Added the INFO_MSG command, which can be used when the user should berillig1-3/+4
noticed about something that is not severe enough to need a warning. INFO messages go to stdout instead of stderr. Added the :M* modifier to the INSTALL_MACROS to make the resulting command lines somewhat shorter.
2007-01-11MAKE_JOBS is only used in the do-build target, nowhere else.rillig1-3/+4
2007-01-11Bugfix: the first and second paragraph of a topic had not had an emptyrillig1-1/+2
line between them.
2007-01-10It's more informative to use absolute pathnames in error messages thanrillig1-1/+4
just ".".
2007-01-09Add an option to allow a batch mode pcb to be built. Useful for webserverdmcmahill1-0/+1
environments.
2007-01-09Added a typical command for the post-extract target.rillig1-1/+4
2007-01-09Fixed the documentation.rillig1-2/+2
2007-01-09The help topic at the very end of the last file must also be considered.rillig1-20/+25
2007-01-08Packages that are not available on the current platform (and therillig2-13/+36
packages depending on them) are listed in a separate category in the bulk build report.
2007-01-08Shortened the code.rillig1-4/+2
2007-01-08Don't mention -m in the example when the script does not support it.adrianp1-2/+2
2007-01-08gcc2 does not support -std=c99. If c99 is needed, requiregavan1-1/+6
at least gcc 3.0.
2007-01-08Revert, the location of xdg-x11 is hardwired in other places.joerg1-6/+2
2007-01-08Always use xdg-dirs for modular Xorg, xdg-x11-dirs would just redirectjoerg1-2/+6
anyway.
2007-01-08Fixed a syntax error.rillig1-2/+2
2007-01-08MIPSpro knows the -c99, -M and -MDupdate options.rillig1-1/+5
2007-01-08Rewrote the config.h parsing code to work with both autoconf 2.13 andrillig1-20/+20
2.59. Tested with devel/libslang, which is particularly nasty because it comes without a configure.ac file and also does not use the standard config.h filename.
2007-01-08Added two keywords to the description of WRKOBJDIR, since I just cannotrillig1-1/+3
remember whether it's WRKOBJDIR (right) or OBJWRKDIR (wrong).
2007-01-08IRIX patch isn't usable.rillig1-2/+2
2007-01-08Added patch to the built-in IRIX tools. Without that definition, it isrillig1-1/+2
impossible to do any work, since almost all packages have patches and devel/patch has a broken configure script, which makes the build fail.
2007-01-08Added newlines after each paragraph.rillig1-1/+18
2007-01-08In make targets, it is seldomly useful to show the implementation to therillig1-3/+10
user.
2007-01-08Added the variable CONFIG_SHELL_FLAGS that is intended to be set to -xrillig1-2/+20
on the command line when nothing else helps. Added the configure-help target that runs configure --help.