freebsd-ports/emulators/osf1_base/Makefile
Andrew Gallatin b9a51adfb9 make a symlink out of the compat environment so that programs calling
system() will be able to find /sbin/sh

This allows Netscape to run external apps (eg, ghostview)
2000-03-08 04:14:53 +00:00

53 lines
1.4 KiB
Makefile

# ex:ts=8
# Ports collection makefile for: osf1_base
# Version required: 5.0
# Date created: Mon Feb 03, 1998
# Whom: David O'Brien (obrien@NUXI.com)
#
# $FreeBSD$
#
DISTNAME= netscape-4.7-1.alpha
PKGNAME= osf1_base-4.0f
CATEGORIES= emulators
MASTER_SITES= ftp://ftp.digital.com/private/netscape/
EXTRACT_SUFX= .rpm
MAINTAINER= obrien@FreeBSD.org
BUILD_DEPENDS= rpm2cpio:${PORTSDIR}/misc/rpm2cpio
ONLY_FOR_ARCHS= alpha
RESTRICTED= Not allowed to redistribute on our FTP site or CDROMs
PREFIX= /usr/compat/osf1
EXTRACT_CMD= rpm2cpio
EXTRACT_BEFORE_ARGS=
EXTRACT_AFTER_ARGS= |cpio -idum
NO_WRKSUBDIR= yes
NO_BUILD= yes
NO_FILTER_SHLIBS= yes
NO_MTREE= yes
do-install:
@if [ -z "`kldstat -v | ${GREP} -E 'osf1_ecoff'`" ]; then \
${ECHO} 'OSF/1 (Digital Unix / Tru64) mode is not enabled.\
Loading OSF/1 kernel module...' | fmt; \
osf1 || { \
${ECHO} 'The OSF/1 kernel module could not be loaded.\
Please manually load the module and retry.\
See "man osf1" for details.' | fmt; \
${FALSE}; \
};\
fi
@${MKDIR} ${PREFIX}/usr/lib
@${LN} -sf ${X11BASE}/lib/X11 ${PREFIX}/usr/lib
@(cd ${WRKSRC} && ${TAR} -cf - etc sbin usr/shlib) | \
${TAR} -xpf - -C ${PREFIX}
@cd ${PREFIX}/usr/shlib ; ${LN} -sf libc.so libc_r.so
@cd ${PREFIX}/usr/shlib ; ${LN} -sf libc.so libpthread.so
@cd ${PREFIX}/usr/shlib ; ${LN} -sf libc.so libpthreads.so
@cd ${PREFIX}/sbin ; ${LN} -sf /bin/sh sh
@touch ${PREFIX}/etc/sia/siainitgood
.include <bsd.port.mk>