summaryrefslogtreecommitdiff
path: root/mk/platform/OSF1.mk
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2007-10-19 13:41:34 +0000
committerrillig <rillig@pkgsrc.org>2007-10-19 13:41:34 +0000
commit034b8390a818b7029a370987c5412678a54bb42d (patch)
tree07f18993d0ef18af77c1794c8875b5205b48b2c0 /mk/platform/OSF1.mk
parent1026094a3a122df81fbd00a0af7a3cfdfd1b3cd8 (diff)
downloadpkgsrc-034b8390a818b7029a370987c5412678a54bb42d.tar.gz
Reverted the last changes, which factored out some definitions that are
usually the same on the supported platforms. The reason for having duplicate code in these files is to make it easier to port pkgsrc to a new platform: You just have to copy one of the existing platform files and edit the values in it. With some values factored out, you would have to look at one more file. Pointed out by agc@.
Diffstat (limited to 'mk/platform/OSF1.mk')
-rw-r--r--mk/platform/OSF1.mk12
1 files changed, 9 insertions, 3 deletions
diff --git a/mk/platform/OSF1.mk b/mk/platform/OSF1.mk
index 39c75373756..6121e3a8e39 100644
--- a/mk/platform/OSF1.mk
+++ b/mk/platform/OSF1.mk
@@ -1,4 +1,4 @@
-# $NetBSD: OSF1.mk,v 1.20 2007/10/18 21:52:24 rillig Exp $
+# $NetBSD: OSF1.mk,v 1.21 2007/10/19 13:41:35 rillig Exp $
#
# Variable definitions for the OSF1 operating system.
@@ -11,6 +11,8 @@
CPP?= /usr/bin/cpp
ECHO_N?= ${SETENV} CMD_ENV=bsd /usr/bin/echo -n
+IMAKE_MAKE?= ${MAKE} # program which gets invoked by imake
+PKGLOCALEDIR= share
PS?= /bin/ps
STRIP?= /usr/bin/strip
SU?= /usr/bin/su
@@ -19,12 +21,18 @@ TYPE?= type # Shell builtin
USERADD?= /usr/sbin/useradd
GROUPADD?= /usr/sbin/groupadd
+CPP_PRECOMP_FLAGS?= # unset
+DEF_UMASK?= 0022
EXPORT_SYMBOLS_LDFLAGS?=-Wl,-non_hidden # add symbols to the dynamic symbol table
MOTIF_TYPE_DEFAULT?= openmotif # default 2.0 compatible libs type
NOLOGIN?= /etc/nologin
+PKG_TOOLS_BIN?= ${LOCALBASE}/sbin
ROOT_CMD?= ${SU} - root -c
ROOT_USER?= root
ROOT_GROUP?= system
+ULIMIT_CMD_datasize?= ulimit -d `ulimit -H -d`
+ULIMIT_CMD_stacksize?= ulimit -s `ulimit -H -s`
+ULIMIT_CMD_memorysize?= ulimit -m `ulimit -H -m`
# imake installs manpages in weird places
# these values from /usr/X11R6/lib/X11/config/NetBSD.cf
IMAKE_MAN_SOURCE_PATH= man/cat
@@ -68,5 +76,3 @@ _INCOMPAT_ICONV= OSF1-*-*
_STRIPFLAG_CC?= ${_INSTALL_UNSTRIPPED:D:U} # cc(1) option to strip
_STRIPFLAG_INSTALL?= ${_INSTALL_UNSTRIPPED:D:U} # install(1) option to strip
-
-.include "${.PARSEDIR}/defaults.mk"