summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2002-04-30Enable grub on <1.5Y by using the binutils package.wiz1-5/+2
2002-04-30Update mplayer from version 0.60 to 0.90pre2 (old distfile is now longerveego23-687/+214
available). Not tested with the recent gcc and binutils changes. Only one local patchfile is now needed, which fix a -Wl,-R problem and reenables the auto detect support for libmpdvdkit on NetBSD. Where libmpdvdkit is now disabled, due to the css code in that source. The MPlayer code use libdvdread so it still can read DVDs. The css code is also the reason why we have to use NO_SRC_ON_FTP. List of changes, without being complete. Changes in 0.90pre2: - hwac3 fixes (try AFMT_AC3 first), bigendian fixes for PCM audio - 2-pass encoding with libavcodec (-lavcopts vpass=x), B frames support - faster .ogg seeking (use -forceidx for slow but accurate one) - audio-only with gui fixed - -rootwin fixed for x11,xv,xmga,xvidix - aspect ratio fix for ffmpeg12 - mpeg-es detection fixed - runtime cpudetect disabled by default - support for many new win32 codecs, including mss1, tm20, ucod, truespeech - divx audio dll sig11 with glibc 2.1.(2|3) fixed - includes libmpdvdkit - patched kit of dvd libraries (enabled for linux+freebsd) - manpages updated - 'f' (fullscreen switch) fixed for some WMs, still has problems - various freebsd and openbsd portability patches - options -xy,-zoom,-flip usable with mencoder too, -xy keeps aspect - -vop lavc, using new fast best libavcodec for realtime mpeg1 transcoding - fixed gtk gui crash with --disable-mencoder - no more black vobsub subtitles :) Changes in 0.90pre1: - 100% GPL - yeah, so what? - runtime CPU detection code - any x86 MPlayer binary can run on "any" other x86 CPU - video filter layer - with numerous plugins (crop, expand, etc, see the documentation) - ability to view or encode DVD/vobsub and/or text subtitles into the output AVI - prelimenary dvdnav support (experimental) - Direct Rendering - can't be used with libavcodec yet, sorry - ability to display subtitles under the image, on black bands - FFmpeg (included) now supports decoding MPEG4v2 (MP42) and DivX 5.0 files too - greatly enhanced MPEG4 encoder - in libavcodec. It's not always as good as DivX4, but is twice as fast - so it's very useful on realtime encoding. And generally also. - audio-only (wav/mp3/wma/ogg) file playback (console only) - playing/encoding audio from separate wav/mp3 file - support for more fileformats, including the new and very popular .ogg - multiple files playback from console, including various playlist formats - and of course, faster than ever... :)
2002-04-30Use bsd.pkg.mk's USE_JAVA, so that this package can be built with anyjwise1-3/+5
jvm supported by pkgsrc (such as the blackdown jdk on powerpc), not just the sun jvm on i386. If user is using a java-1.1 jdk (pkgsrc/lang/jdk or kaffe), pull in swing from the swing package.
2002-04-30rework comment describing why we are setting TMPDIR to ${WRKDIR}zuntum1-3/+4
2002-04-30Use gcc and binutils packages, if necessary.wiz1-1/+3
2002-04-30Update to 0.4jschauma2-5/+5
2002-04-30Use gcc and binutils packages if the system's are not new enough.wiz2-3/+5
Makes it build on at least 1.5.2/i386.
2002-04-30Since I already have the code to check if it's needed, use it dowiz1-1/+3
en- or disable the dependency, too. Oops.
2002-04-30Add and enable binutils.wiz1-1/+2
2002-04-30Initial import of a binutils-2.11.2 package, with patcheswiz5-0/+155
from the NetBSD base system included (until 2002-04-18).
2002-04-30Update to 0.92:wiz2-5/+5
* The command "displaymem" uses only hex digits for consistency. * The netboot code goes back to the progress bars instead of dots, for the notation of data transfers. And, that is displayed only in debug mode, that is to say, nothing is displayed by default. Remember that you can turn on debug mode via the command "debug". * The command "help" doesn't show all the available commands by default, when no argument is specified. Rarely used commands (such as "testload") and useless commands in interactive use (such as "savedefault") are hidden. If you want to see help messages for those commands, specify the new option "--all". * A built-in, `more'-like pager is added. When a command prints too many lines to fit the screen, GRUB waits until you hit return key. This feature can be turned off by the new command "pager". * The command "terminal" accepts a new option, "--lines=LINES". You can set the maximum number of lines arbitrarily with this option. If you don't specify it, the maximum number will be 24. * The command "terminal" accepts another new option, "--silent". You can suppress the "Press any key to continue" message with this option. * The mem= option for Linux is recognized and used to limit the maximum address of initrd. * A fallback entry is executed immediately after a default entry, without prompting a user's intervention, as the manual has ever been saying. * The utility ``grub-install'' makes sure that GRUB images have been written to a physical disk completely. To assist this feature, a new command "dump" is added.
2002-04-29Fix incorrect category in a dependancy.simonb1-2/+2
2002-04-29Install the provided tools as well as the library. Bump PKGREVISION.rh2-4/+14
Patch provided by Sergey Svishchev <svs@ropnet.ru>. This closes his PR pkg/16560, thanks!
2002-04-29LTCONFIG_OVERRIDE -> LIBTOOL_OVERRIDE.wiz1-2/+2
2002-04-29LTCONFIG_OVERRIDE -> LIBTOOL_OVERRIDE.wiz1-4/+4
2002-04-29Upgrade to 6.4jschauma2-7/+8
Changes from 6.3: - PCSpim no longer shifts the focus of the register and data segments when values change. - fixed bug in the expansion of USH pseudo-op. - Add system calls for open, close, read, and write. - Fixed the Configure file to work with Mac OSX. - Made the REM pseudo-op require 3 arguments. - Fixed PCSpim dumping code to dump contents of console window. - Treat LUI's immediate value as unsigned, as it is not sign extended. - More error checking for malformed programs. - Make symbol "main" as global. - Avoid clearing last few bytes of data segments when they expand. - Check that high-order 4 bits in jump instruction's PC match bits in target PC. Changes from 6.2: - PCSpim interface simplified to 4 fixed panes, similar to xspim, which permit cut and paste. - PCSpim console stays on the screen after assembly program terminates. - Comments in assembly source displayed in text segment. - NOP is standardized to sll $0 $0 0 (= 0x00000000) - Fixed several bugs and missed optimization in computing immediate values in lw/sw instruction sequences. - High 2 bits in negative branch offsets were incorrect. - Display floating point registers with up to 18 digits of precision. - New spim command (print_all_regs) prints all registers. - Minor changes to compile spim under cygwin for Windows. - Validate the range of immediate values in MIPS (but not pseudo) instructions. - Fixed display of stack with non-word aligned $sp. - New flags: * -delayed-branches Simulate MIPS delayed control transfers for branches, jumps, and calls * -delayed-loads Simulate MIPS non-interlocked loads. (approved by hubertf)
2002-04-29Update to 0.4.11magick3-10/+31
Changes: * Updated translations * Updated English manual and translated it to Portuguese * Fixed bugs: - When checking if the user could write to a certain directory all the groups the user was in where not checked so it was possible to write while the application said otherwise. - Spec file rewrote to be more correct, thanks to Gregory Leblanc <gleblanc@linuxweasel.com>
2002-04-29Upgrade to 1.30.jschauma2-6/+6
New in Version 1.30: Several vector operations are now available directly in ARIBAS (vec1 + vec2, vec1 - vec2, lambda*vec, vec mod N , etc.) (approved by hubertf)
2002-04-29Update teapop to 0.3.4.hubertf2-7/+6
Changes: 0.3.4 + Authentication through JAVA (By: Ivan F. Martinez <ivanfm@os2brasil.com.br>) + Added a wrapper for lockf, built on fcntl. + popauth file support for POP-before-SMTP authentication (By: Stephan Uhlmann <su@su2.info>) + Rudimental LDAP support. (By: "Alexandre Ghisoli" <alexandre.ghisoli@ycom.ch>) - Unbreak ignoring of UW-IMAP message. (Problem reported by: Dale Blount <lnxus@yahoo.com>) * Please note that the mailing lists have change address, for more info please see: http://www.toontown.org/teapop/mailinglist.php ! Ignore SIGPIPE when in update state. + Mac OS X support (By: Thomas Deniau <thomasdeniau@mac.com>) ! Behave more decent when running as non-root. (By: Marc A. Lehmann <pcg@goof.com>) * Release date: 9-Apr-2002 0.3.3 - Fix proper unlocking of mailboxes. * Release date: 2-Sep-2001 Update contributed by Dawid Szymanski <dawszy@arhea.net> in PR 16551
2002-04-29Update dillo to 0.6.5. Mainly bugfixes, but also features the additionrh5-30/+34
of cookies. Provided by the package maintainer Benjamin Wong <ben@wongs.net>. This closes PR pkg/16539.
2002-04-29Nits.wiz1-8/+8
2002-04-29Add and enable createbuildlinkrh1-1/+2
2002-04-29Initial import of createbuildlink-1.0, a simple script that helps creatingrh5-0/+329
a buildlink.mk from a package's Makefile and PLIST. XXX: this is an attempt to make the creation of buildlink.mk files more XXX: systematic and less error-prone than copying existing buildlink.mk XXX: files and modifying them for a new package. Any help in making this XXX: script less simplistic and more versatile is gladly welcome!
2002-04-29Update to 4.1 -- patch-ab has been folded into the distribution.wiz4-235/+21
2002-04-29`mtree' -> `$$action' in _SU_TARGETseb1-2/+2
2002-04-29Update to 0.2.25: Bugfix releases.wiz6-20/+20
2002-04-29Change some spaces to tabs.jlam1-2/+2
2002-04-29use www.planetmirror.com.au instead of www.planetmirror.com, so thatlukem1-9/+9
MASTER_SORT* does the right thing.
2002-04-28Some programs don't look in libxml/headername.h, and even libxml itselfwiz1-2/+2
does not create the directory (any longer?). Be a bit defensive about this and add -I${BUILDLINK_DIR}/include/libxml to BUILDLINK_CONFIG_WRAPPER_SED, while letting -I${BUILDLINK_DIR}/include stay, too. XXX: This should be revisited, and the packages depending on libxml2 be fixed (either way); for now, this change fixes libwmf, ogle, and ogle_gui (and perhaps others), while not changing the situation for kdelibs2 (which I didn't want to test because it's too big). Per a discussion with Johnny Lam.
2002-04-28Use .tar.bz2 distfile as it's smallerzuntum2-4/+5
2002-04-28Set USE_CONFIG_WRAPPER.wiz1-4/+5
2002-04-28add & 3nable xnaphubertf1-1/+2
2002-04-28Add xnap-2.0: Java filesharing client with support for OpenNaphubertf5-0/+54
XNap is a Java file sharing client. It is powerful, easy to use, and efficient. Features include fetching a server list from Napigator, connecting to multiple OpenNap servers, doing multiple concurrent searches, and automatic downloading. You can view your MP3 files and play them conveniently from within XNap. It also provides a commandline interface for use on a terminal. Contributed by ben@wongs.net in PR 16528
2002-04-28Add USE_CONFIG_WRAPPER.wiz1-1/+2
2002-04-28Uppercase XML.wiz2-3/+3
2002-04-28Mark the pkg as broken, not interactive.hubertf1-2/+2
It still needs attention...
2002-04-28add & enable mp3asmzuntum1-1/+2
2002-04-28Do the sed part a bit differentlyzuntum1-4/+4
2002-04-28Initial import of mp3asm-0.1.3 as pkgsrc/audio/mp3asmzuntum6-0/+63
An mpeg 1/2/2.5 audio layer 1,2,3 frame level editor. Allows for cutting, copying, pasting of individual frames, correction of common (correctable) errors, removal of bad frames and more. Quite useful program for maintaining any mp3 collection. Provided by Rui-Xiang Guo <rxg@netbsd.org> in pkg/16530
2002-04-28Fix wrong filename of strings file. Problem reported bytron2-4/+4
<collver@linuxfreemail.com> in PR pkg/16521.
2002-04-28Use the right prefix so this actually works on systems w/o xpkgwedge.rh1-2/+2
2002-04-27Updated p5-Params-Validate to 0.15shell2-6/+6
Change : - validate_pos would die stupidly when it received an array with an odd number of elements.
2002-04-27Updated to p5-XML-Checker to 0.12shell2-6/+5
Changes : - Fixed bug with DTD alternation rules (Steven Allen)
2002-04-27Updated p5-Digest-MD5 to 2.17shell3-30/+11
- Fixed COMMENT - Updated DESCR Changes : - The SvPVbyte in perl-5.6.1 is buggy. Use the one from 5.7.3 instead. - Give warning if the function interface is used as instance methods: $md5->md5_hex().
2002-04-27update homepage and master sitedmcmahill1-3/+4
2002-04-27Add and enable gnome-mime-typesrh1-1/+2
2002-04-27Initial import gnome-mime-types-1.0.7, a MIME and application database forrh4-0/+213
GNOME2.
2002-04-27Add proper LIBTOOL_OVERRIDEs so this actually uses pkgsrc's libtool.rh4-15/+19
2002-04-27Replace STRIPFLAG with _STRIPFLAG_INSTALL to fix pkg/15467.yyamano1-2/+2
2002-04-27Add buildlink.mk file. Provided by <collver@linuxfreemail.com> in PRrh1-0/+36
pkg/16470, thanks!