1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-23 09:10:43 +00:00

Update to version 0.6.

PR:		25398
Submitted by:	maintainer
This commit is contained in:
Steve Price 2001-02-27 04:56:27 +00:00
parent f31050845b
commit 8327f80bf6
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=38834
6 changed files with 40 additions and 16 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= cel
PORTVERSION= 0.5
PORTVERSION= 0.6
CATEGORIES= lang
MASTER_SITES= http://www.redwoodsoft.com/cel/
EXTRACT_SUFX= .tgz
@ -17,13 +17,12 @@ WRKSRC= ${WRKDIR}/${PORTNAME}
USE_GMAKE= yes
DOCFILES= CoreArchitecture.html Credits DefaultProtos \
Linker.html Logs.html ProtoLanguage.html README \
SimpleDataFormat.html Threads activation.html \
stackframe structure.html todo.html
DOCFILES= CoreArchitecture.html DefaultProtos Linker.html \
Logs.html ProtoLanguage.html README SimpleDataFormat.html \
Threads activation.html stackframe structure.html todo.html
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/vm/aq ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/vm/cel ${PREFIX}/bin
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/share/doc/cel
.for F in ${DOCFILES}

View File

@ -1 +1 @@
MD5 (cel-0.5.tgz) = 666ff6e2bd7245fb83130a9f67d42055
MD5 (cel-0.6.tgz) = 73b484eded1bbfe4876e6b82624c2cbc

View File

@ -1,7 +1,12 @@
--- Makefile.notreal Thu Jan 1 01:00:00 1970
+++ Makefile Mon Jan 1 16:25:56 2001
@@ -0,0 +1,4 @@
+all:
+ cd aqmalloc; ${MAKE}
+ cd hash; ${MAKE} libhash.a
+ cd vm; ${MAKE}
--- Makefile.orig Tue Feb 27 03:02:51 2001
+++ Makefile Tue Feb 27 03:02:58 2001
@@ -1,9 +1,7 @@
-CFLAGS = -O -g
# DEPENDENCIES
SUBDIRS= celmalloc hash vm kits
-MAKE= make
all:
for i in $(SUBDIRS); do \

11
lang/cel/files/patch-ab Normal file
View File

@ -0,0 +1,11 @@
--- vm/Makefile.orig Tue Feb 27 03:03:15 2001
+++ vm/Makefile Tue Feb 27 03:03:19 2001
@@ -23,7 +23,7 @@
FILES= atom.o crc.o memstream.o runtime.o sd2cel.o cel2sd.o svm32.o assemble.o array.o compiler.o codegen.o while.o
cel: main.o $(FILES)
- $(CC) $(CFLAGS) -export-dynamic -o cel $^ ../hash/libhash.a ../celmalloc/celmalloc.o -ldl
+ $(CC) $(CFLAGS) -export-dynamic -o cel $^ ../hash/libhash.a ../celmalloc/celmalloc.o
celdump: celdump.o $(FILES)
$(CC) $(CFLAGS) -o celdump $^ ../hash/libhash.a ../celmalloc/celmalloc.o

10
lang/cel/files/patch-ac Normal file
View File

@ -0,0 +1,10 @@
--- kits/DateTime.c.orig Tue Feb 27 03:03:28 2001
+++ kits/DateTime.c Tue Feb 27 03:03:38 2001
@@ -35,7 +35,6 @@
extern char *tzname[2];
-long int timezone;
extern int daylight;
// This takes the _dateTime blob and resets all of the fields

View File

@ -1,6 +1,5 @@
bin/aq
bin/cel
%%PORTDOCS%%share/doc/cel/CoreArchitecture.html
%%PORTDOCS%%share/doc/cel/Credits
%%PORTDOCS%%share/doc/cel/DefaultProtos
%%PORTDOCS%%share/doc/cel/Linker.html
%%PORTDOCS%%share/doc/cel/Logs.html