summaryrefslogtreecommitdiff
path: root/mk/defaults
AgeCommit message (Collapse)AuthorFilesLines
2004-11-12Move PREFER_NATIVE_PTHREADS default setting to from pthread.buildlink3.mkjlam1-1/+6
to defaults/mk.conf, where all defaults should live.
2004-11-05Add a switch SUSE_PREFER which can be set to 9.1 to getwiz1-13/+19
suse91 packages by default.
2004-10-26Modify the comment about FETCH_RESUME_ARGS a bit, to sync withxtraeme1-3/+3
FETCH_OUTPUT_ARGS.
2004-10-262nd round for PKG_RESUME_TRANSFERS:xtraeme1-1/+11
* Add FETCH_OUTPUT_ARGS (new option, defaults to "-o" with NetBSD's ftp(1)) * Use FETCH_OUTPUT_ARGS to move the file transfer to a temporary name on ${DISTDIR}/${DIST_SUBDIR} with extension ".temp" * If temporary file matches the checksum recorded in distinfo, move it to the original name (removing temp file) For example, if you want to use PKG_RESUME_TRANSFERS with wget (pkgsrc/net/wget), the following vars should be defined in mk.conf: FETCH_CMD=wget FETCH_RESUME_ARGS=-c FETCH_OUTPUT_ARGS=-O No need to set these vars when using defaults (NetBSD's ftp(1))
2004-10-21Put back LIBTOOLIZE_PLIST, which I meant to do but didn't commit. This istv1-1/+7
needed by some packages currently which install broken .la files or otherwise don't work with the transform logic yet.
2004-10-12libmikmod is certainly not the only package using USE_ESOUND any longer....tv1-3/+3
2004-10-11Add MASTER_SITE_CYGWIN, to be used for some emulators/cygwin_* packagestv1-3/+12
(mainly to provide Win32 gateway services for Interix hosts).
2004-10-08X11_TYPE=xorg:xtraeme1-3/+1
Blah, again the .pc files problem with compositeext and fixesext, we have the headers but not these files... remove them.
2004-10-08Use builtin versions for Xcomposite and compositeext for X11_TYPE=xorgxtraeme1-3/+5
users.
2004-10-08Changes for meta-pkgs/xorg and friends:xtraeme1-3/+1
Looks like that cannot we use render/randrext builtin versions for meta-pkgs/xorg, because of missing .pc files required to build Xrender and friends, remove them from here. Closes PR pkg/27129 by Cristopher Richards, thanks for the info, I thought they were installed by xorg-libs... (!)
2004-10-07* Make PKGSRC_TOPDIR a private variable by renaming it to _PKGSRC_TOPDIR,jlam1-3/+3
as it's only used internally by bsd.prefs.mk. * Make _PKGSRCDIR a public variable by renaming it to PKGSRCDIR. Also, generate its value from ${_PKGSRC_TOPDIR} so it's less fragile than the old method of stripping off the last two components of ${.CURDIR}. PKGSRCDIR may now be used after bsd.prefs.mk is defined. * Change all references to _PKGSRCDIR to PKGSRCDIR.
2004-10-06Climb up the directory tree to find the top, instead of guessing wherejlam1-6/+6
the top and searching on the way down. Thanks Gavan!
2004-10-06Reorganize some of the files under pkgsrc/mk:jlam2-0/+2470
(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.