Index: head/lang/wxbasic/pkg-descr =================================================================== --- head/lang/wxbasic/pkg-descr (revision 86549) +++ head/lang/wxbasic/pkg-descr (nonexistent) @@ -1,12 +0,0 @@ -wxBasic is an Basic interpreter that is: - - Free - - Open Source (LGPL) - - Cross-platform (currently Windows and Linux) - -wxBasic can create stand-alone executables by binding together source code -with the interpreter. - -wxBasic is written primarily in C, with some C++ linking it to the wxWindows -library. wxWindows supplies the cross-platform features. - -WWW: http://wxbasic.sourceforge.net/ Property changes on: head/lang/wxbasic/pkg-descr ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/lang/wxbasic/distinfo =================================================================== --- head/lang/wxbasic/distinfo (revision 86549) +++ head/lang/wxbasic/distinfo (nonexistent) @@ -1 +0,0 @@ -MD5 (wxsource-0.52.tar.gz) = 980a1fdac284357287ffbca041d654b4 Property changes on: head/lang/wxbasic/distinfo ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/lang/wxbasic/pkg-plist =================================================================== --- head/lang/wxbasic/pkg-plist (revision 86549) +++ head/lang/wxbasic/pkg-plist (nonexistent) @@ -1,12 +0,0 @@ -bin/wxbasic -%%PORTDOCS%%share/doc/wxbasic/readme.txt -%%PORTDOCS%%share/examples/wxbasic/bind.wx -%%PORTDOCS%%share/examples/wxbasic/controls.wx -%%PORTDOCS%%share/examples/wxbasic/demo.wx -%%PORTDOCS%%share/examples/wxbasic/editor.wx -%%PORTDOCS%%share/examples/wxbasic/glbox.wx -%%PORTDOCS%%share/examples/wxbasic/minimal.wx -%%PORTDOCS%%share/examples/wxbasic/scribble.wx -%%PORTDOCS%%share/examples/wxbasic/shroud.wx -%%PORTDOCS%%@dirrm share/examples/wxbasic -%%PORTDOCS%%@dirrm share/doc/wxbasic Property changes on: head/lang/wxbasic/pkg-plist ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.2 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/lang/wxbasic/Makefile =================================================================== --- head/lang/wxbasic/Makefile (revision 86549) +++ head/lang/wxbasic/Makefile (nonexistent) @@ -1,50 +0,0 @@ -# ex:ts=8 -# Ports collection makefile for: wxbasic -# Date created: Feb 10, 2002 -# Whom: ijliao -# -# $FreeBSD$ -# - -PORTNAME= wxbasic -PORTVERSION= 0.52 -CATEGORIES= lang -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} -DISTNAME= wxsource-${PORTVERSION} - -MAINTAINER= ports@FreeBSD.org -COMMENT= A cross-platform GUI Basic interpreter - -BROKEN= "Does not compile" - -LIB_DEPENDS= wx_gtk.2:${PORTSDIR}/x11-toolkits/wxgtk-devel - -NO_WRKSUBDIR= yes - -USE_REINPLACE= yes -USE_BISON= yes -USE_GMAKE= yes -MAKEFILE= makefile.unx -CFLAGS+= ${PTHREAD_CFLAGS} -LIBS+= -lglut -lGL -lGLU -lwx_gtk_gl ${PTHREAD_LIBS} -MAKE_ENV= CXXFLAGS="${CXXFLAGS}" LIBS="${LIBS}" - -post-patch: - @${REINPLACE_CMD} -e "s/malloc.h/stdlib.h/g" ${WRKSRC}/core.c - -pre-build: - @(cd ${WRKSRC} ; \ - ${MV} -f wxbasic.y tmp ; ${CAT} tmp | col -b > wxbasic.y ; \ - bison -o y_tab.c wxbasic.y) - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/wxbasic ${PREFIX}/bin -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/readme.txt ${DOCSDIR} - @${MKDIR} ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/*.wx ${EXAMPLESDIR} -.endif - -.include Property changes on: head/lang/wxbasic/Makefile ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.7 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/lang/wxbasic/files/patch-wxbasic.y =================================================================== --- head/lang/wxbasic/files/patch-wxbasic.y (revision 86549) +++ head/lang/wxbasic/files/patch-wxbasic.y (nonexistent) @@ -1,88 +0,0 @@ ---- wxbasic.y.orig Sun Dec 15 13:17:34 2002 -+++ wxbasic.y Sun Dec 15 13:21:01 2002 -@@ -378,7 +378,7 @@ - { $$ = wOpNode( W_OP_CLOSE, NULL, NULL ); } - - | W_TOKEN_CONST constList sep -- { $$ = $2 } -+ { $$ = $2; } - - | W_TOKEN_COMMON - { if (wCurrentScope != NULL) { -@@ -397,7 +397,7 @@ - $$ = wOpNode( W_OP_CONTINUE, NULL, NULL ); } - - | W_TOKEN_DELETE expr sep -- { $$ = wOpNode( W_OP_DELETE, $2, NULL ) } -+ { $$ = wOpNode( W_OP_DELETE, $2, NULL ); } - - /* same as Dim Common */ - | W_TOKEN_DIM W_TOKEN_COMMON -@@ -486,7 +486,7 @@ - wSymbolNode( W_OP_NOOP, $5, NULL, NULL ), $9 ); } - - | W_TOKEN_FOR W_TOKEN_EACH W_TOKEN_VARIABLE_NAME W_TOKEN_IN error -- { wExpected("an Array") }; -+ { wExpected("an Array"); }; - - - | W_TOKEN_FOR W_TOKEN_EACH W_TOKEN_UNDEFINED W_TOKEN_IN W_TOKEN_ARRAY_NAME -@@ -498,16 +498,16 @@ - wSymbolNode( W_OP_NOOP, $5, NULL, NULL ), $8 ); } - - | W_TOKEN_FOR W_TOKEN_EACH W_TOKEN_UNDEFINED W_TOKEN_IN error -- { wExpected("an Array") }; -+ { wExpected("an Array"); }; - - | W_TOKEN_FOR W_TOKEN_EACH W_TOKEN_VARIABLE_NAME error -- { wExpected("In") }; -+ { wExpected("In"); }; - - | W_TOKEN_FOR W_TOKEN_EACH W_TOKEN_UNDEFINED error -- { wExpected("In") }; -+ { wExpected("In"); }; - - | W_TOKEN_FOR W_TOKEN_EACH error -- { wExpected("a variable") }; -+ { wExpected("a variable"); }; - - /* For = To [step ] ... next */ - | W_TOKEN_FOR W_TOKEN_VARIABLE_NAME -@@ -1328,7 +1328,7 @@ - - printList: - ';' printList -- { $$ = $2 } -+ { $$ = $2; } - - | ',' printList - { $$ = wIntNode( W_OP_PRINT_VALUE, W_PRINT_TAB, NULL, $2 ); } -@@ -1519,7 +1519,7 @@ - { wIncrStack( wArgCountStack, 1 ); - if ($1->stackPos != wPeekStack(wArgCountStack) ) { - wFatal( W_SYNTAX, "Variable %s does not match declaration", $1->name); -- } }; -+ } } - - | W_TOKEN_VARIABLE_NAME ',' optSep - { wIncrStack( wArgCountStack, 1 ); -@@ -1558,7 +1558,7 @@ - | '.' '.' '.' ')' - { if (wCurrentScope->optArgs != W_MAX_OPT_ARGS) { - wFatal( W_SYNTAX, "... does not match declaration" ); -- } }; -+ } } - | error - { wFatal( W_SYNTAX, "Parm list does not match declaration" ); } - -@@ -1617,8 +1617,8 @@ - - fileHandle - : '#' expr -- { $$ = $2 } -+ { $$ = $2; } - | expr -- { $$ = $1 } -+ { $$ = $1; } - ; - Property changes on: head/lang/wxbasic/files/patch-wxbasic.y ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.2 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/lang/wxbasic/files/patch-makefile.unx =================================================================== --- head/lang/wxbasic/files/patch-makefile.unx (revision 86549) +++ head/lang/wxbasic/files/patch-makefile.unx (nonexistent) @@ -1,17 +0,0 @@ ---- makefile.unx.orig Tue Jun 4 01:50:21 2002 -+++ makefile.unx Tue Jun 4 01:54:42 2002 -@@ -12,12 +12,12 @@ - .SUFFIXES: .o .cpp - - .cpp.o : -- $(CXX) -c `wx-config --cxxflags` -o $@ $< -+ $(CXX) ${CXXFLAGS} -c `wx-config --cxxflags` -o $@ $< - - all: $(PROGRAM) - - $(PROGRAM): $(OBJECTS) -- $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs` -+ $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs` ${LIBS} - - clean: - rm -f *.o $(PROGRAM) Property changes on: head/lang/wxbasic/files/patch-makefile.unx ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.2 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/lang/Makefile =================================================================== --- head/lang/Makefile (revision 86549) +++ head/lang/Makefile (revision 86550) @@ -1,252 +1,251 @@ # $FreeBSD$ # SUBDIR += ETHOberonV4 SUBDIR += Gofer SUBDIR += STk SUBDIR += Sather SUBDIR += TenDRA SUBDIR += aleph SUBDIR += atlast SUBDIR += awka SUBDIR += bigloo SUBDIR += bwbasic SUBDIR += caml-light SUBDIR += ccscript SUBDIR += cel SUBDIR += chameleon SUBDIR += chicken SUBDIR += cim SUBDIR += cli SUBDIR += clips SUBDIR += clisp SUBDIR += cmucl SUBDIR += cmucl-extra SUBDIR += cocor SUBDIR += compaq-cc SUBDIR += crossgo32-f77 SUBDIR += cu-prolog SUBDIR += cyclone SUBDIR += dice SUBDIR += dis SUBDIR += diveintopython SUBDIR += drscheme SUBDIR += dylan SUBDIR += egcs SUBDIR += eiffel SUBDIR += elisp-manual SUBDIR += elk SUBDIR += emacs-lisp-intro SUBDIR += eperl SUBDIR += erlang SUBDIR += erlang-doc SUBDIR += expect SUBDIR += ezm3 SUBDIR += f2c SUBDIR += f2py SUBDIR += f77 SUBDIR += fbbi SUBDIR += ferite SUBDIR += fesi SUBDIR += forth SUBDIR += fpc SUBDIR += gauche SUBDIR += gawk SUBDIR += gcc27 SUBDIR += gcc28 SUBDIR += gcc295 SUBDIR += gcc30 SUBDIR += gcc31 SUBDIR += gcc32 SUBDIR += gcc33 SUBDIR += gcl SUBDIR += generic-haskell SUBDIR += gforth SUBDIR += ghc SUBDIR += ghc6 SUBDIR += ghc-doc SUBDIR += glibstdc++28 SUBDIR += gnat SUBDIR += gnat-doc-html SUBDIR += gnat-doc-info SUBDIR += gnat-doc-ps SUBDIR += gnat-doc-texi SUBDIR += gnat-doc-txt SUBDIR += gnat-glade SUBDIR += gnomebasic SUBDIR += gnustep-base SUBDIR += gnustep-guile SUBDIR += gnustep-objc SUBDIR += gprolog SUBDIR += guile SUBDIR += helium SUBDIR += hope SUBDIR += hugs SUBDIR += icc SUBDIR += ici SUBDIR += icon SUBDIR += ifc SUBDIR += intel2gas SUBDIR += intercal SUBDIR += itcl SUBDIR += jgnat SUBDIR += jgnat-doc-html SUBDIR += jgnat-doc-info SUBDIR += jgnat-doc-ps SUBDIR += jgnat-doc-txt SUBDIR += jruby SUBDIR += jython SUBDIR += kawa SUBDIR += klogoturtle SUBDIR += klone SUBDIR += lafontaine SUBDIR += librep SUBDIR += libutils SUBDIR += linux-j SUBDIR += logo SUBDIR += lua SUBDIR += lua4 SUBDIR += m3gdb SUBDIR += malbolge SUBDIR += mawk SUBDIR += mdk SUBDIR += mit-scheme SUBDIR += mixal SUBDIR += mmix SUBDIR += mono SUBDIR += moscow_ml SUBDIR += mozart SUBDIR += nawk SUBDIR += nhc98 SUBDIR += nickle SUBDIR += njs SUBDIR += nml SUBDIR += nqc SUBDIR += o2c SUBDIR += objc SUBDIR += ocaml SUBDIR += ocaml-mode.el SUBDIR += ohugs SUBDIR += onyx SUBDIR += oo2c SUBDIR += open-cobol SUBDIR += otcl SUBDIR += p2c SUBDIR += p5-Data-JavaScript SUBDIR += p5-Error SUBDIR += p5-Expect SUBDIR += p5-F77 SUBDIR += p5-Scalar-List-Utils SUBDIR += p5-Switch SUBDIR += p5-Tcl SUBDIR += p5-ePerl SUBDIR += pbasic SUBDIR += pdss SUBDIR += perl5 SUBDIR += perl5.8 SUBDIR += pexts SUBDIR += pfe-devel SUBDIR += php-mode.el SUBDIR += php3 SUBDIR += php4 SUBDIR += php4-cli SUBDIR += php5 SUBDIR += php5-cli SUBDIR += php_doc SUBDIR += pike70 SUBDIR += pike72 SUBDIR += pike74 SUBDIR += pm3-base SUBDIR += pm3-forms SUBDIR += pm3-gui SUBDIR += pm3-m3tk SUBDIR += pm3-net SUBDIR += pm3-netobj SUBDIR += ptoc SUBDIR += py-compiler SUBDIR += py-mx-base SUBDIR += py-prolog SUBDIR += python SUBDIR += python-devel SUBDIR += python-doc-html SUBDIR += python-doc-pdf-a4 SUBDIR += python-doc-pdf-letter SUBDIR += python-doc-postscript-a4 SUBDIR += python-doc-postscript-letter SUBDIR += python15 SUBDIR += python20 SUBDIR += python21 SUBDIR += python22 SUBDIR += qscheme SUBDIR += ratfor SUBDIR += rexx-imc SUBDIR += rscheme SUBDIR += ruby-js SUBDIR += ruby-lua SUBDIR += ruby-man SUBDIR += ruby-mode.el SUBDIR += ruby-perl SUBDIR += ruby-programmingruby SUBDIR += ruby-python SUBDIR += ruby-reference SUBDIR += ruby-ri SUBDIR += ruby-tcltklib SUBDIR += ruby-usersguide SUBDIR += ruby16 SUBDIR += ruby16-shim-ruby18 SUBDIR += ruby16_r SUBDIR += ruby16_static SUBDIR += ruby18 SUBDIR += ruby18_r SUBDIR += ruby18_static SUBDIR += sbcl SUBDIR += scheme48 SUBDIR += schemetoc SUBDIR += scm SUBDIR += screamer SUBDIR += scriba SUBDIR += scsh SUBDIR += siod SUBDIR += sisc SUBDIR += slib SUBDIR += slisp SUBDIR += smalltalk SUBDIR += smarteiffel SUBDIR += sml-mode.el SUBDIR += sml-nj SUBDIR += sml-nj-devel SUBDIR += snobol SUBDIR += spidermonkey SUBDIR += spl SUBDIR += squeak2 SUBDIR += squeak3 SUBDIR += sr SUBDIR += stackless_python SUBDIR += starlogo SUBDIR += stklos SUBDIR += stldoc SUBDIR += swi-pl SUBDIR += sxm SUBDIR += t3x SUBDIR += tcl-manual SUBDIR += tcl80 SUBDIR += tcl81-thread SUBDIR += tcl82 SUBDIR += tcl83 SUBDIR += tcl84 SUBDIR += tclX SUBDIR += tclX80 SUBDIR += tcltutor SUBDIR += tensile SUBDIR += tinycobol SUBDIR += treecc SUBDIR += visualworks SUBDIR += wamcc - SUBDIR += wxbasic SUBDIR += xsb SUBDIR += yabasic SUBDIR += yap SUBDIR += yorick SUBDIR += yorick-doc .include Property changes on: head/lang/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.355 \ No newline at end of property +1.356 \ No newline at end of property