summaryrefslogtreecommitdiff
path: root/lang
AgeCommit message (Collapse)AuthorFilesLines
2005-05-19sync with changed distfile -- they have the habit to do minor updatesdrochner2-6/+10
without changing the distfile name changes seem X11/GL related which we don't support anyway
2005-05-19Split the conditional which seems to occasionally be malformed. Thisjlam1-3/+5
probably has something to do with how make deals with short-circuit evaluation of conditionals, but it's a simple matter to split the conditional since USE_PERL5 is eventually going away.
2005-05-19When perl5/buildlink3.mk is included by a package Makefile, the buildlinkjlam1-3/+2
framework will handle adding the correct dependency.
2005-05-18Goal: Remove USE_PERL5 from pkgsrc.jlam4-10/+56
Plan: (1) Change USE_PERL5=build into USE_TOOLS+=perl. (2) Change all other USE_PERL5 into including perl5/buildlink3.mk. Possibly, for packages that don't actually build anything with perl, but merely require it for the perl interpreter, we can instead do: USE_TOOLS+= perl TOOLS_DEPMETHOD.perl= DEPENDS but this is more verbose than simply including the perl5/buildlink3.mk file. Move the PERL5_REQD computation into a lang/perl5/version.mk file, and only do the USE_PERL5 logic in bsd.pkg.use.mk if we're not using the new tools framework. This consolidates all of the perl-handling into two places -- lang/perl5 and mk/tools/perl.mk.
2005-05-18Remove packages that have been broken on 2.0/i386 for over 9 monthswiz16-382/+1
now; neither maintainer nor anyone else stepped up to fix them. Predicted on tech-pkg and in private mail to maintainers; no comments.
2005-05-18Update lang/nawk to 20050425. Pkgsrc changes include:jlam3-17/+33
Grab distfile from ${MASTER_SITE_LOCAL} where it's in a ${PKGNAME}-specific directory since the distfile has no version number. Use the .shar instead of .tar.gz distfile to remove the need for dependencies to build this package. Changes from nawk-20040207 include: Apr 24, 2005: modified lib.c so that values of $0 et al are preserved in the END block, apparently as required by posix. thanks to havard eidnes for the report and code. Jan 14, 2005: fixed infinite loop in parsing, originally found by brian tsang. thanks to arnold robbins for a suggestion that started me rethinking it. Dec 31, 2004: prevent overflow of -f array in main, head off potential error in call of SYNTAX(), test malloc return in lib.c, all with thanks to todd miller. Dec 22, 2004: cranked up size of NCHARS; coverity thinks it can be overrun with smaller size, and i think that's right. added some assertions to b.c to catch places where it might overrun. the RE code is still fragile. Dec 5, 2004: fixed a couple of overflow problems with ridiculous field numbers: e.g., print $(2^32-1). thanks to ruslan ermilov, giorgos keramidas and david o'brien at freebsd.org for patches. this really should be re-done from scratch. Nov 21, 2004: fixed another 25-year-old RE bug, in split. it's another failure to (re-)initialize. thanks to steve fisher for spotting this and providing a good test case.
2005-05-17"nbtar" is good enough to extract GNU tar archives. Also removejlam1-4/+2
unnecessary inclusion of bsd.prefs.mk.
2005-05-17Add checksum for jce_policy-1_4_2.zip again.veego1-1/+4
See the note in the Makefile on how to make this happen the next time you do an update.
2005-05-16Change the EXTRACT_USING_PAX defined/undefined option into a EXTRACT_USINGjlam2-4/+4
which can take multiple values -- "pax" or "gtar". The default value of EXTRACT_USING is "pax", which more closely matches reality since before, we were using bootstrap "tar" for ${GTAR} and it was actually pax-as-tar. Also, stop pretending pax-as-tar from the bootstrap kit or on NetBSD is GNU tar. Lastly, in bsd.pkg.extract.mk, note whether we need "pax" or "gtar" depending on what we need to extract the distfiles.
2005-05-16Note that gtar is required by the package.jlam4-4/+9
2005-05-15Note where gzip or gunzip is required by the package since it isn'tjlam3-7/+10
required by default any longer in bsd.pkg.mk under the new tools framework.
2005-05-15This package requires yacc.jlam1-1/+3
2005-05-15Remove some local declarations which breaks compilation on DragonFly.bouyer2-3/+19
Patch provided by Joerg Sonnenberger in private mail.
2005-05-15Rename BASENAME to BD_BASENAME to fix clashes with ${BASENAME} from pkgsrc/mkveego3-8/+8
2005-05-12We don't need to check for whether the variables are defined beforejlam1-5/+1
using them, as these values are referenced till later when the variables will definitely have the correct value. This removes the need to include vars.mk here.
2005-05-12Allow vars.mk to be included multiple times. We avoid excessivejlam1-35/+34
computation by caching the variables using MAKEVARS.
2005-05-12Correct PLIST for ports other than i386.kristerw4-97/+108
Fix a build issue for Darwin. Bump PKGREVISION.
2005-05-11Move the arm-specific hack into the hacks.mk file, and properly documentjlam2-8/+11
what is happening.
2005-05-10Fix srcdist.mk usage for _PYTHON_VERSION 24, and add reminder comment toabs2-4/+6
python24/Makefile for next update
2005-05-10as with sun-jre14 and sun-jre13, add dependency on suse_locale to ensurejschauma1-6/+6
that non-us-keyboard characters can be displayed and entered
2005-05-10as with sun-jre14, pull in suse_locale to ensure that other charsetjschauma1-6/+6
characters can be used
2005-05-10add a dependency on suse_locale.jschauma1-6/+6
This is a light enough dependency to justify adding even if only necessary for non-plain-english languages. As per PR pkg/20824.
2005-05-09Replaced wip category with lang. Approved by xtraeme.rillig1-2/+2
2005-05-09update to Python 2.4.1recht8-278/+210
Highlights of this new release include: - Bug fixes. According to the release notes, several dozen bugs have been fixed, including a fix for the SimpleXMLRPCServer security issue (PSF-2005-001). Also add a patch by Joerg Sonnenberger to add basic support for DragonFly BSD. For a detailed list of changes see: http://python.org/2.4.1/NEWS.html
2005-05-09once PHP version is selected, set PHP_VERSION_REQD appropriately, so thatjdolecek1-3/+6
the selected version is forced for any sub-builds; this should fix the bulk build problems for php5-extensions use := to avoid variable recursion
2005-05-09follow PHP4 packaeg lead and add 'php5' to CATEGORIESjdolecek1-2/+2
2005-05-09Modify previous: only enable -fno-cse-skip-blocks when compiler isxtraeme1-1/+5
gcc-3.x.
2005-05-09Apply patch from Richard Earnshaw on port-arm@ to fix build onxtraeme1-1/+5
NetBSD/arm.
2005-05-09Fix installation after USE_BUILDLINK3 was enabled by default:xtraeme3-6/+25
* ezm3 installs its files into ${PREFIX}/ezm3, the installation fails due to missing libraries, fixed with BUILDLINK_PASSTHRU_DIRS. * Provide a buildlink3 file with DEPMETHOD=build to fix the cvsup packages. Bump PKGREVISION, this closes PR pkg/29986 and PR pkg/30159.
2005-05-08Update sun-jre15 and sun-jdk15 to 5.0.3abs5-142/+612
Changes since 5.0.2: Hotspot client compiler overfills CodeBuffer: crashes when deoptimizing. JCK: /api/java_net/URI/[Ctor, Components,Create] Tests failing with [-server -Xcomp] in Linux The popup menu displays the graphical box but there is no menu items inside the box. REGRESSION:Compilation error "local schedule failed (not retryable)" with simple loop JCK1.5: JNI call made with exception when -Xcheck:jni is used. RedefineClasses causes VerifyError Verifier must treat all versions of class being redefined as equal types CompiledMethodLoad reports incorrect addresses in the location map Solaris-amd64: nsk/regression/b4660518 test exceeds the default 18-page shadow zone size apt should return members in source order REGRESSION: apt slower in Tiger update train than FCS due to name lookup String.getBytes() does not work on some strings larger than 16MB (cs) CoderResult.isOverflow() returns false when UTF-16 overflows Drawing GeneralPath crashes JVM if antialias is on Invisible applet steals focus from HTML form field (MSIE, Sun plug-in only) REGRESSION: JComboBox don't respond to arrow keys on linux (has focus listener) [Cinnabar17] On X86, suntea login page can't be input backspace, arrow keys, and return key not working in java applications [Cinnabar25 Linux]SunTea hangs the system [Cinnabar25 Linux]SunTea hangs the system (ref) test/java/lang/ref/SoftReference/Pin.java fails REGRESSION: Socket.getLocalAddress() returns address of 0.0.0.0 on outbound TCP String constructor with "KSC5601" encoding throws AccessControlException Kerberos module cannot authentiate with different KDCs/principal names CertStore.getInstance(String,CertStoreParameters,String) throws NoSuchAlgorithmE JTree should toggle for all even-numbered clicks Cannot Ctrl-Shift-Click to create disjoint selection interval in list XP L&F: JComboBox has wrong rollover effect under Windows XP LookAndFeel 1.4 REGRESSION: In Motif L&F JComboBox doesn't react when spacebar is pressed GTK: JColorChooser hue spinner doesn't update the selected color REGRESSION: JTabbedPane setFocusable(false) and removing tabs REGRESSION: ArrayIndexOutOfBoundsException in BasicTabbedPaneUI.getTabBounds() Changing system preferences after switching from GTK L&F causes L&F mixup Lead Selection index is not shown in JFileChooser on GTK LAF Make the demo code more friendly to build test/java/text/Format/CurrencyFormat.java failed for tr_TR 142_xx: Missing exception/error messages while using unsynchronized Collection objects concurrently New Romanian currency New Currency for Madagascar Regtest java/util/Currency/ValidateISO4217.java fails after 2005-01-01 due to new Turkish lire Step requests ignored after an exception in debugee Error 1722 coming during jre1.5.0 installation by Windows user with limited (+elevated) priviledges Package based installation of tiger update 1 shows J2SDK REGRESSION: wrong time stamp for plugin dll files on Win98(2nd) Tiger Update 2 JRE patch bundle creates msvcrt.dll under jre1.5.0_02/bin REGRESSION: uninstall JDK 5.0u3 does not remove demo dir on windows incorrect "group (thousands) separator" in 5.0 sun.text.resources.LocaleElements_sv S. Chinese translation for Twi language is wrong S.Chinese localization for JDK software some of jdk man pages show unnecessary lines in ja locale S.Chinese localization for JDK software - part II REGRESSION: JNI Performance Regression in 1.5.0 -server HPROF: broken when used with HAT, starting with 1.5.0_01, Missing thread dump remove memory barrier on native transitions Disable META-INF/* lookup from codebase in applet/plugin classloader Do not set initial focus on an applet during startup if applet is targeted for JDK 1.1/1.2 Problem with embedded Internet Explorer using Sun Java Applets hang when using plugin 1.5 in Linux with Mozilla 1.7.x "javaplugin.classloader.cache.enabled=false" does not work REGRESSION: isActive call from Javascript no longer works in IE Applet will not reauthenticate user when returning from another applet REGRESSION: Loading applet fails if URL contains %7E Java Webstart application startup is too slow Regression: updating title or icon in jnlp file will not update shortcuts. can't remove old app if vendor change title attribute in jnlp file on windows platform javaws apps are put in Add/Remove progrgrams entries for all users Java Web Start jnlp file caching problem. TCK-jnlp 1.5: jnlp_file/resources/j2se/index.html#vmArgs hang in some cases. Support wrapping of software keys using RSA-PKCS1
2005-05-07do not define MASTER_SITES and EXTRACT_SUFX if PECL_VERSION is set,jdolecek1-1/+4
so that lang/php/ext.php need not use = assignment and extensions would be able to use different setting
2005-05-04Make this build again after bl3 was enabled by default.kristerw1-2/+3
2005-05-02Fix MAINTAINER email address for David Ferlier.reed1-2/+2
2005-05-02update to 2.33.2drochner3-16/+7
changes: -bugfixes -minor portability fixes
2005-05-02update to 5.15.169drochner4-58/+119
This fixes (additionally to internal changes) compilation with gcc3. (it likely breaks on gcc2 now, but the effort to make it support both gcc versions isn't worth it imho)
2005-05-01Update nhc98 to 1.18.kristerw10-934/+388
Changes from 1.16: # New: Several more packages of hierarchical libraries are included in the build: base, parsec, haskell-src, QuickCheck, HaXml, HUnit, Cabal. # New: FFI improvements: foreign import "dynamic" is now supported, and named C header-files are now used. # New: The compiler now uses cpphs for Haskell source instead of cpp. This removes problems with string gaps, primes in identifiers, and so on. # New: In hmake-interactive, if the readline library is not available, the simple line editor now has a history mechanism. # Bugfix: hmake's processing of cpp conditional directives is improved also. # Bugfix: More evil bugfixes for gcc versions ? 3.3 # Bugfix: A numeric pattern can now match against a Num newtype. # Bugfix: Foreign imports and abstract newtypes now play OK together. # Bugfix: Methods in qualified classes no longer need to be qualified in instance decls. # Bugfix: GreenCard now accepts <<.../...>> syntax.
2005-04-25update to 5d9perry1-1/+1
2005-04-24oops. remove PKGREVISION. This was up for less than five minutes -- itperry1-2/+1
should be fine.
2005-04-24Update to version 5d9.perry3-10/+10
Changes appear to be speed improvements, bug fixes, some support for ia64 architectures, and some improvements to the conformance tests.
2005-04-22Remove RScheme -- broken on 2.0/i386 for other 8 months, and noone steppedwiz16-550/+1
up to fix it.
2005-04-22Update MASTER_SITES.wiz1-2/+2
2005-04-19Fix depending packages' version. Thanks much for wiz notifying me.taca1-4/+4
2005-04-19Fix typo: s/tcltllib/tcltklib/. Thanks much for wiz.taca2-4/+4
2005-04-19Remove wonka -- the project is dead.wiz22-466/+1
skrll@ ok.
2005-04-18Update sun-j*4 to 1.4.2_08, a bug fix release.jschauma4-19/+19
Changes since 1.4.2_07 according to http://java.sun.com/j2se/1.4.2/ReleaseNotes.html: - Hotspot client compiler overfills CodeBuffer: crashes when deoptimizing. - ShouldNotReachHere() failure at hotspot/src/cpu/i486/vm/c1_FrameMap_i486.cpp, 92 - JVM outputs exceptions or crash with a program using Big interger in 1.4.2_08b2 - Flattened alias type for [KlassPtr + offset] must be consistent - vtest failed intermittenly when running with tiger b23 -server -Xcomp - BugFixes from Azul Systems - SIGSEGV in Type*Type::meet(const Type*)const+0x0 - 1.4.2_06 crashes when setting -XX:CompileThreshold=200 -server on Windows - -XX:+AggressiveHeap broken in build 1.4.2_22 for Windows/IA64 - CMS: large unused perm gen can degrade scavenge times on MP - IA64 - JVM crashes on Itanium 2 and AS3.0 box in 1.5b55 when stackoverflow occurs - JVM abort on unexpected signal - Add java runtime flag SuppressFatalErrorMessage to skip all error handling logic on fatal error. - Incorrect abstract interface semantics in JDK ValueHandler - String.getBytes() does not work on some strings larger than 16MB - UnixPrintServiceLookup should not require file permission - Bundled com.sun.image.codec.jpeg JPEG API has errors for a new type of JPEG image - Invisible applet steals focus from HTML form field (MSIE, Sun plug-in only) - J2SE NIO: eucJP-open failed to be looked up. - using defaultReadTimeout appear to retry request upon timeout - App fails w/ classnotfound exception after restoring n/w connectivity - ZipFile$ZipFileInputStream doesn't close handle to zipfile - UDP DatagramSocket close causes delayed IOException - (ch) Interrupt-signal handler improperly installed, causing random exits (lnx) - Cannot change file filter on motif look & feel - 1.4 REGRESSION: In Motif L&F JComboBox doesn't react when spacebar is pressed - ALT + I does not work with Motif L & F - test/java/text/Format/CurrencyFormat.java failed for tr_TR - 142_xx: Missing exception/error messages while using unsynchronized Collection objects concurrently - deadlock in locking of TimeZone class during a read - New Turkish currency - JarFile.getInputStream throws ClassCastException when jar file is signed - current version functionality is incorrect in online docs - normal DnD program causes "FATAL ERROR in native method" - Java 1.4.2 on RedHat Enterprise Linux 4.0 Beta-1 (32 bit) seg faults. - JVM Crashes in verifier in Tigerb64 - Problem with embedded Internet Explorer using Sun Java - classes are loaded 512 bytes at a time, slowing down applet start time - memory leak in many jni calls (NewString etc.) - Java Webstart application startup is too slow - Java Webstart incremental update fails with java.util.ZipException
2005-04-15Adjust for changes done in the pkgsrc infrastructure to make thiskristerw2-1/+98
package build again.
2005-04-13patch TCL_SRC_DIR and TK_SRC_DIR into tclConfig.sh and tkConfig.sh correctlyjschauma2-4/+4
2005-04-13As with tcl and tk, patch the itclConfig.sh file to contain thejschauma2-3/+16
proper directories etc. While here, add a buildlink transformation to let packages to pass -litk or -litcl and get -litk33 and -litcl33.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv107-214/+107
2005-04-11Update php5 to 5.0.4. This is maintenance/bugfix release, full list of changesjdolecek6-25/+82
available at: http://www.php.net/ChangeLog-5.php#5.0.4