summaryrefslogtreecommitdiff
path: root/mk
AgeCommit message (Collapse)AuthorFilesLines
2007-02-15Reverted the last change, since it was wrong. In a single shell word, arillig1-2/+2
dollar character does not have to be quoted. Thanks to joerg for pointing me to it.
2007-02-15Fixed shell quoting, noted by pkglint.rillig1-2/+2
2007-02-11add emacs22nox stuffjnemeth1-2/+8
2007-02-10Added a check for PKG_INSTALLATION_TYPES.rillig1-6/+15
2007-02-10Replaced the deprecated PKG_SKIP_REASON with PKG_FAIL_REASON.rillig6-14/+14
2007-02-09The HTTP interface to ftp.fi.netbsd.org has a nasty 404 handler which resultssketch1-2/+2
in missing distfiles retrieving www.nic.funet.fi.file_not_found.html instead of failing and carrying on to the next site. Use FTP instead which does the right thing.
2007-02-09MAKEFLAGS for su-${.TARGET} is ${MAKEFLAGS.su-${.TARGET}},obache1-2/+2
not ${MAKEFLAGS.${.TARGET}} . Fix non-root user update target.
2007-02-07Fixed the detection of config_headers, so that it also catchesrillig1-2/+2
non-standard definitions, like for example in devel/ncurses.
2007-02-07Someone decided to remove gtar without discussing this first, so keepjoerg1-1/+3
track of it here as well.
2007-02-07Added option handlers for all of -fPIC, -fpic, -KPIC, -kPIC,rillig1-3/+7
-xcode=pic13 and -xcode=pic32, as suggested in PR 35555. This also fixes and old bug where -fPIC (32 bit) had been translated to -kpic (13 bit), but apparently that doesn't make a big difference in practice.
2007-02-06Documented NO_BUILD.rillig1-1/+8
2007-02-06Added a new variable wrapper_type to the wrappers, so that therillig3-11/+14
transformations can decide whether they happen in a C or a C++ compiler. Now the wrappers don't depend on the basename of the executed compiler wrapper anymore. Fixes PR 35555.
2007-02-06Some more gcc options I've found on Solaris.rillig1-1/+6
2007-02-06White-space and comment improvements.rillig1-2/+5
2007-02-06Documented PKGNAME and PKGREVISION.rillig2-11/+51
2007-02-06A bit more documentation.rillig1-2/+4
2007-02-06More gcc options.rillig1-2/+40
2007-02-05More documentation for debugging pkgsrc.rillig2-8/+42
2007-02-05Some Makefile.in files start with the letters PACKAGE. NetBSD's file(1)rillig1-2/+2
considers files starting with the letters PACK to be related to Quake.
2007-02-04Some keywords for PKGSRC_LOCKTYPE.rillig1-1/+3
2007-02-02Describe "ucspi-tcp-nodefaultrbl".schmonz1-0/+1
2007-01-30Add FreeBSD 6. From Peter Schuller in private mail.joerg1-4/+6
2007-01-30Remove some legacy variable handling after 2-3 branches.wiz1-16/+1
2007-01-30Remove obsolete EMACS_USE_LEIM after 3 branches.wiz1-6/+1
2007-01-30Remove obsolete IGNORE_RECOMMENDED support after two branches.wiz1-8/+1
2007-01-28Remove old .bulk-not_available (NOT_AVAILABLE_FILE) files that are leftkristerw1-1/+7
from previous run.
2007-01-28More documentation for the purpose of this file and a tiny wordingrillig1-4/+11
improvement for TEST_DIRS.
2007-01-27Support Emacs 22, which is hold in wip/emacs-current. Prompted by wiz.uebayasi1-10/+16
(Should I put a note "emacs22" EMACS_TYPE is experimental somewhere?)
2007-01-27Document TEST_TARGET with help from Alistair Crooks.uebayasi1-1/+4
2007-01-27Sync kde mirrors with reality a bit.wiz1-10/+9
2007-01-26Teach USE_DIRS about kde3.markd1-1/+8
2007-01-25Some Linux distros have gawk and install in /bin.rpaulo1-1/+9
2007-01-25Absolute never use .x11-buildlink. Some cases get nasty to fix, sojoerg1-1/+5
back to this.
2007-01-24Do not create share/skel, nothing installs into it.wiz13-39/+13
2007-01-24Oops, this was meant to go in with the rest of the apr changes.epg1-3/+4
Use devel/apr0 for apache2 and devel/apr and devel/apr-util for apache22.
2007-01-24... and quote the $ for subst so that ${RM} ends up in the final file.joerg1-2/+2
2007-01-24*blush* Fix variable substituation to not substitute the same stringjoerg1-2/+2
twice.
2007-01-24Empty files are so ambiguous, so better leave a friendly message in therillig1-2/+2
STARTFILE.
2007-01-24Quick fix: The main code of the bulk build cannot be run in the shell'srillig1-2/+2
"set -e" mode, since it would fill up the temporary directory. Reverted that change.
2007-01-23Since there are many cases where the string @FOO@ is replaced with therillig1-2/+11
pkgsrc variable ${FOO}, there is now a shorter variant for it. Instead of defining SUBST_SED.*, just say SUBST_VARS.* = FOO.
2007-01-22Add descriptions for anthy-* options. Remove old anthy option names.wiz1-2/+2
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.