1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-04 11:23:46 +00:00

Initial import ETH Oberon v4.

ETH's Oberon language for Linux.

PR:		7271
Submitted by:	Jerry Hicks <jhicks@glenatl.glenayre.com>
This commit is contained in:
Steve Price 1998-07-20 03:51:46 +00:00
parent fcc3c2a6f8
commit 10111ded09
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=11999
6 changed files with 1356 additions and 0 deletions

43
lang/ETHOberonV4/Makefile Normal file
View File

@ -0,0 +1,43 @@
# New ports collection makefile for: ETHOberonV4
# Version required: ETH Oberon V4-0.9 (for Linux)
# Date created: 12 July 1998
# Whom: Jerry Hicks <jhicks@glenatl.glenayre.com>
#
# $Id: Makefile,v 1.1.1.1 1998/07/12 21:34:27 jhicks Exp $
#
DISTNAME= ETHLinuxOberon
PKGNAME= ETHOberonV4-0.9
CATEGORIES= lang
MASTER_SITES= ftp://ftp.inf.ethz.ch/pub/Oberon/OberonV4/Linux/latest/
EXTRACT_SUFX= .tgz
MAINTAINER= jhicks@glenatl.glenayre.com
# XXX - how to fix the following?
RUN_DEPENDS= /compat/linux/lib/libc.so.5.4.23:${PORTSDIR}/emulators/linux_lib
NO_CDROM= licensing
NO_PACKAGE= no version number on distfile
WRKSRC= ${WRKDIR}/${UNTAR_DIR}
UNTAR_DIR= usr/local/ETHOberon
do-build:
@${RM} -fr ${WRKSRC}/.Fonts
@${ECHO_MSG} "Do a \`make install' as root."
do-install:
@(if [ ! -d ${PREFIX}/lib ] ; then \
${MKDIR} ${PREFIX}/lib ; \
fi)
@(if [ -e ${PREFIX}/lib/ETHOberonV4 ] ; then \
${ECHO_MSG} "error: ${PREFIX}/lib/ETHOberonV4 already exists" 1>&2 ; \
exit 1 ; \
fi)
@${MV} ${WRKSRC} ${PREFIX}/lib/ETHOberonV4
@${SCRIPTDIR}/MakeStartV4 ${PREFIX}
@${ECHO_MSG} ""
@${ECHO_MSG} " '${PREFIX}/bin/StartV4' will launch ETH Oberon V4
@${ECHO_MSG} ""
.include <bsd.port.mk>

View File

@ -0,0 +1 @@
MD5 (ETHLinuxOberon.tgz) = 97ed718f5a5bbd3dc7382c7f694c0484

View File

@ -0,0 +1 @@
Oberon-2/V4 from ETH (Linux emulation)

View File

@ -0,0 +1,17 @@
Linux-Oberon (TM) V4 Release 0.9 (Linux 1.X version)
======================================================
Linux-Oberon is an Oberon implementation for Linux
based machines or FreeBSD using Linux emulation. It
covers both the programming language Oberon and the
Oberon system closely resembling the original imple-
mentation by N. Wirth and J. Gutknecht.
Linux-Oberon implements the Oberon2 language exten-
sions.
For more information see:
http://www.oberon.ethz.ch/
NUX-Oberon (TM) V4 Release 0.9 (Linux 1.X version)
======================================================
Copyright 1990-1994 ETH Zurich

1282
lang/ETHOberonV4/pkg-plist Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,12 @@
#!/bin/sh
cat <<EOF > /tmp/$$StartV4
#!/bin/sh
if [ X"\$DISPLAY" = X"" ] ; then
echo this script should be started from within X 1>&2
exit 1;
fi
OBERON=.:PREFIX/lib/ETHOberonV4 PREFIX/lib/ETHOberonV4/oberon &
EOF
sed -e "1,\$ s,PREFIX,$1,g" < /tmp/$$StartV4 > $1/bin/StartV4
rm -f /tmp/$$StartV4
chmod +x $1/bin/StartV4