Commit graph

2717 commits

Author SHA1 Message Date
recht
a6d008a827 update to Pyrex-0.9.3
Enhancements:
	- Types defined with a ctypedef in a 'cdef extern from' block
		are now referred to by the typedef name in generated C code,
		so it is no longer necessary to match the type in the C
		header file exactly.
	- Conversion to/from unsigned long now done with
		PyLong_AsUnsignedLong and PyLong_FromUnsignedLong.
		[Dug Song <dugsong@monkey.org>]
	- A struct, union or enum definition in a 'cdef extern from'
		block may now be left empty (using 'pass'). This can be useful
		if you need to declare a variable of that type, but don't need
		to refer to any of its members.
	- More flexible about ordering of qualifiers such as 'long' and
		'unsigned'.
		["John (J5) Palmieri" <johnp@redhat.com>]
Bug fixes:
	- Non-interned string literals used in a Python class
		definition did not work.
		[Atsuo Ishimoto <ishimoto@gembook.org>]
		[Andreas Kostyrka <andreas@kostyrka.org>]
	- Return types of the buffer interface functions for extension
		types have been corrected.
		[Dug Song <dugsong@monkey.org>]
	- Added 'static' to declarations of string literals.
		[Phil Frost <indigo@bitglue.com>]
	- Float literals are now copied directly to the C code as written,
		to avoid problems with loss of precision.
		[Mario Pernici <Mario.Pernici@mi.infn.it>]
	- Inheriting from an extension type with C methods defined in
		another Pyrex module did not work.
		[Itamar Shtull-Trauring <itamar@itamarst.org>]
2004-08-19 20:44:31 +00:00
minskim
507aa8eb9a Add and enable Cg-compiler. 2004-08-18 21:14:58 +00:00
minskim
c16dbe22f6 Import Cg-compiler-1.2.1 from pkgsrc-wip. Packaged by xtraeme@ and
updated by me.

This is the NVIDIA Cg compiler/toolkit for Linux that includes:

    o NVIDIA Cg toolkit documentation
    o NVIDIA Cg compiler
    o NVIDIA Cg runtime libraries for OpenGL
    o Example shaders written in the Cg language
    o Example applications that use the Cg runtime to manage Cg programs
2004-08-18 21:12:50 +00:00
minoura
97a1236dff Update for recent dependencies/version. 2004-08-18 13:52:38 +00:00
minoura
33eb77d047 Remive ONLY_FOR_PLATFORMS:
- Now that we depend on devel/boehm-gc, we can rely on it.
 - Gauche is now reported to work on Linux/Alpha; it means LP64 problem is
  fixed.
2004-08-18 13:51:50 +00:00
jschauma
c197dcec6d Update drscheme to version 207. Changes since 202:
- Wizards for ProfessorJ added
	+ union wizard
	+ class wizard
