summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2003-08-31Update to transcode 0.6.9.mycroft6-80/+50
* Terse/less technical ChangeLog: - Add subtitle support to -x dvd - Big endian fixes for wav audio handling - Big xvid update, there are now 3 modules. Read the ChangeLog for this - Bugfix for -z; thread issues caused image distortion - Bugfix for libac3, can be compiled with -msse now - Bugfix in -J text; transparency was broken. - Bugfix in -y ogg; quoting related - Bugfix in -x ogg; probing and decoding broken - Bugfix: avimerge, -split and -sync were broken for PCM audio - Docu: (Developer) internal architecture - Docu: avisplit(1) explains what do about bad AVI sync. - Docu: how to do framerate conversions with transcode - Docu: transcode(1) explains the different meanings of -F - Enable directory mode for pass-through AVI files with -y raw - Filters can now take arguments at any length - Fix sefault in tccat when called with no -i argument - Improved -J 29to23; more accurate interpolation - Improved -J 32detect; now searches chroma planes too - Improved filter smartyuv; much faster now - Improved filter cut; Make the filter aware of framerate changes - Improved option --keep_asr; takes probed import asr into account - Improved spec file - Internal; New frame attribute TC_FRAME_IS_OUT_OF_RANGE - Internal; config parser more generic - Internal; really clone a frame - MP2/MP3 synchword detection improved, better broken streams handling - Native directory mode for -x auto,mp3 - Nearly bugfix when doing AC3-passthrough with multiple PSUs - New command line option --export_fps N,frc - New configure switch --with-default-xvid; creates a export_xvid symlink - New contrib/mpipe.c; a simple tool for input data multiplexing - New filter detectsilence; prints silence position in milliseconds - New filter fps; convert framerate X to Y; similar to modfps - New filter modfps; convert framerate X to framerate Y - New filter msharpen; spatial sharpening - New tool tcmp3cut which can cut mp3 streams at milliseconds positions - No more Latin-1 characters -- Sorry Thomas Ö. - Option -b now takes a 4th argument; lame encoding mode - Re-enable detection of DIV3 keyframes with -x divx - The linear blend deinterlace now also deinterlaces chroma - Transcode now writes a correct AVI PCM header for windows players - Variable framerate mpegs support - Very much improved MacOSX support - libtheora configure check update - ./configure's lame detection improved - print the correct PCM bitrate - Nicer/correct printout for -r - xml import moudle can read all af6 supported codecs
2003-08-31centericq update done; note frueauf as taking over two updates.wiz2-5/+6
2003-08-31Update to 4.9.6:wiz2-5/+5
The internal RSS parser suffered some changes that enabled it to undestand the RDF dialect as well as CDATA values. Some problems related to fetching all the records on every check were fixed. RSS checking delays are now specified in minutes, not in hours. The "Reply" button was removed that used to appear in the message box when reading RSS records. Correct redirect processing was implemented in the HTTP module used to fetch RSS documents. HTTP proxy support was added. So far it's used only for RSS fetching. History lastreads checking was improved. Now centericq shouldn't show the unread messages mark for contacts you communicated with during some clock skews. Auto-reconnect appeared not to work for the ICQ protocol. Fixed. It's now possible to join a Jabber conference by its JID, without a need for a service to be registered on the server. Example: "jdev@conference.jabber.org" in the "Name/Title" field. Since Jabber IDs are not case sensitive, centericq treats JIDs written with capital and small letters the same way. The status change window was improved. Now it has the "All protocol" item on the top along with newly added "Already logged in only". The cicqconv contact list conversion utility was extended with ICQ list support for Trillian written by Vassilios Karakoidas <bkarak@aueb.gr>. Jabber authentification became smarter. If server doesn't support digest authentification, it's not tried anymore. The point was that the new digest practice made it impossible to login into server which didn't support md5 digest auth. Fixed. HTTP proxy support for fetching RSS feeds was fixed. It used to segfault the application in some situation.
2003-08-31xcolorsel doesn't make if XAW_TYPE is set to `neXtaw' in mk.conf, so setkei1-2/+2
it to `3d' instead in this case as well as `standard'.
2003-08-31Note anomy-sanitizer.mjl1-1/+2
2003-08-31Update anomy-sanitizer to 1.63.mjl2-5/+5
Changes include some improvements to the file detection mechanism, interface to the f-prot virus scanner as well as quite a lot of bug fixes. Note: the last pkgsrc version was from over 1.5 years ago.
2003-08-31This package is needed to bootstrap pkgsrc, so don't do tools, buildlink,jlam2-5/+13
or run mtree. Also ensure that we call the pkg_install commands with no options so that we install properly without recent pkg_install tools.
2003-08-31Note neXtaw update to 0.14.1.wiz2-3/+3
2003-08-31Update to 0.14.1:wiz3-7/+7
030823 Patch from Alexey I. Froloff <raorn@altlinux.ru>: This patch adds shadow width to SimpleMenu widget's height (last Sme overlaps with bottom shadow) and fixes SmeBSB drawing code (different regions were highlighted in Redisplay and FlipColors, "disabled" menu items were displayed as normal if .international is set to True).
2003-08-31Do previous in another way: simply define PKG_ADMIN to be the command thatjlam1-3/+3
we want it to be.
2003-08-31pcre-4.4 update done.wiz2-3/+3
2003-08-31Update to 4.4:wiz2-5/+5
1. In UTF-8 mode, a character class containing characters with values between 127 and 255 was not handled correctly if the compiled pattern was studied. In fixing this, I have also improved the studying algorithm for such classes (slightly). 2. Three internal functions had redundant arguments passed to them. Removal might give a very teeny performance improvement. 3. Documentation bug: the value of the capture_top field in a callout is *one more than* the number of the hightest numbered captured substring. 4. The Makefile linked pcretest and pcregrep with -lpcre, which could result in incorrectly linking with a previously installed version. They now link explicitly with libpcre.la. 5. configure.in no longer needs to recognize Cygwin specially. 6. A problem in pcre.in for Windows platforms is fixed. 7. If a pattern was successfully studied, and the -d (or /D) flag was given to pcretest, it used to include the size of the study block as part of its output. Unfortunately, the structure contains a field that has a different size on different hardware architectures. This meant that the tests that showed this size failed. As the block is currently always of a fixed size, this information isn't actually particularly useful in pcretest output, so I have just removed it. 8. Three pre-processor statements accidentally did not start in column 1. Sadly, there are *still* compilers around that complain, even though standard C has not required this for well over a decade. Sigh. 9. In pcretest, the code for checking callouts passed small integers in the callout_data field, which is a void * field. However, some picky compilers complained about the casts involved for this on 64-bit systems. Now pcretest passes the address of the small integer instead, which should get rid of the warnings. 10. By default, when in UTF-8 mode, PCRE now checks for valid UTF-8 strings at both compile and run time, and gives an error if an invalid UTF-8 sequence is found. There is a option for disabling this check in cases where the string is known to be correct and/or the maximum performance is wanted. 11. In response to a bug report, I changed one line in Makefile.in from -Wl,--out-implib,.libs/lib@WIN_PREFIX@pcreposix.dll.a \ to -Wl,--out-implib,.libs/@WIN_PREFIX@libpcreposix.dll.a \ to look similar to other lines, but I have no way of telling whether this is the right thing to do, as I do not use Windows. No doubt I'll get told if it's wrong...
2003-08-31Note asc-1.13.8.0 update.wiz2-3/+3
2003-08-31Update to 1.13.8.0:wiz4-61/+5
Many annoying replay problems have been fixed, as well as several bugs in the movement code.
2003-08-31Explicitly call pkg_admin(1) using "PKG_DBDIR=... pkg_admin" so that wejlam1-2/+3
don't use any options/flags not supported by pkg_admin that may be a part of ${PKG_ADMIN}.
2003-08-31Fix whitespacejlam1-6/+6
2003-08-31Create new variables PKG_*_CMD that contain just the paths to the variousjlam1-7/+13
pkg_install tools.
2003-08-31patch-ac is not needed anymore with version 1.0 (and doesn't apply, even)jdolecek2-14/+1
2003-08-31+ fetchmail-6.2.4 [pkg/22650], scribus-1.0.1 [pkg/22557].wiz1-4/+3
- citrix_ica (thanks, markd), libxml-2.5.10 (thanks, xtraeme)
2003-08-31Remove lines that have no effect since they're all conditional onjlam1-9/+1
${OPSYS} == "NetBSD".
2003-08-31update distinfo for update to sablotron version 1.0jdolecek1-3/+3
2003-08-31Add belnet and keihanna sourceforge mirrors; remove switch and osdn.wiz1-3/+3
Addresses PR 22641.
2003-08-31netbsd -> NetBSDcjep1-2/+2
2003-08-31Note update of textproc/bsdgrep-devel to 20030831cjep1-1/+2
2003-08-31Update to 20030831.cjep2-10/+6
* Fix output with -A, -B, -C and -z options -- make sure that -- is printed between files.
2003-08-31bsd.buildlink2.mk says that Solaris 9 works with full caching.jlam1-2/+2
2003-08-31Remove N/A from this file... it's much easier to read now.jlam1-7/+7
2003-08-31note update of devel/libnet to version 1.0.1bnb2 [user visible change isseb1-1/+2
documentation directory change]
2003-08-31Install documentation in canonical pkgsrc directories.seb2-17/+28
Use static PLIST. Get ride of share/examples/libnet symlink handling in PLIST by '@.*exec' symbolic link in PLIST are just fine. Bump PKGREVISION.
2003-08-31Update p5-IPC-ShareLite from 0.08 to 0.09.he2-5/+5
Changelog: 0.09 Wed Dec 4 13:51:05 PST 2002 - fixed bug in size() thanks to Craig Manley <c.manley@skybound.nl>
2003-08-31Remove duplicate dependency on p5-IPC-ShareLite.he1-2/+1
2003-08-31After discussion with grant, reimport bgrep as bsdgrep-devel.cjep11-144/+4
2003-08-31+tct-1.12cjep1-1/+2
2003-08-31After discussion with grant, reimport bgrep as bsdgrep-devel.cjep9-0/+142
2003-08-31Don't allow -R* options in dependency_libs -- rpath info shouldn't be injlam1-1/+5
there.
2003-08-31Strip bare -L${BUILDLINK_DIR}, -L${BUILDLINK_X11_DIR} and -L${WRKSRC}, asjlam1-3/+5
well as stripping -L to subdirs of these directories from dependency_libs lines in *.lai files. This corrects the changes in revision 1.18 of this file and restores some functionality accidentally removed in version 1.19 of this file. Should fix the subversion buildlink/libtool problem reported on tech-pkg@.
2003-08-31Note update of xcircuit to 3.1.19.jtb1-1/+2
From the CHANGES file: 254 v3.1 rev 19 8/12/03 Required reconfiguring without Tcl once to generate the "Makefile.in" in the Xw directory; otherwise, automake 1.7 becomes a requirement. 253 v3.1 rev 18 8/6/03 A fix to the output, correcting the page numbering in the PostScript page headers. The incorrect numbering can cause some printers to lock up. . . 252 v3.1 rev 17 7/14/03 Thanks to Ted Roth for fixing my rather too-hasty fix of revision 16. Also: Some fixes to the autoconf script (also from Ted Roth), and autoconf script updated to work with the latest versions of autoconf/automake/aclocal.
2003-08-31Update to version 3.1.19.jtb3-24/+5
From the CHANGES file: 254 v3.1 rev 19 8/12/03 Required reconfiguring without Tcl once to generate the "Makefile.in" in the Xw directory; otherwise, automake 1.7 becomes a requirement. 253 v3.1 rev 18 8/6/03 A fix to the output, correcting the page numbering in the PostScript page headers. The incorrect numbering can cause some printers to lock up. . . 252 v3.1 rev 17 7/14/03 Thanks to Ted Roth for fixing my rather too-hasty fix of revision 16. Also: Some fixes to the autoconf script (also from Ted Roth), and autoconf script updated to work with the latest versions of autoconf/automake/aclocal.
2003-08-31Note addition of advi-1.4.0.jtb1-1/+2
Active-DVI is a DVI previewer and presenter written in Objective Caml (http://caml.inria.fr/ocaml/) with some eye candy effects for presentation, support for interactive demonstrations, and embedding of arbitrary applications within the presentation (hence the Active adjective of the presenter :). Active-DVI currently supports the following features: + Encapsulated Postscript File inclusion (using graphics package) + Effects for presentation (pause, delay, text color change) + Embedded applications for interactive demonstration + Pictures visualization via gpic specials + Display of inlined Postscript using gs + Font antialiasing that takes background colors into account + Page display is interrupted on user input + Resizing the page adjusts the magnification + Start displaying at a given page or at a given link reference + The file is reloading on signal SIGUSR1 + Hyperlinks + Active areas (execute an action when the mouse is over) + Background colors and images + Alpha blending for images
2003-08-31Add and enable advi.jtb1-1/+2
2003-08-31Initial import of advi.jtb7-0/+160
Active-DVI is a DVI previewer and presenter written in Objective Caml (http://caml.inria.fr/ocaml/) with some eye candy effects for presentation, support for interactive demonstrations, and embedding of arbitrary applications within the presentation (hence the Active adjective of the presenter :). Active-DVI currently supports the following features: + Encapsulated Postscript File inclusion (using graphics package) + Effects for presentation (pause, delay, text color change) + Embedded applications for interactive demonstration + Pictures visualization via gpic specials + Display of inlined Postscript using gs + Font antialiasing that takes background colors into account + Page display is interrupted on user input + Resizing the page adjusts the magnification + Start displaying at a given page or at a given link reference + The file is reloading on signal SIGUSR1 + Hyperlinks + Active areas (execute an action when the mouse is over) + Background colors and images + Alpha blending for images
2003-08-31Note addition of camlimages-2.11.jtb1-1/+2
CamlImages is an image processing library, which provides * Basic functions for image processing and loading/saving various image file formats (hence providing a translation facility from format to format), * An interface with the Caml graphics library allows to display images in the Graphics module screen and to mix them with Caml drawings, * A freetype interface, integrated into the library: you can draw texts into images using any truetype fonts. In addition, the library can handle huge images that cannot be (or can hardly be) stored into the main memory (the library then automatically creates swap files and escapes them to reduce the memory usage).
2003-08-31Add and enable camlimages.jtb1-1/+2
2003-08-31Initial import of camlimages.jtb7-0/+224
CamlImages is an image processing library, which provides * Basic functions for image processing and loading/saving various image file formats (hence providing a translation facility from format to format), * An interface with the Caml graphics library allows to display images in the Graphics module screen and to mix them with Caml drawings, * A freetype interface, integrated into the library: you can draw texts into images using any truetype fonts. In addition, the library can handle huge images that cannot be (or can hardly be) stored into the main memory (the library then automatically creates swap files and escapes them to reduce the memory usage).
2003-08-31Note update of erlang to 9.2.jtb1-1/+2
This version is focused on improved performance and stability, rather than introducing new functionality, hence it is called R9C. Build Process NEW The build process has been improved so that it is possible to build Erlang/OTP from source even on Windows platforms. There is also a completely new installation program for Windows. Observer crashdump_viewer NEW A HTML based tool for browsing Erlang crashdumps. The tool can handle crashdumps from OTP R7B, R8B and R9B as well but there is additional information in the crashdumps for R9C. OTP_MIBs NEW The OTP mibs that where included in the SASL application have been moved to this new application otp_mibs. This is a step too create a pure core for Erlang/OTP that does not depend on specific, non-mainstream applications such as SNMP.
2003-08-31Update to version 9.2.jtb5-2391/+2500
This version is focused on improved performance and stability, rather than introducing new functionality, hence it is called R9C. Build Process NEW The build process has been improved so that it is possible to build Erlang/OTP from source even on Windows platforms. There is also a completely new installation program for Windows. Observer crashdump_viewer NEW A HTML based tool for browsing Erlang crashdumps. The tool can handle crashdumps from OTP R7B, R8B and R9B as well but there is additional information in the crashdumps for R9C. OTP_MIBs NEW The OTP mibs that where included in the SASL application have been moved to this new application otp_mibs. This is a step too create a pure core for Erlang/OTP that does not depend on specific, non-mainstream applications such as SNMP.
2003-08-31oops, remove this, missed in previous commit.xtraeme1-9/+0
2003-08-31Note update of mplayer{,-share}, gmplayer and mencoder to 0.91.xtraeme2-3/+6
2003-08-31MPlayer updated to 0.91, patch provided by Soren Jacobsen in PR pkg/22540.xtraeme10-39/+38
Changes: DOCS: * French, Hungarian, Chinese translation updated * console output translations updated * numerous fixes in HTML documentation * fixes, clarifications in the man page * wishlist updated :) * Polish documentation removed (outdated) * Norwegian, Romanian, and Turkish help files removed (outdated) Fixes: * small fix for sp5x video codec * menu pause bug fixed * detc video filter improved * fixes in video output driver zr * fixes in video output driver directx * fixes in video output driver sdl * fixes in video output driver vesa (multiple init support) * midentify works again * TOOLS/matroxtv enhanced and fixed * now every binary codec is searched in $PREFIX/codecs directory (--with-codecsdir) * K6/2+ and K6/3+ detection support * Mono PCM streamcopy fixed in MEncoder * bigendian OSD fix * SIGBUS error fixed on HPUX 11.00 * default fps fixed in NTSC v4l * definition fix ported from libdvdread main branch * configure option --enable-qtx-codecs renamed to --enable-qtx * a crash fixed in command line parser * fix in MMS streaming * crash with invalid config file fixed * metacity support Porting: * QT audio decoder now compiles on MacOSX * compile and crash fixes in MOV demuxer, for Cygwin * some Cygwin compilation fixes * OpenBSD support in RealVideo and RealAudio
2003-08-31Note update to pan, and remove from TODO list.chris2-3/+3