pkgsrc/parallel/glunix/Makefile
wiz d7621795f8 Remove support for automatic interactive fetching -- the master site
is broken anyway.
Remove makedepend tarball and corresponding master site, it does not
exist any longer.
Remove FLAGS=-m486, newer gcc does not like it.
Replace USE_PERL5 with USE_TOOLS+=perl.
2005-05-29 11:25:12 +00:00

87 lines
2.5 KiB
Makefile

# $NetBSD: Makefile,v 1.31 2005/05/29 11:25:12 wiz Exp $
DISTNAME= glunix-release-1-0a
PKGNAME= glunix-1.0a
PKGREVISION= 1
CATEGORIES= parallel
MASTER_SITES= http://now.cs.berkeley.edu/Glunix/
MAINTAINER= root@garbled.net
HOMEPAGE= http://now.cs.berkeley.edu/Glunix/glunix.html
COMMENT= Global Layer Unix for NOW (Network Of Workstations)
.if exists(/usr/bin/ssh)
SSH= /usr/bin/ssh
.else
DEPENDS+= {openssh-[0-9]*,ssh{,6}-1.2.27*}:../../security/openssh
SSH= ${LOCALBASE}/bin/ssh
.endif
WRKSRC= ${WRKDIR}
USE_TOOLS+= gmake perl
INTERACTIVE_STAGE= fetch
NO_MTREE= yes
NOW_ROOT= ${LOCALBASE}/now
MESSAGE_SUBST+= NOW_ROOT=${NOW_ROOT}
.include "../../mk/endian.mk"
.if (${MACHINE_ENDIAN} == "little")
FLAGS+=-DL_ENDIAN
.endif
MAKE_ENV+= OPSYS=${OPSYS} ARCH=${MACHINE_ARCH} NOW_ROOT=${NOW_ROOT}
MAKE_ENV+= PORTSDIR=${PKGDIR} WRKDIR=${WRKDIR} FLAGS="${FLAGS}"
MAKE_ENV+= SSH=${SSH}
.if exists(/usr/sbin/user)
USER_CMD= /usr/sbin/user
GROUP_CMD= /usr/sbin/group
.else
DEPENDS+= user>=20000313:../../sysutils/user
USER_CMD= ${LOCALBASE}/sbin/user
GROUP_CMD= ${LOCALBASE}/sbin/group
.endif
post-patch:
cd ${WRKSRC}; \
for f in progs/glupart/glupart.c \
progs/glunix/glunix.1 \
progs/glurun/glurun-wrapper.pl \
progs/tools/run_glunix.c \
glunix/src/init/glunix.h; do \
${MV} -f $$f $$f.input && \
${SED} -e 's|%%%NOW_ROOT%%%|${NOW_ROOT}|' $$f.input > $$f; \
done; \
${MV} -f progs/glush/Makefile progs/glush/Makefile.input && \
${SED} -e 's|%%%PLAT%%%|${MACHINE_ARCH}-NetBSD-tcp|' \
progs/glush/Makefile.input > progs/glush/Makefile
# the glunix group needs to exist before building.
pre-configure:
${CP} ${FILESDIR}/Makefile-2 ${WRKSRC}/Makefile
@if `${GROUP_CMD} info -e glunix`; then \
${ECHO} Group \'glunix\' already exists.; \
else \
${GROUP_CMD} add glunix; \
fi
pre-install:
@${ECHO} "updating /etc/shells";
${CP} /etc/shells /etc/shells.bak;
( ${GREP} -v ${NOW_ROOT}/bin/glush /etc/shells.bak; \
${ECHO} ${NOW_ROOT}/bin/glush \
) >/etc/shells
@if `${USER_CMD} info -e glunix`; then \
${ECHO} User \'glunix\' already exists.; \
else \
${USER_CMD} add -g glunix -d /nonexistent \
-s ${NOW_ROOT}/bin/glush glunix; \
fi;
post-install:
@${LN} -s ../../now/lib/libglunix.so.1.0 ${PREFIX}/now/lib/libglunix.so.1
@${LN} -s ../../now/lib/libglunix.so.1.0 ${PREFIX}/now/lib/libglunix.so
@${TOUCH} ${NOW_ROOT}/lib/${MACHINE_ARCH}-${OPSYS}-tcp/.keepme
.include "../../mk/bsd.pkg.mk"