summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2002-12-10add a commented out switch to build a debugging versiondrochner1-1/+2
2002-12-10for the Python-version-selection magic to work properly, extension.mkdrochner5-10/+10
must be pulled in before srcdist.mk
2002-12-10 10.31 Packages that cannot or should not be builtschmonz1-1/+18
================================================= There are several reasons why a package might be instructed to not build under certain circumstances. If the package builds and runs on most platforms, the exceptions should be noted with NOT_FOR_PLATFORM. If the package builds and runs on a small handful of platforms, set ONLY_FOR_PLATFORM instead. If the package should be skipped (for example, because it provides functionality already provided by the system), set PKG_SKIP_REASON to a descriptive message. If the package should fail because some preconditions are not met, set PKG_FAIL_REASON to a descriptive message. IGNORE is deprecated because it didn't provide enough information to determine whether the build should fail.
2002-12-10Note update of pkglint (warn that IGNORE is deprecated).schmonz1-1/+2
2002-12-103.39: note that IGNORE is deprecated in favor of PKG_{FAIL,SKIP}_REASON.schmonz2-3/+8
Nudged by wiz@, who sees all.
2002-12-10revert oops in last commit.grant1-2/+2
2002-12-10use the form MESSAGE.${OPSYS}-${MACHINE_PLATFORM} for automaticgrant1-4/+4
MESSAGE file handling. pointed out by Masao Uebayashi.
2002-12-10Mention scummvm and pkglint updates (0.3.0 and 3.38 resp.).wiz1-1/+3
2002-12-10use ${PYSITELIB}.grant1-2/+2
from Audun Arnesen Nordal in email to tech-pkg.
2002-12-10Remove trailing whitespace.wiz1-4/+4
2002-12-10Update to 0.3.0b. Based on update supplied by Adam Ciarcinski, with somewiz4-27/+26
changes by me. Changes: - fix major race condition resulting in extremely frequent crashes on MorphOS/PocketPC - massive cleanup work for iMUSE. Sam and Max music now plays correctly - many bugfixes for Zak256, + sound and music support - music support for Simon the Sorcerer on any platform with real MIDI - experimental support for Indy3 (VGA) - Indiana Jones + Last Crusade - completed support for Monkey1 VGA Floppy, The Dig - added akos16 implementation for The Dig and Full Throttle costumes - added digital iMUSE implementation for The Dig and Full Throttle music. - Loom CD speech+music syncronisation improved greatly - added midi-emulation via adlib, for platforms without sequencer support - code seperation of various engine parts into several libraries - several fixes to prevent Simon the Sorcerer crashing and hanging - hundreds of bugfixes for many other games - new SMUSH video engine, for Full Throttle and The Dig - new in-game GUI - launcher dialog
2002-12-10Note R related changes and addition of py-rpy.markd1-1/+15
2002-12-10-r-1.6.1markd1-2/+1
2002-12-10Update to 3.38: Complete handling of category/Makefile; now compareswiz2-4/+32
list of SUBDIRS against list of directories and complains about mismatches.
2002-12-10Add py-rpymarkd1-13/+2
Remove R-*
2002-12-10Remove the R recommended library set as this is now included in themarkd29-213/+0
standard R distribution.
2002-12-10Initial import of py-rpy-0.3.markd5-0/+48
Package provided by Kent Polk <kent@goathill.org> in personal email. RPy is a very simple, yet robust, Python interface to the R Programming Language. It can manage all kinds of R objects and can execute arbitrary R functions (including the graphic functions). All the errors from the R language are converted to Python exceptions. Any modules that later were installed on the R system, can easily be used from within Python, without introducing any changes.
2002-12-10Update R to version 1.6.1.markd21-48/+328
Pkgsrc changes: Now builds the libR.so and provides a buildlink2.mk for packages that want to use it. From suggestions from Kent Polk. Recommended library set is now included in the base package. Changes: CHANGES IN R VERSION 1.6.1 NEW FEATURES o Added a few "trivial and obviously missing" functions to tcltk: tkchooseDirectory, tkpopup, tkdialog, tkread o barplot() has a new argument `axis.lty', which if set to 1 allows the pre-1.6.0 behaviour of plotting the axis and tick marks for the categorical axis. (This was apparently not intentional, but axis() used to ignore lty=0.) The argument `border' is no longer ".NotYetUsed". CHANGES IN R VERSION 1.6.0 USER-VISIBLE CHANGES o The default colour palette now has "grey" instead of "white" in location 8. See palette(). o grid(nx) behaves differently (but the same as in R versions <= 0.64). NEW FEATURES o Preparations for name space support: o The objects created in the methods package to represent classes, generic functions, method definitions, and inheritance relations now themselves belong to true classes. In particular, the "classRepresentation" objects follow the description in "Programming with Data" (section 7.6). o Other additions and changes to the methods package: o New methods ([[, print, str) and extended plot() method (incl. logical `horiz') for "dendrogram" class. o sprintf() now checks the agreement between formats and object types, and handles special values (NA, Inf, ...) correctly. o chol() now uses a tolerance for non-positive-definiteness and so should give more consistent results across platforms. o New function agrep() for approximate (fuzzy) string matching. o help.search() can now use both approximate (fuzzy) and regular expression matching. By default, if the pattern to be matched consists of only alphanumeric characters, whitespace or a dash, approximate matching is used. o axis() has three new optional arguments `col', `lty', and `lwd' all for drawing the axis line and tick marks. o Function vcov() (formerly in MASS), a generic function to return the variance-covariance matrix of the parameter estimates of a fitted model. o duplicated() and unique() have methods for matrices and arrays (based on ideas from Jens Oehlschl<E4>gel). o Internally memory sizes and counts of cons cells are now stored in unsigned longs. This allows memory limits to be set and objects created in the range 2-4Gb on 32-bit platforms, and allows 64-bit platforms to use much larger amounts of memory. o Command-line flags to set memory can now use the suffix `G' for gigabytes. The setting of maximum vsize is now only limited by the platform's address space. o All warning and error messages are truncated to a length set by options(warning.length=), defaulting to 1000. (Previously most (but not quite all) were truncated at 8192 characters.) o [dpqr]gamma() check for shape parameter > 0. o as.POSIX[cl]t can now convert logical NAs. o All installed packages (even those shipped with R) are given a `Built' field in the DESCRIPTION file. o as.data.frame() now coerces logical matrices into logical columns (rather than factors). o [[<-.data.frame no longer coerces character replacement values to factor. This is consistent with using $ to replace and with S4. o library() attempts to detect improperly installed packages, so as from this version an installed package must have a DESCRIPTION file and that file must have been stamped with a `Built:' line (which was introduced in 1.2.0). Under Unix-alikes, the platform is checked against that used for installation. o print.factor() has new arguments `max.levels' (with a smart default) and `width'. print.ordered() is no longer needed. o RNGkind() has an additional option for normal random generators: "Inversion". o data.frame() recycles factors and "AsIs" objects as well as atomic vectors. o rect() accepts additional graphics parameters through a ... argument (in the same way as polygon). o strwidth/strheight() now coerce their first argument in exactly the same way text() does, so a wider range of inputs is allowed. o prompt()'s default and data.frame methods have a new 3rd argument `name' allowing them to used more easily in scripts and loops. o rgb() has a new `maxColorValue' argument, allowing r,g,b in [0,M], particularly in {0:255}, efficiently and non-error-prone. o summaryRprof() provides the functionality of R CMD Rprof in R code, though more slowly. o pdf() now uses PDF not R code for clipping, which ensures that partially visible text strings are (partially) shown. o Each R session uses a per-session temporary directory which is removed at normal termination. The directory name is given by the tempdir() function, and filenames returned by tempfile() will be within that directory. o help.start() on Unix now uses a .R subdirectory of the per-session temporary directory and not ~/.R. A side effect is that ~/.R is now never deleted by R. o cbind/rbind() used to ignore all zero-length vectors, an undocumented quirk for S-compatibility. This caused problems when combining zero-extent matrices and zero-length vectors, and now zero-length vectors are ignored unless the result would have zero rows/columns. o plot.spec(x) now also works for other x than AR and Pgram results. o New functions La.chol() and La.chol2inv() for Cholesky decomposition and inverse of positive definite matrices using Lapack. o Changes to the tcltk package o New function axTicks() returning tick mark locations like axis(). o grid() has a more sensible default behavior. Tick axis alignment only happens when no numbers of grid cells are specified. New arguments lwd and equilogs; nx/ny = NA for not drawing, see ?grid. o installed.packages() has a new argument `priority'. o termplot() uses factor levels rather than 1,2,3... for x-axis. o The trace() function has been robustified and a new function tracingState() added to turn tracing temporarily on and off. o New cophenetic() in "mva" as utility for hierarchical clustering. o p.adjust() has two new methods, 'Hommel' and 'FDR', contributed by Gordon Smyth <smyth@wehi.edu.au>. o stars() now has add and plot arguments. and lots of bug fixes.
2002-12-10Change MASTERSITE so that the correct version of the source files arecjep1-5/+4
picked up during a fetch. Fixs PR#19045.
2002-12-10Note addition of gtkgo-0.0.10rh1-1/+2
2002-12-10Add and enable gtkgorh1-1/+2
2002-12-10Initial import of gtkgo-0.0.10, a GNOME Go board with skin support.rh5-0/+406
2002-12-10Fix a build problem on NetBSD/sparc.uebayasi3-1/+29
Address PR19337 from Sean Williams <sajw at freeshell dot org>.
2002-12-10The sample scripts in ${PREFIX}/share/festival/examples did not workgson4-3/+19
because their #! lines contained an incorrect path. Also, even if they had actually pointed to the installed "festival", it would still not have worked because a script cannot be used as a script interpreter. Even if it could, it still wouldn't have worked because the festival script did not pass --script as the first command line argument as festival.naked requires when running a script. Fixed by pointing the #! lines directly at the festival.naked binary.
2002-12-10galeon 1.2.7hubertf1-1/+2
2002-12-10Update to galeon 1.2.7:hubertf2-6/+6
- Compatible with Mozilla 1.0.1, 1.1, 1.2 - Sidebar link opening behaviour now matches Mozilla - TypeAheadFind support - bugfixes
2002-12-10add an include-dir - needed for galeon 1.2.7hubertf1-1/+2
2002-12-09Undo my last commit: there is no need to create ${PREFIX}/share/pixmaps asjmmv1-2/+1
this directory is now part of the standard tree.
2002-12-09Do not remove %D/share/pixmaps when deinstalling, as it is now part of thejmmv4-8/+4
standard directory tree.
2002-12-09Note updates of "suse64_base" and "suse_base" packages.tron1-1/+4
2002-12-09Bump package revision after "rpm2pkg" fix because older version of thetron2-4/+4
package have corrupt locale files.
2002-12-09Require at least version 1.3 of the "rpm2pkg" package after today'stron1-2/+2
hardlink support fix.
2002-12-09Note conflict between apr-devel and apache2 packages.wiz2-2/+5
2002-12-09Updated automake to 1.7.2 [wiz 2002-12-09]wiz1-1/+2
2002-12-09Update to 1.7.2. Bugs fixed in 1.7.2:wiz2-5/+5
* Fix installation and uninstallation of Info files built in subdirectories. * Do not run `./configure --with-included-gettext' during `make distcheck' if AM_GNU_GETTEXT([external]) is used. * Correctly uninstall renamed man pages. * Do not strip escaped newline in variables defined in one condition and augmented in another condition. * Fix ansi2knr rules for LIBOBJS sources. * Clean all known Texinfo index files, not only those which appear to be used, because we cannot know wich indexes are used in included files. (Debian Bug #168671) * Honor only the first @setfilename seen in a Texinfo file. * Treat "required file X not found" diagnostics as errors (exit status 1). * Don't complain that a required file is not found when it is a Makefile target. * Don't use single suffix inference rules when building `.info'-less Info files, for the sake of Solaris make. * The `check' target now depends on `$(BUILT_SOURCES)'. * Recognize multiple inference rules such as `.a.b .c.d:'. * Warn about multiple inference rules when -Wportability is used. * Fix building of deansified files from subdirectories. * Add missing `fi' in the .c->.obj rules. * Improve install-sh to work even when names contain spaces or certain (but not all) shell metachars. * Fix the following spurious failures in the test suite: depcomp2.test, gnits2.test, gnits3.test, python3.test, texinfo13.test * Noteworthy manual updates: - Augment the section about BUILT_SOURCES. - Mention that AM_PROG_CC_STDC is a relic that is beter avoided today.
2002-12-09 Added grhino-0.7.0 [wiz 2002-12-09]wiz1-1/+2
2002-12-09Add and enable grhino.wiz1-1/+2
2002-12-09Initial import of grhino:wiz6-0/+70
GRhino, or Rhino its former name, is an Othello/Reversi game. What distinguish GRhino from most other Othello games is that GRhino will be targeted for experienced Othello players. Strong AI is the main focus with some additional good, useful features (like an endgame solver) is planned. The ultimate target strength of the AI is that it should be able to beat the best human player at the highest difficulty level.
2002-12-09Updated to remove unwanted cruft from Makefile.PL so we can work with perl 5.8abs1-1/+4
p5-HTML-FixEntities to 1.03 p5-Text-Substitute to 0.15 p5-Text-CSV-Hash to 0.16
2002-12-09Updated p5-Text-CSV-Hash to 0.16abs2-5/+5
Remove unwanted cruft from Makefile.PL so we can work with perl 5.8
2002-12-09Updated p5-Text-Substitute to 0.15abs2-5/+5
Remove unwanted cruft from Makefile.PL so we can work with perl 5.8
2002-12-09Updated HTML-FixEntities to 1.03abs2-5/+5
Remove unwanted cruft from Makefile.PL so we can work with perl 5.8
2002-12-09LTCONFIG_OVERRIDE -> LIBTOOL_OVERRIDE, fixes build problemdrochner1-2/+2
(the mysterious "cannot find -liconv")
2002-12-09Replace "true" by "${TRUE}".tron131-337/+337
2002-12-09Add directory "share/pixmaps" which is used by multipled packages.tron7-7/+21
2002-12-09Note update of "rpm2pkg" package to version 1.3.tron1-1/+2
2002-12-09Require at least version 1.3 of the "rpm2pkg" package after today'stron1-2/+2
hardlink support fix.
2002-12-09Add proper handling for hardlinks. This fixes e.g. the zero byte localetron2-8/+25
files in the "suse_base" package causing error messages like this: Gdk-WARNING **: locale not supported by C library Bump version number to 1.3.
2002-12-09Note update of wine to 20021125.junyoung1-1/+2
2002-12-09Update to 20021125. From Juan <Juan@xtraeme.dyndns.org> via pkg/19309.junyoung3-11/+11
WHAT'S NEW with Wine-20021125: (see ChangeLog for details) - Finished conversion to STRICT compilation mode. - WinHelp revival. - Client-side fonts supported even without RENDER extension. - Regression tests no longer require Perl. - Lots of bug fixes.