summaryrefslogtreecommitdiff
path: root/mk/defs.FreeBSD.mk
AgeCommit message (Collapse)AuthorFilesLines
2004-04-14Fix ECHO_N (hi tv!).xtraeme1-2/+2
2004-04-14Add maximum command line length check, pointed out by jmmv@.xtraeme1-1/+8
2004-04-14Add BRANDELF, needed for linux emulation.xtraeme1-1/+2
2004-04-07Convert "${ECHO} -n" to "${ECHO_N}", and introduce that into the defs.*tv1-1/+2
files. On most platforms this resolves back to "${ECHO} -n".
2004-03-11Get rid of all occurrences of cpp-like tests for ${OPSYS} inagc1-1/+2
bsd.pkg.mk, and use the abstracted means of determining generic shared lib type per operating system.
2004-03-09DEFAULT_SERIAL_DEVICE is /dev/cuaa0 not /dev/null.xtraeme1-3/+3
2004-01-31Add some new variables for manual pages when using imake.xtraeme1-1/+5
They are: o IMAKE_KERNMAN_DIR (man4 or cat4) o IMAKE_MISCMAN_DIR (man7 or cat7) o IMAKE_KERNMAN_SUFFIX o IMAKE_MISCMAN_SUFFIX Ok'ed by Hubert Feyrer in private email.
2004-01-31Fix IMAKE_MAN_SOURCE_PATH and IMAKE_MANNEWSUFFIX, this change shouldxtraeme1-4/+3
fix a bunch of packages using USE_IMAKE.
2004-01-27Replace all occurrences of the "MAIL" definition with MAIL_CMD, sinceagc1-2/+2
some shells can set MAIL to be the mailbox of the user, and environment variables will override assignments in make when using conditional assignments.
2003-12-16Introduce command MAIL. It will be used to send messages like this:heinz1-1/+2
echo "message" | ${MAIL} -s"subject" add@ress.example
2003-12-16Allow _PATCH_BACKUP_ARG to be overridden in /etc/mk.conf (in order to use ↵heinz1-2/+2
different patch programs). Ok by agc
2003-10-26don't build HTML man pages.grant1-1/+3
2003-09-23add a TAR definition for a suitable tar implementation, notgrant1-1/+6
necessarily GNU tar. XXX GTAR should probably always point to real GNU tar later.
2003-09-14-lpthread is a no-op on Darwin, but it messes up buildlink. So add a newdanw1-1/+2
flag _OPSYS_PTHREAD_AUTO ("yes" for Darwin, "no" for everyone else) and make pthread.buildlink2.mk do basically nothing in that case.
2003-09-02Merge pkgviews-mk branch into the HEAD by running:jlam1-1/+1
cd pkgsrc/mk cvs update -Pd -A cvs update -Pd -j pkgviews-mk-base -j pkgviews-mk
2003-08-26Create a symlink from the "make" requested by the package intojlam1-2/+1
${TOOLS_DIR}/bin/make. If a package wants GNU make, then it should set: USE_GNU_TOOLS+= make in the package Makefile. Allow for USE_GMAKE to continue to work until we get a chance to sweep through pkgsrc and remove the usage of this now-redundant variable. This change allows us to avoid patching makefiles that use a bare "make" command to invoke sub-make processes. Idea suggested by salo@netbsd.org in pkg/22509.
2003-04-15add OPSYS_{,NO_}WHOLE_ARCHIVE_FLAG which defines the argument passedgrant1-1/+6
to the linker to (not) extract all symbols from static archives and export these variables to packages as {,NO_}WHOLE_ARCHIVE_FLAG. these are not currently set for IRIX.
2003-03-04Move M4 default definition into the defs.$OPSYS.mk files: unconditionallyseb1-1/+2
set it to /usr/bin/m4 for everyone, at least for now.
2003-02-28Add definitions for HOSTNAME_CMD, so that just-in-time-su doesn't failjschauma1-1/+2
on Irix. Noted and suggested by Pavel Cahyna in a private email.
2003-02-26Add defaults for IMAKE_MAN_DIR and friends.jschauma1-1/+12
Until we determine better values, use NetBSD defaults: currently, package _not_ using IMAKE_* install there anyway, so if packages work this way, all's well. If not, then they were broken to begin with and need attention.
2003-02-26prefer PREFIX/bin/pax if it exists.grant1-1/+5
2003-02-21use the bootstrap versions of tar and mtree, if they exist.grant1-3/+7
2003-01-15Make BUILD_DIR always point to a physical path by invoking /bin/pwd insteadjlam1-1/+2
of relying on the shell's builtin pwd. This makes BUILD_DIR consistently point to the correct directory regardless of the definition of SHELL. This fixes elusive some buildlink2 errors due to the fact that BUILDLINK_DIR is derived from BUILD_DIR and some paths were incorrectly being translated.
2003-01-10Install a ${PREFIX}/bin/shlibtool as part of the devel/libtool-basejlam1-2/+1
package. shlibtool will not build static libraries. Add handling in bsd.pkg.mk for a variable named "SHLIBTOOL_OVERRIDE" that is analogous to LIBTOOL_OVERRIDE and causes any listed libtool scripts to be replaced with a symlink to shlibtool, and teach buildlink2 about shlibtool. Bump PKGREVISION of devel/libtool* packages to 11.
2002-12-18Introduce _OPSYS_HAS_INET6, and use it to determine the defaultschmonz1-1/+6
value of USE_INET6.
2002-12-16Add TEE and TSORT (required for bulk builds).salo1-1/+3
2002-12-15Add DATE and NICE (required for bulk builds).salo1-1/+3
2002-12-15Add FGREP.salo1-1/+2
2002-12-03Eliminate another usage of ${OPSYS} in bsd.pkg.mk - realy on Darwinagc1-1/+2
defining _OPSYS_PERL_REQD to the correct value to make sure there's a valid perl version for that platform.
2002-12-03Add a layer of abstraction into bsd.pkg.mk for Java settings - set theagc1-1/+2
path to the java home directory depending upon whether the operating system includes Java by default. Use the operating system-dependent definitions files to set this value.
2002-12-03Use ${_PATCH_CAN_BACKUP} rather than hardcoding an OPSYS value intoagc1-1/+2
the logic for doing backups when applying patches, and set the value accordingly in the opsys-dependent defs file.
2002-12-03Use a more generic way of determining, on an opsys-dependent basis,agc1-1/+2
whether the gettext package should be used.
2002-12-03Handle the different rpath directive to the linker for Irix in a different,agc1-1/+2
more generic, way - use an abstraction called ${_OPSYS_RPATH_NAME} which takes the value "-rpath," or "-R", set appropriately in the opsys-dependent defs files.
2002-12-03Abstract out the base value of libtool required into _OPSYS_LIBTOOL_REQD,agc1-1/+2
and use that rather than a hardcoded ${OPSYS} default in bsd.pkg.mk
2002-11-24introduce PKG_HAVE_KQUEUE variable - defined if OS supports kqueue(2)/kevent(2)jdolecek1-1/+5
interface
2002-11-17pull out SERIAL_DEVICES for now.grant1-23/+1
2002-11-17Add initial pkgsrc FreeBSD support :-)grant1-0/+130
Tested on FreeBSD 4.7-RELEASE/i386.