Commit graph

872 commits

Author SHA1 Message Date
jlam
410082cbd5 Use buildlink.mk to get GNU readline dependency and correct headers and
libraries.  Make sure we don't pick up a hidden dependency on ncurses
by forcing configure script to find tgoto() in libtermcap.
2001-05-28 05:36:28 +00:00
jlam
54718a4db7 Standardize name of file to include for build-links to be "buildlink.mk".
Use BUILDLINK_INCDIR, BUILDLINK_LIBDIR for locations of linked headers
and libraries.  Create a variable BUILDLINK_TARGETS whose value is the
list of build-link targets to execute.
2001-05-24 08:53:54 +00:00
jlam
18fc23567b Fix the installed tclConfig.sh so it's possible to use its values to generate
a shared library that depends on libtcl83.so.  The TCL_SHLIB_LD command was
set to the incorrect value for ELF platforms, relying on "ld" which doesn't
understand the -Wl,... options it receives via ${TCL_LIB_SPEC}.  Patch the
configure script to set TCL_SHLIB_LD to the proper value on NetBSD systems
depending on whether they are ELF or a.out, and also modify TCL_LIB_SPEC
to include -Wl,-rpath,... or -R...  accordingly.

Bump version number to 8.3.2nb2.
2001-05-24 02:58:15 +00:00
manu
777ff979ff Bumped version number after a change 2001-05-23 16:57:47 +00:00
manu
8247df1d3a Prevent shlib cheks (this runs NetBSD's ldd on Linux shared libs) 2001-05-23 16:55:00 +00:00
kent
de44981931 Add gcc-ssp. 2001-05-22 13:56:09 +00:00
kent
3a9b9d7e25 New 'gcc with stack-smashing protection' package. 2001-05-22 13:54:34 +00:00
jtb
33f091cc36 Change ALL_TARGET. 2001-05-22 13:20:57 +00:00
wiz
26c40c61dd Update dependency on png to >=1.0.11 because of the shlib major bump.
Noted by Frederick Bruckman.
2001-05-22 09:32:18 +00:00
jlam
c173675b77 Document why GNU readline is required. 2001-05-22 06:59:25 +00:00
jlam
f646f28d92 Honor CFLAGS passed in from environment during build. 2001-05-22 06:54:43 +00:00
jlam
515c44df5b Use editline readline emulation when available. 2001-05-22 06:54:05 +00:00
jlam
5241a99e7e Set WRKSRC to location of configure script, and manually create do-build
and do-install targets.  This is better as the configure script gets
called with the correct environment settings.  Also set the values for
INSTALL_PROGRAM and INSTALL_DATA used in the project's Makefile to their
pkgsrc BSD_* counterparts.
2001-05-22 06:38:08 +00:00
jtb
2d2a99b762 Update of swi-prolog to 4.0.5.
VERSION 4.0.5
=============

  * FIXED: Actually make re-hashing predicates work.  This bug causes
    large (dynamic) predicates that are queried while they are build
    to show linear rather than constant-time access behaviour.  Perfomance
    difference on victim programs can be dramatic!

  * ENHANCED: GNU-readline interface.  Detect useful additions from readline
    4.2, avoid type-conflicts and handle re-entrance through XPCE much more
    cleanly as well as aborts.

  * PORT: Many C-compiler warnings, making the native IRIX cc compile
    SWI-Prolog silently.  Improved detection of wait() variations.
    Thanks to Jean Wang for providing me with access to their machine.

  * ENHANCED: Handling of prolog_edit:select_location/3.  Enhancement
    exploited by XPCE to use GUI-based selection if running from GUI.

  * ADDED: -s file to load a script-file in addition to the user
    initialisation file.

  * ADDED: -q commandline option to make the system operate silently.

  * ADDED: PrologScript support using #!, providing direct scripting
    in Unix and additional parameters on MS-Windows.

  * FIXED: Wipe the anonymous clauses for meta-calling on $dcall/1 as
    soon as possible.  Reported by Stefan Mueller.

  * ADDED: Save home in saved-state for class development and kernel.  This
    enables saved-states to find the installed SWI-Prolog.  Especially
    useful for Windows.

  * ADDED: Save default stack limits in the Windows registry and add a
    menu item to the manpce/0 File/Edit Preferences menu to manage these
    registry settings.
2001-05-22 01:21:16 +00:00
jtb
27f4a9031e Update to nhc98-1.04.
nhc98 1.04 (2001-05-21) features

     * New:   Support   for   extended  module  namespaces  of  the  form
       Long.Hierarchical.Module.Name  is  now  provided in both nhc98 and
       hmake.
     * Update: Improved printing of I/O error messages.
     * Update: Improved (more accurate) time profiling now provided.
     * Bugfix:  An  identifier  hidden  on  import  and  redefined in the
       current  module,  then  exported,  but also imported qualified and
       used  qualified  in  the  current  module,  led  to  an  incorrect
       interface file being generated.
     * Bugfix:  hmake  issued  an  unnecessary -cpp flag on some literate
       files.
     * Bugfix:  Type  of IO.hSetPosn :: Handle -> HandlePosn -> IO () was
       incorrect
     * Bugfix: Compile-time error in src/tracer/runtime/ident.c on RedHat
       7 and other systems using the new ISO C standard for fpos_t.
     * Bugfix: A file opened in ReadMode or WriteMode was actually opened
       in  ReadWriteMode,  so  if  the  file  had  strict permissions the
       correct   opening  command  would  fail.  Conversely,  opening  in
       ReadWriteMode  actually  gave  ReadMode  instead, and file updates
       silently failed.
     * Bugfix:  Operator  sections  suffered from priority inversion, for
       example  (^2*3)  was incorrectly parsed as (^(2*3)), even though ^
       binds more tightly than *.
     * Bugfix:   The   library  function  Directory.createDirectory  gave
       strange  permissions  to  the new directory. (Mode was in hex, but
       should have been octal!)

   The  following  updates  and  bugfixes  are  specifically for Hat, the
   redex-trail-based tracing and debugging system.
     * New architecture: Traced programs now build their trails in files,
       not  in  the  heap.  This has four consequences: (1) you no longer
       need  to  give your program large amounts of extra memory to trace
       it; but (2) you may need to have large amounts of free disk space,
       particularly  to  trace long-running programs; (3) for the moment,
       traced  programs  now  run  even slower (we are working to improve
       this);  and  (4)  trails are now first-class objects, so new tools
       can  manipulate  them  to  provide  several different views of the
       computation.
     * New  tools:  Storing trails in files means we can now provide more
       tools  to  examine  them.  The  original  graphical browser is now
       renamed hat-trail, and can fully explore the redex trails in file.
       hat-stack  gives  a virtual stack back-trace from a trail file (no
       need  to  re-run  the  program).  hat-observe  gives you HOOD-like
       observation  of  the  input  and output from functions. hat-detect
       does algorithmic debugging in the style of Freja; it discovers and
       identifies  the  location  of  a  bug after asking you some simple
       questions.  hat-check  verifies  the  integrity of the trail file,
       prints a textual dump, and gives statistics about its contents.
     * Update:   Fuller  Standard  Library  support  for  tracing:  added
       Directory, System, CPUTime, Random. (Still missing: Time, Locale.)
     * Update:  More  Haskell'98  language  features  are accepted: named
       fields  can  now  be traced, although the hat tools don't yet show
       them in source form. Pattern bindings are also handled better.
     _________________________________________________________________
2001-05-22 00:45:54 +00:00
jlam
332502c354 Update libperl to 5.6.0nb3. This is basically a downgrade to version
5.6.0nb1 as this package no longer builds and installs libperl.so as a
shared library.  Instead, libperl.so is built and installed by the perl
(as of 5.6.0nb6) if the platform supports shared libraries (or if
MKPIC=yes).  The libperl package again only installs DynaLoader.o as a
relocatable shared object.
2001-05-20 05:21:45 +00:00
jlam
4a90c869cc Update perl-base to 5.6.0nb2. Changes from version 5.6.0nb1 are building
and installing libperl as a shared libarary on platforms that support
shared libraries (or those that explicitly define MKPIC=yes).  As a
compromise for those platforms that have the need for speed and thus a
statically-linked perl binary, explicitly link perl against a static
libperl.a.

Before this update, the current situtation was that we installed the static
library in perl and the shared library in libperl.  This caused the wrong
linker flags to be passed to perl packages and they might have gotten a
hidden dependency on libperl depending on whether they were built with or
without libperl installed.  Avoid all this by only having the static or
shared library installed at any time.
2001-05-20 05:21:23 +00:00
jlam
c14ef19cf3 Update perl to 5.6.0nb6 as a result of requiring the new version of perl-base
(5.6.0nb2).
2001-05-20 05:16:07 +00:00
jlam
dc6eadbf21 Use ${XARGS} instead of invoking xargs directly. 2001-05-19 03:56:23 +00:00
jlam
84ed7d2f11 Fix this to build on a.out platforms. Addresses pkg/12945 by John Klos. 2001-05-18 13:52:49 +00:00
abs
5448efce07 Only depend on suse_x11 if not on Leenux 2001-05-17 15:20:50 +00:00
abs
74dbc5ed42 Enable for Linux-*-i386 2001-05-17 15:03:00 +00:00
dillo
4eca04c55b fix unaligned access on alpha by applying patch from PR 12905. 2001-05-16 13:27:55 +00:00
jtb
0121dd106b Add a distfile checksum. 2001-05-16 11:10:16 +00:00
agc
f608dc572a Upgrade to version 1.14 of jikes.
The new version is a bug fix release.

Addresses PR 12946 from Hauke Fath <hf@tangro.de>
2001-05-16 10:05:35 +00:00
fredb
213e1bd0ea Update to squeak-3.0pre2. Where to begin? The default image is more
sophisticated than 2.7's, including improved speech synthesis, MIDI,
graphics, even singing faces. A concise change log is not available.
2001-05-16 02:27:52 +00:00
jtb
385de1b486 Add and enable a60. 2001-05-15 21:22:27 +00:00
jtb
392801e338 Initial import of a60.
From the documentation:

   This Algol 60 interpreter is based upon the "Revised Report on the
Algorithmic Language Algol 60" [RRA60].

   At school, a long time ago, I learned Algol 60 in a completely
theoretical manner.  Later I learned Algol 68 and C (and more ...).

   The concept of call-by-name never left my mind, and so I started to
write this Algol 60 interpreter:  Made for fun and a call-by-name.
2001-05-15 21:21:45 +00:00
jtb
96a3198b0e Add and enable mercury. 2001-05-15 21:10:42 +00:00
jtb
94b79d79d1 Initial import of mercury-0.10.1.
Mercury is a modern logic/functional programming language, which
combines the clarity and expressiveness of declarative programming
with advanced static analysis and error detection features.  Its
highly optimized execution algorithm delivers efficiency far in excess
of existing logic programming systems, and close to conventional
programming systems. Mercury addresses the problems of large-scale
program development, allowing modularity, separate compilation, and
numerous optimization/time trade-offs.

This package includes the compiler, profiler, debugger, documentation,
etc.  It does NOT include the "extras" distribution; that is available
from <http://www.cs.mu.oz.au/mercury/download/release.html>.
2001-05-15 21:09:44 +00:00
wiz
13cce5992d space -> tab. 2001-05-12 16:15:44 +00:00
jlam
3d47adb084 Sort. 2001-05-12 06:05:31 +00:00
jlam
0c6ad0bf36 Update libperl to 5.6.0nb2. Changes from version 5.6.0nb1 include adding
back a dynamic libperl.so to the installation, needed as a result of a
change made on 2000-11-08 to the perl5-base package to not build against a
dynamic libperl.so.
2001-05-11 14:52:21 +00:00
wiz
56c9966741 Adapt to new version number of linuxppc_lib. 2001-05-11 09:15:43 +00:00
jtb
5eef7b50d1 Install docs in share/docs, not share/examples. 2001-05-11 01:43:03 +00:00
dmcmahill
83591d8ddb mark this pkg as not for alpha or sparc64 as 64-bit platforms are not
yet supported by the program.
2001-05-10 23:41:29 +00:00
wiz
d8885db911 Mark it as BROKEN for now, since the distfile is not available anymore.
New version 4.0 is out, update HOMEPAGE URL for that.
2001-05-10 14:36:49 +00:00
abs
6ea27a812d Fix typo in comment 2001-05-09 16:36:44 +00:00
agc
e39444152e The Makefile says that the distfile will change for different minor version
numbers of this package.

To make sure we get the right distfile, use ${MASTER_SITE_BACKUP}.

Move to sha1 digest, and add distfile size.
2001-05-09 15:14:16 +00:00
agc
f71a71cdef The distfiles on the master site have changed. Change MASTER_SITE to
${MASTER_SITE_BACKUP}.

Use sha1 digest, and add distfile size.
2001-05-09 13:09:24 +00:00
jlam
21fe3825fd Add libstdc++.so needed after shared libs change. 2001-05-07 18:28:37 +00:00
jtb
f892ccde27 Cosmetic changes. 2001-05-05 21:23:07 +00:00
jlam
022d07a536 Mechanical changes of tk DEPENDS:
tk-8.3.2  -> tk>=8.3.2
	tk-[0-9]* -> tk>=8.0
	tk-8.*    -> tk>=8.0
2001-05-05 19:51:13 +00:00
hubertf
ea2f2f111b regen for patch-az 2001-05-05 16:04:49 +00:00
agc
f9793bb3ac Add sparc distfile digest and size. 2001-05-04 12:49:40 +00:00
skrll
464082f47d Add --enable-shared to the configuration phase so that a shared libstdc++
gets built.

Add makefile fragments to do the right thing for elf and a.out. Make sure
they are used.

Add @exec/@unexec install-info to the PLIST.

Fixes pkg/12154 from Olaf Seibert <rhialto@polderland.nl>
2001-05-04 10:15:44 +00:00
skrll
f8116655e8 Sort. 2001-05-04 09:19:21 +00:00
fredb
ee6678cb21 Wrap lines consistently to 72 columns. 2001-05-03 23:32:08 +00:00
jtb
4dec00fdaa Add defaults for all instances of EVAL_PREFIX. 2001-05-03 22:16:50 +00:00
fredb
b7b3b3dafd Add audio support (ossaudio + a work-around for PR lib/12796).
Don't bother trying to compile for debugging in the pkgsrc Makefile.
"-fomit-frame-pointer" makes it impossible to debug on i386 anyway,
and it's easy enough to modify the package makefiles before building.
2001-05-02 04:02:05 +00:00