summaryrefslogtreecommitdiff
path: root/lang
AgeCommit message (Collapse)AuthorFilesLines
2003-01-04Make this install and run propery by adding in the relevant linker flagscjep2-6/+19
2003-01-03Take maintainership of nawkcjep1-2/+2
2003-01-03Update of lang/nawk to 20021213.cjep2-5/+5
Changes since previous version: For the moment, the internationalization changes of nov 29 are rolled back -- programs like x = 1.2 don't work in some locales, because the parser is expecting x = 1,2. Until I understand this better, this will have to wait.
2002-12-31Mechanical conversion to use java-vm.mk.jlam2-25/+15
2002-12-27Add patches to make newer bison's happy and fix problem encounteredjschauma3-1/+43
in Huberts latest bulk build.
2002-12-26Move java.mk to java-vm.mk to avoid name conflict with devel/mk-files asjlam4-9/+8
suggested by Simon J. Gerraty.
2002-12-25Use automatic PLIST handling.grant4-6/+4
2002-12-25Use automatic PLIST handling.grant6-8/+6
2002-12-24Unused.wiz1-62/+0
2002-12-24Bump PKGREVISION because of dependency on latest freetype2 or glib2wiz2-4/+4
package and library major bumps therein. Also match dependency in corresponding buildlink2.mk's for the same reason. Mmmm, binary packages.
2002-12-24Make this compile and install cleanly on IRIX.jschauma2-1/+16
2002-12-23Whitespace fixcjep1-4/+4
2002-12-23Whitespace fixcjep1-4/+4
2002-12-23mark this NOT_FOR_PLATFORM Darwin, since the earliest version of perlgrant1-1/+3
with Darwin support is perl58 and attempting to build this version fails.
2002-12-23Remove support for buildlink.mk -- noone uses it any longer.wiz1-6/+2
2002-12-23Remove references to pth/buildlink.mk.wiz1-5/+1
2002-12-23Downgrade the dependency to 0.15.1nb1. The libraries didn't change andjlam1-2/+2
the libtool change is only useful at build time.
2002-12-23Bump PKGREVISION for lang/librep and update the buildlink2.mk dependencyjlam2-4/+11
to the latest librep. librep installs and uses its own libtool for use by rep-* packages. We replace librep's libtool with a symlink to ${LOCALBASE}/bin/libtool and add a dependency on libtool-base. This addresses PR 19495 by Bill Sommerfeld.
2002-12-19Add some man pages that are missing from the auto-generated PLIST.jlam1-1/+3
2002-12-19Initial buildlink2.mk for wonka - taken from kaffeabs1-0/+29
2002-12-18Add and enable pyrextsarna1-1/+2
2002-12-18Pyrex - a Language for Writing Python Extension Modules. Pyrex lets youtsarna4-0/+113
write code that mixes Python and C data types any way you want, and compiles it into a C extension for Python. Plex is now bundled with Pyrex, and the py-plex package will be obsoleted.
2002-12-13Synch PLIST with reality.jschauma1-26/+23
2002-12-12update to gawk-3.1.1. While here, make this work again under NetBSD sincedmcmahill9-23/+136
this gawk version is newer than the version shipped with 1.6 and has some potentially useful features such as 2 way pipes which allow easy access to the sort(1) command. Changes from 3.1.0 to 3.1.1 --------------------------- 1. Six new translations. 2. Having more than 4 different value for OFMT and/or CONVFMT now works. 3. The handling of dynamic regexes is now more more sane, esp. w.r.t. the profiling code. The profiling code has been fixed in several places. 4. The return value of index("", "") is now 1. 5. Gawk should no longer close fd 0 in child processes. 6. Fixed test for strtod semantics and regenerated configure. 7. Gawk can now be built with byacc; an accidental bison dependency was removed. 8. yyerror() will no longer dump core on long source lines. 9. Gawk now correctly queries getgroups(2) to figure out how many groups the process has. 10. New configure option to force use of included strftime, e.g. on Solaris systems. See `./configure --help' for the details. Replaced the included strftime.c with the one from textutils. 11. OS/2 port has been updated. 12. Multi-byte character support has been added, courtesy of IBM Japan. 13. The `for (iggy in foo) delete foo[iggy]' -> `delete foo' optimisation now works. 14. Upgraded to gettext 0.11.2 and automake 1.5. 15. Full gettext compatibility (new dcngettext function). 16. The O'Reilly copyedits and indexing changes for the documentation have been folded into the texinfo version of the manuals. 17. A humongously long value for the AWKPATH environment variable will no longer dump core. 18. Configuration / Installation issues have been straightened out in Makefile.am.
2002-12-12Check if $CC is defined first, next comparison breaks otherwise.salo1-2/+2
2002-12-11Also quote CC and YACC when adding them to MAKEFLAGS (not done in lastjmmv1-2/+2
commit). This can fix problems if it happens that those variables contain spaces (or some other special character). Suggested by Christopher Richards in private mail.
2002-12-11Add and enable openc++cjep1-1/+2
2002-12-11Initial import of OpenC++ 2.5.12 into the NetBSD packages collection ascjep8-0/+231
lang/openc++. OpenC++ is a version of C++ with a Metaobject Protocol. In other words, it is a tool of source-code translation for C++. Programmers can easily implement various kinds of translation so that they can define new syntax, new annotation, and new object behavior. OpenC++ is useful if they need, for example: developing extensions to C++, to provide support for things like parallelism, distribution, concurrency, and persistence; Adding domain-, application-, or class-specific compiler optimizations; Building their own version of (runtime) MOP for C++. Supplied by Marko Schuetz in PR#19203. Thanks! Thanks also to Masao Uebayashi for his help.
2002-12-11LTCONFIG_OVERRIDE -> LIBTOOL_OVERRIDE, fixes build problem ("cannot finddrochner1-2/+2
-liconv") mentioned by Andrew Brown in PM
2002-12-11Quote CFLAGS when passing them to MAKEFLAGS; if they contain spaces, buildjmmv1-3/+7
will fail. Also fix a "typo" in the manpage (Awk->Nawk). Patch provided by Christopher Richards in PR pkg/19344. While I'm here, move manpage generation to the post-build target (where it should be) and use INSTALL_MAN to install it (instead of generating it in place).
2002-12-09Replace "true" by "${TRUE}".tron3-7/+7
2002-12-091. Respect YACC, CC, CFLAGS as per PR#19013.cjep2-5/+6
2. Update to 20021129. Changes since 20020628 (from FIXES file): modified b.c (with tiny changes in main and run) to support locales, using strcoll and iswhatever tests for posix character classes. thanks to ruslan ermilov (ru@freebsd.org) for code. the function isblank doesn't seem to have propagated to any header file near me, so it's there explicitly. not properly tested on non-ascii character sets by me.
2002-12-07Replace IGNORE with PKG_FAIL_REASON or PKG_SKIP_REASON as appropriate.schmonz6-12/+12
2002-12-05use automatic MESSAGE handling.grant2-7/+2
2002-12-01USE_PKGLOCALEDIR, remove unnecessary patch.salo4-29/+16
2002-12-01Forgot share/locale -> ${PKGLOCALEDIR}/locale in previous commit.salo1-11/+11
2002-12-01USE_PKGLOCALEDIR, cp -> ${CP}, PKGVERSION -> PKGREVISION.salo1-5/+6
2002-11-30USE_PKGLOCALEDIR.grant5-44/+9
2002-11-29Default to green threads on powerpc, as suggested by manu@.schmonz3-7/+33
2002-11-25- move PLIST elements not found on powerpc to PLIST.i386schmonz4-942/+237
- include bsd.pkg.mk explicitly, rather than in the JRE's Makefile.common - be more thorough at avoiding installation of files that are also found in the JRE
2002-11-25- move PLIST elements not found on powerpc to PLIST.i386schmonz8-199/+55
- include bsd.pkg.mk explicitly, rather than in Makefile.common - replace dependency on linuxppc_lib with suse_base to get a sufficiently recent glibc - teach the remaining two usages of `uname -m` output about our various powerpc platforms This makes the Blackdown JRE finally work on powerpc again. Note that suse_base requires a Linux kernel version >= 2.2. NetBSD-current's COMPAT_LINUX reports itself as 2.4.18 by default on i386 and powerpc. On NetBSD/powerpc 1.6, you'll need to override the default value of the "emul.linux.kern.osrelease" sysctl. On NetBSD < 1.6, you can try setting the sysctl, but the emulation may be insufficient to run this software properly. Also note that on powerpc, you must specify the "-green" option, because the Classic VM hangs.
2002-11-23Fix PLIST on powerpc.wiz4-2/+912
2002-11-23On Darwin, since it's currently the only Python that's usable there,schmonz1-1/+5
force PYTHON_VERSIONS_ACCEPTED to "22".
2002-11-23Provide Darwin-specific packing list entries.schmonz2-1/+35
2002-11-22Fix pasto, localedir->prefix. Thanks to Manuel Bouyer for pointing this out.salo2-4/+4
2002-11-20use BUILD_DEPENDS+= not just =mrg1-2/+2
2002-11-19Add some more patches for PKGLOCALEDIR. Closes PR 18793 by Grant Beattie.salo3-1/+33
2002-11-15buildlink1 -> buildlink2jlam2-21/+10
2002-11-14buildlink1 -> buildlink2, and use java.mk for proper Java handling.jlam4-11/+48
2002-11-14buildlink1 -> buildlink2jlam1-6/+8