Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2001-12-26 | Define a symbol BSD_PREFS_MK that may be checked by Makefile fragments to | jlam | 1 | -1/+13 | |
see whether they are being included from within bsd.prefs.mk or from without. | |||||
2001-12-24 | Initial implementation of pthread.buildlink.mk to transparently allow for | jlam | 1 | -1/+5 | |
using either the native pthread implementation or using a package pthread implementation instead, e.g. pth, ptl2, mit-pthreads, etc. The only currently supported package pthread implementation is pth as it's the only one with a buildlink.mk file. An example usage is: USE_PTHREAD= native pth .include "../../mk/pthread.buildlink.mk" or a fancier example is: USE_PTHREAD= native .include "../../mk/bsd.prefs.mk" .if defined(PTHREAD_TYPE) && (${PTHREAD_TYPE} == "none") CONFIGURE_ARGS+= --without-pthreads .endif .include "../../mk/pthread.buildlink.mk" | |||||
2001-12-12 | Retire USE_CURSES, which was superseded by devel/ncurses/buildlink.mk, and | wiz | 1 | -16/+1 | |
has now been purged from pkgsrc. | |||||
2001-12-12 | Add LOWER_OS_VERSION to match LOWER_OPSYS, LOWER_VENDOR, and LOWER_ARCH | abs | 1 | -1/+4 | |
2001-11-28 | In the odd possible case of someone using "pkgsrc" underneath "src" | tv | 1 | -1/+6 | |
(even though that's still a bad idea), set USETOOLS=no explicitly before including <bsd.own.mk>, and add this also to MAKE_ENV to make BSD-Makefile based packages build properly. | |||||
2001-11-21 | Move some operating-system specific definitions to the individual | agc | 1 | -77/+1 | |
defs.${OPSYS}.mk files. | |||||
2001-11-04 | My thanks to Thorsten - this part of my change for Darwin support was | agc | 1 | -3/+1 | |
lost. However, modify previous change to let Darwin know about SHAREOWN, SHAREGRP and SHAREMODE in a different way - no point in checking for OPSYS here, since every OPSYS has to know about them. | |||||
2001-11-04 | "Darwin" needs to know about SHAREOWN, SHAREGRP and SHAREMODE too. | frueauf | 1 | -2/+2 | |
2001-10-30 | Add initial support for Darwin (1.4) to pkgsrc. | agc | 1 | -9/+20 | |
2001-09-21 | Include "bsd.own.mk" before "bsd.pkg.defaults.mk" because otherwise "?=" | tron | 1 | -7/+7 | |
assignments in "/etc/mk.conf" won't work anymore. | |||||
2001-09-18 | Add a new bsd.pkg.defaults.mk file, derived from the old mk.conf.example. | agc | 1 | -1/+10 | |
This file is "included" automatically before <bsd.own.mk> includes /etc/mk.conf, so that pkgsrc-wide default values are set. It is now possible just to set values in mk.conf only where they differ from the default, thereby easing the problems of updating mk.conf when new values get added. | |||||
2001-08-24 | shuffle some whitespace to make it more obvious what is going on | abs | 1 | -4/+6 | |
2001-08-14 | Add GNU_ARCH.sparc64 entry. | skrll | 1 | -1/+2 | |
This should fix pkg/13714 by Martti Kuparinen <martti.kuparinen@iki.fi> | |||||
2001-07-26 | ZOULARISBASE: If there's no $LOCALBASE/bsd, try $LOCALBASE | hubertf | 1 | -1/+5 | |
2001-07-26 | Close a quote. | hubertf | 1 | -2/+2 | |
Noted by Will Andrews <will@physics.purdue.edu> in private mail. | |||||
2001-07-17 | Switch solaris default LOCALBASE across to /usr/pkg | abs | 1 | -2/+14 | |
2001-07-10 | Check if "${X11BASE}/lib/X11/config/X11.tmpl" exists before searching | tron | 1 | -3/+5 | |
with "grep" through it in Mesa library handling. | |||||
2001-07-10 | Add new variable "SPARC_TARGET_ARCH" used to select the target architecture | tron | 1 | -1/+4 | |
under Solaris/SPARC. Default is "sparcv7". | |||||
2001-07-10 | Use ":=" in assignment of "ZOULARISBASE" because "LOCALBASE" might get | tron | 1 | -2/+4 | |
redefined later. | |||||
2001-07-09 | Provide missing parenthesis for CHECK_XPM. | fredb | 1 | -3/+2 | |
2001-07-06 | Check if "${X11BASE}/lib/X11/config/X11.tmpl" before searching with | tron | 1 | -2/+3 | |
"grep" in it to avoid problems under Solaris. | |||||
2001-07-05 | bsd.prefs.mk: Make OBJECT_FMT work on NetBSD 1.3 | abs | 1 | -1/+12 | |
2001-07-03 | Add GNU_ARCH.powerpc. This fixes some of the recent problems experienced | mjl | 1 | -1/+2 | |
on macppc compiling packages. XXX This should come from bsd.own.mk but doesn't. Why? | |||||
2001-07-02 | Make check for Xpm in XFree86 look like the checks for Mesa and freetype2. | jlam | 1 | -1/+18 | |
2001-06-28 | add an explicite GNU_ARCH.mipsel assignment to work around poor interaction | drochner | 1 | -1/+2 | |
with <bsd.own.mk> | |||||
2001-06-20 | Move default setting of XAW_TYPE to bsd.prefs.mk. | jlam | 1 | -1/+6 | |
2001-06-16 | Add a check for the libGLU which comes with XFree86 4.1.0: HAVE_BUILTIN_GLU | veego | 1 | -1/+13 | |
To be used in the Mesa package. | |||||
2001-06-14 | Put back stuff deleted in last commit. | skrll | 1 | -4/+27 | |
2001-06-14 | Add GNU_ARCH.mipseb (which is just mipseb); now pkgsrc make machinery passes | rafal | 1 | -27/+5 | |
the right (ARCH, VENDOR, OS) tuple down to GNU_CONFIGURE using programs. Fixes PR pkg/13196. | |||||
2001-06-12 | Fix inclusion of defs.*.mk files so that it works from anywhere in the | jlam | 1 | -5/+13 | |
pkgsrc tree that contains a Makefile. | |||||
2001-06-12 | Migrate some OS-specific variable definitions into OS-specific files. | jlam | 1 | -3/+11 | |
Include it in bsd.prefs.mk to allow their use much earlier in Makefiles, and try to use the variable references instead of directly invoking the programs in bsd.prefs.mk and bsd.pkg.mk where possible. | |||||
2001-06-08 | Define "HAVE_OPENWINDOWS" if we are using OpenWindows as X11 distribution | tron | 1 | -1/+6 | |
under Solaris. | |||||
2001-06-07 | Set "X11BASE" much earlier under Solaris to get "USE_MESA" and "USE_XPM" | tron | 1 | -2/+4 | |
working if "X11BASE" is not set by the user. | |||||
2001-05-17 | Default LOCALBASE to /usr/pkg, and override to /usr/local in Solaris case. | abs | 1 | -4/+4 | |
No change in NetBSD case, switches to /usr/pkg in Linux case. | |||||
2001-05-17 | In the Linux case, if MACHINE_ARCH is unknown set it to LOWER_ARCH (it does | abs | 1 | -1/+2 | |
seem a little backwards). | |||||
2001-05-02 | Fix a typo: a = sign should actually be !=. The CHECK_FREETYPE2 stuff | jlam | 1 | -2/+2 | |
should actually work now on non-XFree86-4.0.x systems. | |||||
2001-04-22 | Handle freetype2 package like the MesaLib package as it is bundled with | jlam | 1 | -1/+18 | |
XFree86-4.0.x. Missed committing this file along with the related changes to graphics/freetype/Makefile and mk/bsd.pkg.mk. | |||||
2001-04-08 | Invent ZOULARISBASE, defaulting to $LOCALBASE/bsd, to make it possible | hubertf | 1 | -5/+7 | |
to setup Zoularis (or similar :-) environments to be closer to hier(7). | |||||
2001-03-24 | Fix typo in last commit. | tron | 1 | -2/+2 | |
2001-03-24 | Only enforce the use of Zoularis under SunOS. | tron | 1 | -2/+2 | |
2001-03-23 | Add missing check for NetBSD in last commit. | tron | 1 | -2/+2 | |
2001-03-23 | Provide Zoularis version number as "${ZOULARIS_VERSION}" on non NetBSD | tron | 1 | -1/+10 | |
systems. | |||||
2001-03-19 | add a list of default serial devices on a per machine_arch basis as discussed | dmcmahill | 1 | -1/+38 | |
a while back on tech-pkg. Note that these defaults will not be 100% accurate as different machines with the same MACHINE_ARCH may have different serial hardware. However the default serial device may then be overridden in /etc/mk.conf. This should at least be better than what we had before ("all the world is i386"). | |||||
2001-03-13 | Add an explanatory comment. | agc | 1 | -2/+7 | |
2001-03-13 | Only add DIGEST_VERSION to MAKEFLAGS when we know it's a valid version. | agc | 1 | -7/+5 | |
Addresses PR 12397 | |||||
2001-03-10 | Fix typo. | tron | 1 | -2/+2 | |
2001-03-06 | Move PKGTOOLS_VERSION check to bsd.prefs.mk for speedups in recursive tree ↵ | wiz | 1 | -1/+10 | |
walks.bsd.pkg.mk bsd.prefs.mk Bump required version number of PKGTOOLS to 20010306 for the latest bugfixes and the -V option support. | |||||
2001-03-06 | Add support for message digests other than md5 into pkgsrc. This is done | agc | 1 | -1/+26 | |
by using the pkgsrc/pkgtools/digest package, and adding dependencies in bsd.pkg.mk to make sure that that package is up to date. There is no discernable performance decrease in using sha1 checksums over md5 ones, and most people advocate the use of sha1 or rmd160 over md5. As part of this change, move the initial setting of LOCALBASE, X11BASE and CROSSBASE into bsd.prefs.mk from bsd.pkg.mk. Addresses PR 11809. | |||||
2000-12-03 | Add USE_INET6?=NO in the !(USE_INET6?=YES) case. | wiz | 1 | -1/+3 | |
2000-11-21 | Fix NEED_NCURSES handling: | hubertf | 1 | -4/+4 | |
Let's take timidity, which needs ncurses and tk. By setting NEED_NCURSES=1 and adding it to MAKEFLAGS, all other required pkgs automagically depend on ncurses - tk, tcl (which is slurped in by tk), ... |