- Check Syntax disabled in professorJ languages.
- Help Desk searching is now language-sensitive.
- Check syntax is now integrated (better) with the syntax
colorer.
- Check Syntax now distinguishes between require'd
and locally defined identifiers.
- added the ability to specify a command-line to the module
language.
- Help Desk's status messages are now in the frame and
it's break button is also in the frame (no more modal
dialog)
- Check Syntax now does a better job of navigating amoung
occurrences of a single variable. The popup menu lets you
go from a bound occurrence to a binding occurrence and
from a binding occurrence to the next binding occurrence.
Also added two keystrokes: c-x;n to go to the next bound
occurrence and c-x;b to to the binding occurrence.
- show menu => view menu, added show/hide for the toolbar
- multi file search works much bching languages color the portion of the program
that has not been tested in dark red (using a simple
syntactic coverage criterion -- dark red means untested,
but not dark red doesn't mean fully tested, of course).
- added a test coverage annotation for other languages in
the "details" portion of the languages dialog; run the
program and it colors the code that was executed in
green and code that wasn't executed in red.
- fixed up help desk fonts, so that the font size in help
desk is now linked to the font size in drscheme proper.
- added support for editor modes to drscheme.
- drscheme shows the stack via arrows on the program text
when an error occurs (and debugging is on)
- added to special menu item: "insert delta" (to mean
define) in parallel to the insert lambda menu item.
- framework's scheme-mode font changed to be in an editor
mixin.
- macos: drscheme doesn't quit when all windows are closed
anymoct -> supports multiple values using this syntax:
(-> integer? (values integer? integer?))
- parenthesis highlight color is now configurable
- integrated the module browser into the main drscheme
window. Use the show menu to open a panel on the lhs of
the drscheme window containing a DAG representing the
modules that are required (only works for programs in
modules).
- integrated Bruce Hauman's rewrite of the match.ss
library (ongoing).
- added arrows to check syntax that show the (syntactic)
tail structure of the program.
- fixed many many problems with Help Desk. Some of the
more interesting ones:
- manual downloading now works.
- bug report form is a mred window now.
- doc.txt highlighting is in the right place now
- doc.txt search restults now go to the right place
- servlets are now modules (with no more free vars)
- browser menus work properly
- urls outside of our documentation use an external browser
- eliminated many (now unecessary) redirections
- various responsiveness improvements
- help desk as a standalone web server isn't supported
anymore.
- added a status line class to the framework, which is
used for check syntax and the module browser. both show
status as the check the program and show information on
mouse-over. Also, the contour window shows you the line
under the mouse in a status line on mouse over.
- added an extra level of hierarchy to the language
dialog, but without the turn-down triangles. this helps
organize the language dialog somewhat.
- the top level function declarations in algol60 are now
available in the REPL and in the test suite tool
- Removed `Windows' menu from windows and unix versions.
- Windows installer generates Program menu shortcuts for
all users

- added test suite support for use with the How to Design
  Programs
- added support for recovering autosave files when DrScheme
crashes
- the draw.ss teachpack now provides the function
get-key-event : -> Key
This function enables programmers who use the draw.ss
teachpack to write interactive drawing games.
Warning: The function fails intermittently on Mac OS X. We intend
to fix this problem in a future release.
- Help Desk users can choose whether they wish to use a
frame-based version.  A toggle switch for this choice (in the
form of a link) appears on the Help Desk home page.  It can
also be changed in the Help Desk configuration.
- Help Desk users can once again use the PLT internal browser;
look for the browser preference in DrScheme's preferences panel
- removed an error in MrEd for Windows that was a frequent source of
instability
2004-08-17 19:34:56 +00:00
minskim
e3a3064024 Add and enable py-funge. 2004-08-16 17:13:54 +00:00
minskim
134277baf7 Initial import of py-funge. Packaged by Yi Min-Cheol.
PyFunge is a Funge-98 interpreter written in Python. It includes almost
all of features found in the Funge-98 specification and also provides
some other features like fingerprints. PyFunge is written in object-
oriented fashion and designed to be extensible from ground up.
2004-08-16 17:11:00 +00:00
jlam
10681043c3 Include "/usr/pkg/gcc3/lib" in the list of directories that contain gcc3
libraries.
2004-08-13 18:30:29 +00:00
shannonjr
2ff4958c38 Bring inline with gcc34 pkg by incomporating the following changes
already in lang/gcc34:
1) Locate adalib for bootstrap compiler with ${ALT_GCC} --print-file-name=adalib
   rather than find. This behaves better if ${ALT_GCC} does not specify
   a gcc executable.
2) Elide trailing letters from GCC_PLATFORM so that GCC_ARCHSUBDIR
   remains constant for CURRENT when the version letter changes.
2004-08-11 22:45:00 +00:00
shannonjr
584b3677af 1) Locate adalib for bootstrap compiler with ${ALT_GCC} --print-file-name=adalib
rather than find. This behaves better if ${ALT_GCC} does not specify
   a gcc executable.
2) Change to uniform handling of ABI baseline-pairs for NetBSD. There
   must be agreement between the Makefile and libstdc++-v3/configure.host;
   this change ensures consistency by introducing ABI_BASELINE_PAIR
   variable used in both.
3) Bump revision number.
2004-08-11 19:08:15 +00:00
tv
22c0b82ae5 1.1: Add more wrappers (jdb, rmic, rmiregistry, ...).
Also add ability to specify a full command line (foo_CMD) so that tools
such as fastjar and jikes may be used as jar and javac, respectively.
2004-08-11 14:45:31 +00:00
shannonjr
27e69cf5c4 Add ABI description file for sparc64--netbsd2.x 2004-08-11 09:49:42 +00:00
shannonjr
b05a15ec40 Add ABI description file for i386-netbsd1.x 2004-08-10 16:20:08 +00:00
shannonjr
6bf47762a8 Introduce several changes so that package builds successfully on
alpha--netbsd1.6.2:
1) Rename the baseline_symbols.txt files that define abi and implement
   logic in Makefile that uses these according to architecture and
   NetBSD version (1.x versus 2.x)
2) Add several patches that allow code to compile on alpha--netbsd1.6.2
3) Revise Makefile so that libiconv is found under NetBSD 1.6.2
2004-08-10 15:11:14 +00:00
cube
20d7a113cb Update to version 2.20pl2, as hinted by Roland Illig in PR 26577. While
here, find a new fetch site since the previous one didn't work any more.

Patch1:

bwb_cnd.c
   Moved init routine for bwb_while so that it would be initialized regardless
   of expression value, not just if TRUE.  This was causing some segmentation
   faults in WHILE-WEND loops.

bwb_elx.c
   Plugged gaping memory leak.  Temp variable space for expression evaluation
   was being allocated but not freed when done (oops!).

bwb_fnc.c
   Added check for NULL return from getenv to prevent segmentation faults.

Patch2:

bwb_cmd.c
   Fixed calling stack level logic in RETURN statement to prevent erroneous
   "RETURN without GOSUB" messages.

bwb_cnd.c
bwb_stc.c

   Changed continuation condition for WHILE, ELSEIF, and LOOP UNTIL
   to be != FALSE, not == TRUE.  More in line with common commercial
   BASIC implementations.

bwb_mth.c
   Fixed initialization in VAL function so that old results are not later
   returned as values.

bwb_var.c
   Added parenthesis level checking to dim_getparams. Using multi-level
   expressions as array subscripts was causing the program to bomb.

bwx_iqc.c
bwx_tty.c
bwb_mes.h
   Added second copyright notice.

bwb_dio.c
bwb_str.c
   Added support for strings longer than 255 characters.

bwb_prn.c
   Disabled tab expansion and print width checks when not printing to a file.

bwb_inp.c
   Fixed LINE INPUT file reads to accommodate strings of length MAXSTRINGSIZE.

bwx_ncu.h
bwx_ncu.c
   New files.  Code for UNIX ncurses interface, compliments of L.C. Benschop,
   Eindhoven, The Netherlands.

Makefile.ncu
   New files.  Sample makefile for ncurses implementation.

bwbasic.h
   Revised defines for MININTSIZE and MAXINTSIZE from 16-bit to 32-bit limits.
   Revised define for MAXSTRINGSIZE from 255 to 5000 characters.
   Changed string length from unsigned char to unsigned int to support strings
   longer than 255 characters.
   Added support for new ncurses package.
   Revised VERSION define to reflect above changes.
2004-08-09 21:41:23 +00:00
shannonjr
600b221b3f make target is install not ${INSTALL} 2004-08-08 11:14:37 +00:00
shannonjr
f8208e57b6 The make target is install not ${INSTALL}. Thank you Georg Schwarz for
pointing this out.
2004-08-08 11:12:13 +00:00
minoura
f007cb24a7 Updated to 0.8.1.
Gauche-0.8.1 is a maintainance release of Gauche-0.8.
Gauche-0.8 release announce is cited here:

* *New Features*

    o Auxiliary scripts: Gauche now installs a few scripts
      that help to build and install extension packages. The
      gauche-package script handles download, unpacking,
      configuration, building and installation in one command
      invocation. See the description of "Using extension
      packages" section of the manual. (NB: this feature is
      still new and may have problems, but hey, let's give a
      try.) A couple of auxiliary scripts, gauche-cesconv and
      gauche-install can be called from Makefile. They don't
      have documentation yet, but try --help option for these
      scripts.

    o Module util.match: Andrew Wright's match macro is
      bundled. It is modified to handle Gauche's object system.

* *Improvements*

    o A couple of performance tuning were done for I/O and
      loading Scheme files.

    o Now you can subclass <error> class as well as
      <exception> class to define your own error type. A new
      built-in macro guard, which is SRFI-34 compliant, can be
      used to handle errors selectively. Eventually the errors
      from built-in procedures will have more structured
      exception hierarchy.

    o New built-in system procedures: sys-lchown, sys-realpath.

    o Built-in sort routines now have stable versions,
      stable-sort and stable-sort!.

    o New built-in macro: let/cc.

    o New built-in keyword procedures: delete-keyword, delete-keyword!.

    o New built-in regexp procedure: rxmatch-num-matches.

    o Module file.util: new procedures: file-is-symlink?,
      file->string, file->string-list, file->list, file->sexp-list.

    o Module gauche.net: documented the previously
      experimental procedures: socket-send, socket-sendto,
      socket-recv, socket-recvfrom, socket-getpeername,
      socket-getsockname. Now these are official procedures.

    o Module gauche.process: process-command wasn't exported,
      even though it was documented.

    o Module gauche.test: you can control whether the error in
      the test procedure is reported or not by an envioronment
      variable GAUCHE_TEST_REPORT_ERROR and a global variable
      *test-report-error*. Useful to find a problem during testing.

    o Module www.cgi: new procedure cgi-get-metavariables;
      allows the user routine to take metavariables via
      cgi-metavariables parameter, so that cgi scripts can be
      easily modularized.

    o Module gauche.parseopt: support of "optional
      option-argument" is added.

    o Module gauche.array: homogeneous numeric array types are added.

    o Module text.html-lite: added frame-related tags.

* *Bug Fixes*
 [snip]
2004-08-08 07:05:38 +00:00
shannonjr
e3c6f26ab9 Override "host" in configure only for NetBSD. This was requested because
the operating system for irix was not as expected. The choice for NetBSD
is maintained for backward compatibility.
2004-08-06 20:56:15 +00:00
recht
d3724c967c Fix PY_PLATNAME for IRIX.
Patch provided by Georg Schwarz in PR pkg/26507

Bump PKGREVISIONS (PLIST change)
2004-08-02 16:59:22 +00:00
shannonjr
671fe8e9b3 Changed dependancy from gcc34>=3.4.1nb3 to gcc34>=${_GCC_REQD}
following the practice in gcc3-c.
2004-08-02 09:59:12 +00:00
shannonjr
18f6796217 1) Change for AMD64: The patch incorrectly AMD64 to be identified
as x86_64--netbsdelf when it is identified as x86_64--netbsd.
2) Check the version of as using the just-computed ${AS_PATH}, not ${AS},
   following the change to gcc3/Makefile.common submitted by jlam@netbsd.org
2004-08-01 10:20:30 +00:00
shannonjr
8558aa3745 Check the version of as using the just-computed ${AS_PATH}, not ${AS},
following the change to gcc3/Makefile.common submitted by jlam@netbsd.org
2004-08-01 10:14:16 +00:00
jlam
129ce057eb Check the version of as using the just-computed ${AS_PATH}, not ${AS}. 2004-07-30 20:48:39 +00:00
shannonjr
9a9f3eea71 Recompute patchsum to go with revision to patch-ae:
Change for AMD64: The patch incorrectly AMD64 to be identified
as x86_64--netbsdelf when it is identified as x86_64--netbsd.
This effect the building of the Ada front-end on the AMD64 target only.
2004-07-30 14:44:13 +00:00
shannonjr
aadc99c41d Change for AMD64: The patch incorrectly AMD64 to be identified
as x86_64--netbsdelf when it is identified as x86_64--netbsd.
This effect the building of the Ada front-end on the AMD64 target only.
2004-07-30 14:37:45 +00:00
tv
e9da8ba15a jdk12 was never here. "avert your eyes." 2004-07-29 14:43:16 +00:00
tv
27c3f815d8 Add more java-env wrappers matching other common JDK tools; bump PKGREVISION. 2004-07-29 14:23:05 +00:00
agc
b93606645e Remove this package for now. 2004-07-29 07:41:02 +00:00
tv
4819d1527d Add java-env.mk support; bump PKGREVISION. 2004-07-29 00:50:59 +00:00
shannonjr
41a56bdd8a Applied several changes from lang/gcc34:
1) Test and mkdir if necessary to correct problem reported by
   Matthias Drochner: "For me (using ALT_GCC), the directory .work/.gcc was
   not present at pre-configure time, which made some "cd" fail."
2) Makefile and pkglint cleanup as recommended by Lubomir Sedlacik
2004-07-28 21:40:21 +00:00
shannonjr
a56bf6f82c 1) Fixed two Ada bootstrap issues reported by Matthias Drochner:
a) The BUILD_ADA must be YES (strictly capitalized) for the
      pre-configure target to work, which is inconsistent.
   b) For me (using ALT_GCC), the directory .work/.gcc was not
      present at pre-configure time, which made some "cd" fail.
2) Makefile cleanup as recommended by Lubomir.
3) pkglint cleanup
4) Increment PKGREVISION
2004-07-28 21:30:19 +00:00
tv
cc3839d9bd jdk12 is now in pkgsrc/lang. 2004-07-28 21:15:38 +00:00
salo
03dbfe0886 Include libiconv's buildlink3.mk file, since gettext doesn't include it for
us automagically anymore.

Fixes compilation on 1.6-ish systems, should fix PR pkg/26460 by <bad>.
2004-07-28 16:04:21 +00:00
shannonjr
6599fc64a9 Remove three unnecessary patches. The need for two of them is eliminated
by changes in the 3.4.1 source. The third does not apply to the Ada
language.
2004-07-28 14:20:38 +00:00
shannonjr
b7fd610486 1) Renamed patch-libstdc++-v3_configure_host to follow naming convention
2) Removed USE_GCC33ADA option. gcc3-ada may still be used as a bootstrap
   Ada compiler by specifying ALT_GCC
2004-07-28 12:14:49 +00:00
shannonjr
3b63745fa1 1) Removed three unnecessary patches. Two corrected problems that are now
fixed in the 3.4.1 branch. The third only applied to c++.
2) Remove USE_GCC33ADA option because it does not work. The gcc3-ada
   compiler can be used as an Ada bootstrap compiler by specifying
   ALT_GCC
3) Incremented PKGREVISION
2004-07-28 12:04:08 +00:00
shannonjr
e7d2deb170 1) Removed two patches because the problem, corrected by the patches, has
been corrected in 3.4.1 source
2) Incremented PKGREVISION
3) Corrected attempt to elimiate hardcoded
   GCC_PLATFORM=${MACHINE_GNU_ARCH}--netbsdelf2.0
2004-07-28 07:37:19 +00:00
shannonjr
449b71fcbb 1) Revised ABI specification (baseline_symbols.txt) to go with release 3.4.1
2) Added include statment for zlib/buildlink3.mk to Makefile to go with
   CONFIGURE_ARGS+=--with-system-zlib already there. Thank you
   Georg Schwarz <geos@epost.de> for pointing out this ommision.
3) Incorporated logic from gcc3 that determines whether to add
   binutils dependency or not.
4) Eliminated hardcoded target of netbsdelf2.0 as a step toward supporting
   other architectures.
2004-07-26 21:55:37 +00:00
shannonjr
6cab5fa170 1) Revised ABI specification (baseline_symbols.txt) to go with release 3.4.1
2) Added CONFIGURE_ARGS+=--with-system-zlib logic to Makefile for
   consistency with gcc34
3) Incorporated logic from gcc3 that determines whether to add
   binutils dependency or not.
4) Eliminated hardcoded target of netbsdelf2.0 as a step toward supporting
   other architectures.
2004-07-26 17:28:40 +00:00
tv
cfa303c024 Actually, as of 1.3.1_05ish, this no longer works on sun-jdk13 because Sun
removed some of the external JIT compiler hooks.  So now it only works
on blackdown-jdk13.  (I may simply remove this package in the future, as
its usefulness is quickly dropping.)
2004-07-25 18:55:43 +00:00
tv
3e884581ae This package only works on i386 Linux/NetBSD (linux emul), and only with
the Java 1.3 Sun (or Sun-based, i.e. Blackdown) JVMs.
2004-07-25 18:49:55 +00:00
wiz
c9a5dc5994 Bump PKGREVISION for missing dir. 2004-07-24 10:33:12 +00:00
wiz
71d3d41dc6 Create ${PREFIX}/lib/chicken; needed for library eggs.
Based on PR 26414 by Peter Bex.
2004-07-24 10:32:40 +00:00
recht
fd59b78727 Add PRINT_PLIST_AWKs for PYINC, PYSITELIB and PYLIB. 2004-07-23 15:35:50 +00:00
minskim
d31f2a153c Add and enable cdl3. 2004-07-23 02:05:45 +00:00
minskim
b5b4c5dd2e Import cdl3 from pkgsrc-wip. Provided by Jaap Boender in PR pkg/22794.
CDL3 is a programming language, based on Affix Grammars, intended for
the development of compilers and other complicated pieces of software
that can be implemented as syntax-directed transducers.
2004-07-23 02:04:23 +00:00
reed
0b898c43b7 Update ucblogo to ucblogo-5.3. Many changes from older 4.6. No
change log found other than "This is a maintenance release, just
fixing a few disastrous bugs introduced in the 5.2 release." (Which doesn't
matter for this.)

Use BUILDLINK3 system.
Uses ncurses (or libtermcap).
Add HOMEPAGE.
Change MASTER_SITES, because not at GNU mirrors yet.
Also install some documentation.

Update PLIST; now using share/ucblogo instead of share/logo.

Removed un-needed patches.

New patch-aa for makefile.in also makes sure that emacs logo-mode
is disabled; if you want an option for this, please do so.

This will close a PR #24858 because now ucblogo does build under Linux.

Tested under Linux and NetBSD 1.6.2. Used graphical interface
with "showturtle" and did some minor line drawings.
2004-07-23 00:31:23 +00:00
shannonjr
8bc3cedbe8 Add patch, originally added to gcc34 by drochner: "on 1.6.x, we need
libiconv. Make sure the rpath includes ${LOCALBASE}".
2004-07-22 21:57:16 +00:00