summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2006-11-02Updated checkperms to 1.4.rillig1-1/+2
2006-11-02Updated checkperms to 1.4.rillig2-6/+6
Changes since 1.3: - Added support for Mac OS X and AIX binaries and libraries. This should fix PR 34968.
2006-11-02Fixed "test ==" and some other bugs, as reported in PR 34976. Therillig7-1/+283
quality of the shell scripts is not too good ...
2006-11-02Fixed "test ==", as reported in PR 34970.rillig2-1/+21
2006-11-02Fixed "test ==" as noticed in PR 34969.rillig2-1/+15
2006-11-02DESTDIR support.joerg28-66/+108
2006-11-02Supports DESTDIR.joerg1-1/+2
2006-11-02Updated lang/tcl;x11/tk to 8.4.14adam1-1/+3
2006-11-02Changes 8.4.14:adam16-124/+126
* Tk_PhotoPutBlock performance restored (JPEG image loading). * [namespace inscope] change reverted; harmed Itcl. * Made [expr {srand(.)}] accept wide integer argument. * Made [lappend $invalidList] raise an error. * Improved [text] delete performance. * Support for the WM_UNICHAR window message on Windows * Stopped excess variable writes by [scale]. * Tcl_Main no longer blocks main loop start for one interactive command. * [console] made thread safe. * Thread-enabled configuration uses MT-safe system calls. * Many Aqua/Tk bug fixes and improvements, see changes file. * Made unthreaded notifier naked-fork-safe on Darwin. * Support for weak linking on Mac OS X. * msgcat support for CFLocale on Darwin (msgcat 1.3.4) * Fixed crashes due to alignment issues in encoding translation routines. * Fixed crash with [listbox -listvariable] on namespace variable. * Fixed crash when Tcl_DeleteTrace changes proc on the active stack. * Fixed crash when normalizing filesystem pathnames. * Fixed crash due to invalid font name from XServer. * Several 64-bit bugs fixed and platform support enhanced.
2006-11-02On NetBSD (don't know about other platforms) kismet needs libm or elseadrianp1-1/+2
./configure bails out with an error. Fix with a LIBS.NetBSD accordingly.
2006-11-02Note import of the standalone makedepend.joerg1-1/+2
2006-11-02Import the standalone makedepend from Xorg.joerg4-0/+31
2006-11-02Updated devel/p5-PathTools to 3.23.obache2-3/+3
2006-11-02Update p5-PathTools to 3.23.obache2-6/+6
Changee: - Yet more Win32 fixes (sigh... seems like I'm fighting a neverending waterbed...). This time, fixed file_name_is_absolute() to know what it's doing when the path includes a volume but a relative path, like C:foo.txt . This bug had impact in rel2abs() on Win32 too. 3.22 - Mon Oct 9 21:50:52 2006 - Fixed the t/crossplatform.t test on Win32 (and possibly other volume-aware platforms) now that rel2abs() always adds a drive letter. [Reported by several parties] 3.21 - Wed Oct 4 21:16:43 2006 - Added a bunch of X<> tags to the File::Spec docs to help podindex. [Gabor Szabo] - On Win32, abs2rel('C:\one\two\t\foo', 't\bar') should return '..\foo' when the cwd is 'C:\one\two', but it wasn't noticing that the two relevant volumes were the same so it would return the full path 'C:\one\two\t\foo'. This is fixed. [Spotted by Alexandr Ciornii] - On Win32, rel2abs() now always adds a volume (drive letter) if the given path doesn't have a volume (drive letter or UNC volume). Previously it could return a value that didn't have a volume if the input was a semi-absolute path like /foo/bar instead of a fully-absolute path like C:/foo/bar . 3.19 Tue Jul 11 22:40:26 CDT 2006 - When abs2rel() is called with two relative paths (e.g. abs2rel('foo/bar/baz', 'foo/bar')) the resolution algorithm needlessly called cwd() (twice!) to turn both arguments into absolute paths. Now it avoids the cwd() calls with a workaround, making a big efficiency win when abs2rel() is called repeatedly. [Brendan O'Dea] - Added a build-time dependency on ExtUtils::Install version 1.39 when on Windows. This is necessary because version 1.39 knows how to replace an in-use Cwd shared library, but previous versions don't. [Suggested by Adam Kennedy] - Fixed File::Spec::Win32->canonpath('foo/../bar'), which was returning \bar, and now properly returns just bar. [Spotted by Heinrich Tegethoff] 3.18 Thu Apr 27 22:01:38 CDT 2006 - Fixed some problems on VMS in which a directory called "0" would be treated as a second-class citizen. [Peter (Stig) Edwards] - Added a couple of regression tests to make sure abs2rel('/foo/bar', '/') works as expected. [Chia-liang Kao] - Added a couple of regression tests to make sure catdir('/', 'foo/bar') works as expected. [Mark Grimes] 3.17 Fri Mar 3 16:52:30 CST 2006 - The Cygwin version of Cwd::cwd() will croak if given any arguments (which can happen if, for example, it's called as Cwd->cwd). Since that croaking is bad, we now wrap the original cwd() in a subroutine that ignores its arguments. We could skip this wrapping if a future version of perl changes cygwin.c's cwd() to not barf when fed an argument. [Jerry D. Hedden] 3.16 Mon Jan 30 20:48:41 CST 2006 - Updated to version 3.06 of ppport.h, which provides backward compatibility XS layers for older perl versions. - Clarify in the docs for File::Spec's abs2rel() and rel2abs() methods that the cwd() function it discusses is Cwd::cwd(). [Spotted by Steven Lembark] - Apparently the version of File::Path that ships with perl 5.8.5 (and perhaps others) calls Cwd::getcwd() with an argument (perhaps as a method?), which causes it to die with a prototyping error. We've eliminated the prototype by using the "(...)" arglist, since "PROTOTYPE: DISABLE" for the function didn't seem to work. [Spotted by Eamon Daly and others] 3.15 Tue Dec 27 14:17:39 CST 2005 - The Cwd::getcwd() function on *nix is now a direct pass-through to the underlying getcwd() C library function when possible. This is safer and faster than the previous implementation, which just did abs_path('.'). The pure-perl version has been kept for cases in which the XS version can't load, such as when running under miniperl. [Suggested by Nick Ing-Simmons] - When Cwd searches for a 'pwd' executable in the $PATH, we now stop after we find the first one rather than continuing the search. We also avoid the $PATH search altogether when a 'pwd' was already found in a well-known and well-trusted location like /bin or /usr/bin. [Suggested by Nick Ing-Simmons] - On Win32 abs2rel($path, $base) was failing whenever $base is the root of a volume (such as C:\ or \\share\dir). This has been fixed. [Reported by Bryan Daimler] - In abs2rel() on VMS, we've fixed handling of directory trees so that the test $file = File::Spec::VMS->abs2rel('[t1.t2.t3]file', '[t1.t2.t3]') returns 'file' instead of an empty string. [John E. Malmberg] - In canonpath() on VMS, '[]' was totally optimized away instead of just returning '[]'. Now it's fixed. [John E. Malmberg] 3.14 Thu Nov 17 18:08:44 CST 2005 - canonpath() has some logic in it that avoids collapsing a //double/slash at the beginning of a pathname on platforms where that means something special. It used to check the value of $^O rather than the classname it was called as, which meant that calling File::Spec::Cygwin->canonpath() didn't act like cygwin unless you were actually *on* cygwin. Now it does. - Fixed a major bug on Cygwin in which catdir() could sometimes create things that look like //network/paths in cases when it shouldn't (e.g. catdir("/", "foo", "bar")). 3.13 Tue Nov 15 23:50:37 CST 2005 - Calling tmpdir() on Win32 had the unintended side-effect of storing some undef values in %INC for the TMPDIR, TEMP, and TMP entries if they didn't exist already. This is probably a bug in perl itself (submitted as #37441 on rt.perl.org), which we're now working around. [Thomas L. Shinnick] - Integrated a change from bleadperl - a certain #ifdef in Cwd.xs needs to apply to WIN32 but not WinCE. [Vadim Konovalov] - abs2rel() used to return the empty string when its two arguments were identical, which made no sense. Now it returns curdir(). [Spotted by David Golden] - The Unix and Win32 implementations of abs2rel() have been unified.
2006-11-02Force to detect correct library when ${SASL_DBTYPE}=="berkeley".obache5-10/+41
Reported by David Carrel in pkgsrc-users@.
2006-11-02 Added missing fflush to scp when priting statistics. Fixed bugkivinen4-5/+59
in the reverse dns queries for IPv6 addresses (overwriting 12 bytes of local variables on the stack). Disabled x11-security on all platforms, as it does not seem to work on i386 either. Incremented PKGREVISION to 7.
2006-11-02Remove deprecated CURLOPT_MUTE call. Fixes build with curl-7.16.0.wiz2-1/+14
Addresses PR 34962 by srcshelton at gmail.
2006-11-02Don't mess with the share/doc/mutt/samples link in thejoerg3-17/+2
INSTALL/DEINSTALL scripts. Bump revision.
2006-11-02fix couple missing initializations of pthread_mutex_t/pthread_cond_tjdolecek4-2/+33
now the package is actually usable on NetBSD
2006-11-02Adjusted the check-perms target to the recent update ofrillig1-11/+11
sysutils/checkperms. Regular files are now checked if they needlessly have the executable bit set.
2006-11-02Updated checkperms to 1.3.rillig1-1/+2
2006-11-02Updated checkperms to 1.3.rillig2-6/+6
Changes since 1.0: Version 1.3 (2006-11-02): Allowed libtool libraries whose name does not start with "lib". Version 1.2 (2006-10-25): Libtool libraries (*.la) may keep the executable bit. Version 1.1 (2006-10-24): The new -c option checks whether files that have the executable bit set are really executable.
2006-11-02Fixed PKGMANDIR.rillig1-1/+2
2006-11-01Make stopping asterisk actually work.mjl1-2/+3
2006-11-01amarok updated to 1.4.4.wiz2-3/+3
2006-11-01Update to 1.4.4:wiz3-10/+30
VERSION 1.4.4 FEATURES: * Transfer .wav-files to iPods. (BR 131130) * Xine and Helix engines now support three different crossfading modes: always, on manual track changes only, or on automatic track changes only. * Manually specify local file for podcast episodes via right-click menu. * Action menu entry for adding podcasts to Amarok. Based on .desktop files by Harald Sitter and Fabio Bacigalupo <kde-apps.org@open-haus.de>. * Open podcast items with external application from right-click menu. * Synchronize listened flag for podcast between Amarok and iPods. * Added integrated Magnatune.com music store. Includes artist and album info and full previews of all tracks. * Fade-out for xine-engine when pressing Stop. Patch by Tuomas Nurmi <tnurmi@edu.kauhajoki.fi>. (BR 127316) * Support downloading of files from an MTP device. * Purged podcast episodes can be readded by increasing the purge number. * Added rudimentary support for the Rio Karma. (BR 132713) * Support creation and editing of playlists on MTP media devices. * Undo/Redo functionality is now available over sessions. (BR 131072) * Allow the creation of empty playlists in the playlist browser. Available either from the Add button in the toolbar or the context menu of a playlist folder. (BR 133543) CHANGES: * Ignore leading "The " when sorting artists on media devices. (BR 136233) * Improved handling of VFAT/ASCII files and paths when organizing the collection and using the Generic media device. * Enable playing audio CDs on CD insert. Patch by Will Stephenson <wstephenson@kde.org>. (BR 136106) * Bring Amarok main window to front when starting amarok again without arguments. Patch by Lubos Lunak <l.lunak@kde.org>. (BR 135396) * Don't switch to playlist browser after saving a playlist from files tab. (BR 130189) * Add .ape and .mpc to possible file types supported by a generic media device. (BR 133491) * Move button for saving current playlist from playlist browser toolbar to playlist toolbar. (BR 129300) * Run 'kdeeject -q devicenode' when no post-disconnect command has been configured for media devices. * Reduced memory usage for MTP media devices. (BR 134663) * Faster searching on playlist and startup, due to some optimizing in string usage. Patch by Ovidiu Gheorghioiu <ovidiug@gmail.com>. * Correctly translate media:, home:, ... style urls on KDE 3.5 and newer. * When tracks are added to the collection and Playlist entries already exist (as determined by the file tracking code), the corresponding Playlist entries are updated to the new location and enabled if they were previously disabled. * When file tracking is updating Playlist entries, multiple entries of the same song will now all be updated, instead of just one. * When tracks are removed from the collection (deleted on disk or moved outside of a collection folder) any corresponding entry in the Playlist will be disabled. * Dragging podcasts to to playlist will insert them in a chronological order, so you can listen to the oldest first automatically! * Improve application startup times dramaticaly by lazy loading podcast episodes. * Transferring tracks to an MTP device now shows a progress bar and doesn't hang the rest of the UI. (only available for libmtp >= 0.0.15) * Show a proper tag dialog when viewing information for DAAP music shares. BUGFIXES: * Ipod Mode on Collection Browser would have duplicated headers. * Multiple problems related to Amarok using wrong playlists on Dynamic Mode fixed. * Deleting files from generic media devices would not update the progress bar, resulting in the progress staying at 0%. (BR 130009) * If nothing at all existed on a generic device, the first item transferred would incorrectly show that an error had occured during transfer. (BR 133528) * Synchronising a smart playlist to a device when it didn't exist before would crash Amarok. (BR 135956) * Proxies would not take into account certain settings in KDE's Proxy control center modules for PAC files and more. (BR 123021) * Generic media devices would not accept files with an extension that only differs in case from a supported extension. (BR 135261) * Xine-engine: Pausing during crossfade would not work properly. Patches by Markus Kaufhold <M.Kaufhold@gmx.de>. (BR 122514 & 135285) * Stop a running cross-fading operation before starting another one. Patch by Markus Kaufhold <M.Kaufhold@gmx.de>. (BR 128629) * Queuing again would dequeue. (BR 121206) * In some cases, the Removal and Enqueue buttons in the queue manager would have no icons. (BR 115895) * Don't change length of position slider when navigating within a track. (BR 122569) * Direct copying of non-local items would result in wrong properties on iPods. (BR 135681) * Honor setting to show Amarok's menu in main toolbar. * "Burn this album" would burn all albums of the same name. (BR 121963) * Ignore double-clicks on tree item openers. (BR 125121) * Visibility of sidebar tabs would depend on the current locale. (BR 135316) * Ctrl-C for copying urls from the tag editor would not work when selected with the mouse. (BR 123327) * Check for some integral data types for improved DAAP portability. (BR 132939) * Take disc number into account when checking if a song is already on an iPod. (BR 135643) * Editing metadata in the playlist itself now matches possible alternatives case-insensitively. (BR 135683) * Fix loading directory in external browser in the tag editor when the path contains parentheses. (BR 132961) * Stop scripts using a proxy when it's disabled in KDE. Patch by Felix Geyer <sniperbeamer_disc1@fobos.de>. * While playing Last.fm Streams, sometimes metadata wouldn't be updated on track changes. Patch by Tom Kaitchuck <tkaitchuck@comcast.net>. * Speed patch to load playlist columns from statistic tables on population of the playlist, makes adding to the playlist and starting up faster. Thanks Ovy <ovy@alum.mit.edu>! (BR 135324) * Save MTP playlists when they are renamed so we don't lose changes. * Prevent new podcastepisodes from showing up in the playlistbrowser twice by opening it's parent before adding. (BR 134108) * New iPods would not get initialized. * Files that were detected as being added back to the collection would not always be re-enabled in the Playlist. (BR 130359) * Fix some spelling and layout issues. Part of a patch by Malcolm Parsons <malcolm.parsons@gmail.com>. * Correctly handle horizontal wheel events in position slider. (BR 119254) * Don't rescan collection while transcoding. (BR 133423) * Don't try to copy to collection from urls without kio slaves. * Don't quit immediately if amarokrc was removed. (BR 134439) * The DAAP client would crash Amarok under certain conditions when kdelibs was compiled with asserts on. (BR 132851) * Configuring the toolbar would disable the stop button. Patch by Markus Kaufhold <M.Kaufhold@gmx.de>. (BR 132477) * Changed tags of songs on iPods would not propagate to its database. (BR 133842) * Fixed playlist encoding problems. (BR 133613) * Cover images for compilation albums can now be displayed full size in the context browser. * Dragging compilation albums from the collection browser or the playlist would show multiple cover images in the tooltip. (BR 133916) * Don't crash when calling repopulate dynamic mode from dcop. (BR 133716) * Last.fm streams work with proxies. (BR 131137) * Don't try to read m4a tags from apparently invalid files. (BR 133288) * Some podcasts would insert line breaks in author/title information and cause graphical errors. (BR 133591) * File tracking could fail on files that were copies of each other but with different ID3v1 or APE tags.
2006-11-01fix the order of includes in order for this to compile; from Anon Ymouschristos3-1/+32
2006-11-01Note removal of databases/xmysql.bad1-1/+2
2006-11-01Get rid of xmysql. It hasn't been maintained for years and it wasn'tbad6-99/+1
very useful back when I imported it.
2006-11-01add ELF binary that can be loaded by NetBSD bootstrapmlelstv5-4/+26
instead of a kernel.
2006-11-01Note update of rp-pppoe package to 3.8.martin1-1/+2
2006-11-01Update rp-pppoe to 3.8: various internal changes, some of them bogusmartin11-170/+88
and reverted by patches, some of them were already present in (now removed) patches; plus: - Changed the names of commands from adsl-* to pppoe-* to more logically name the scripts. - Make the userland pppoe daemon run as "nobody" if possible, once session has started. - Make userland pppoe program somewhat safe if it is installed SUID or SGID. Note that I still do *NOT* recommend a SUID/SGID pppoe. - Fix long-standing bug in pppoe-server that passed arguments to pppd in the wrong order.
2006-11-01Note update of "mutt" package to version 1.4.2.2nb1.tron1-1/+2
2006-11-01Updated devel/p5-Log-Dispatch to 2.13.obache2-4/+3
2006-11-01Update p5-Log-Dispatch to 2.13.obache2-7/+6
Pkgsrc changes: * Remove dependency p5-Test-Simple>=0.17, because base perl>=5.8.7 includes newer version. Changes: 2.13 Sep 25, 2006 - No code changes, just added a SUPPORT section to the docs referring folks to RT for bug reports & patches. 2.12 Aug 9, 2006 - The various email sending modules could overwrite if they were in buffered mode and they sent mail as a script exited. Reported by Dean Kopesky. - Doc tweaks. Make reference to "Log Levels" section in output module docs more explicit. RT #11224.
2006-11-01Make sure that a temporary has been opened with proper permissions.tron3-2/+33
That fixes the security problem reported in CVE-2006-5298.
2006-11-01Note update of "wireshark" package to version 0.99.4.tron1-1/+2
2006-11-01Update "wireshark" package to version 0.99.4.tron4-23/+21
Changes since version 0.99.3: - Bug fixes o The HTTP dissector could crash. (Bugs 1050 and 1079) Versions affected: 0.99.3. CVE-2006-5468 o The LDAP dissector (and possibly others) could crash. (Bug 1054) Versions affected: 0.99.3. o The XOT dissector could attempt to allocate a large amount of memory and crash. (Bug 1133) Versions affected: 0.9.8 to 0.99.3. CVE-2006-4805 o The WBXML dissector could crash. (Bug 1134) Versions affected: 0.10.11 to 0.99.3. CVE-2006-5469 o The MIME Multipart dissector was susceptible to an off-by-one error. (Bug 1135) Versions affected: 0.10.1 to 0.99.3. CVE-2006-4574 o If AirPcap support was enabled, parsing a WEP key could sometimes cause a crash. Versions affected: 0.99.3. o The file set dialog could grow excessively large. (Bug 331) o Trying to save flow data may crash Wireshark. (Bug 396) o The personal hosts configuration file wasn't being parsed correctly. (Bug 795) o "Save as" to an existing file wasn't allowed. (Bug 927) o The SNMP dissector was not handling 64-bit counters properly. (Bug 1047) o The HTTP content-length field was a string instead of an integer. (Bug 1109) o Invalid characters could show up in PDML output. (Bug 1110) - New and Updated Features o AirPcap, support (which provides raw mode capture under Windows) has been enhanced to allow capturing on multiple AirPcap adapters simultaneously using the Multi-Channel Aggregator. o VoIP call playback has been enhanced. If Wireshark is linked with the PortAudio library, you can play back G.711 conversations. o The capture interface dialog display has been enhanced. o The "Save" button has been removed from the "Ok" / "Apply" / "Cancel" button group in the following dialogs: o Edit/Preferences o View/Coloring Rules o Capture/Capture Filters o Analyze/Display Filters o Analyze/Enabled Protocols If you're fond of the "Save" button it can be resurrected in the User Interface preferences. o Expert analysis has been improved. o Wireshark now supports USB as a media type. If you're running a Linux distribution with version 2.6.11 of the kernel or greater and you have the usbmon module enabled and you have a recent CVS version of libpcap (post-0.9.5) installed you can also do live captures. More details can be found at the USB capture setup page on the wiki. o The number of WEP keys that the user can specify in the IEEE 802.11 protocol preferences has been increased from 4 to 64. - New Protocol Support Enea LINX, Ethernet Powerlink (v1 and v2), H.248 Q.1950 Annex A, Linux pktgen, MP2T, NEWMAIL, PNG, SCSI OSD, UDLD, UMTS FP, USB, WLCCP, WZCSVC - Updated Protocol Support 3Com NJACK, 802.11, ACSE, AH, ALCAP, ANSI MAP, ATM, ASN.1, BACapp, BER, BGP, BSSAP, Camel, Catapult DCT2000, CFlow, CLNP, Common Windows networking, DAP, DCERPC (DCERPC, ATSVC, DFS, EFS, EPM, EVENTLOG, INITSHUTDOWN, MAPI, NT, PIPE, SAMR, SPOOLSS, SRVSVC, SVCCTL, WINREG), DCOM (DCOM, CBA-ACCO, SYSACT), DIAMETER, DISP, DNS, DOP, DSP, ESP, Ethernet, FC, FCP, GSM A, GSM MAP, GSM SMS, GSSAPI, GTP, H.225, H.245, H.248, HTTP, ICQ, IKE, ISAKMP, iSCSI, ISUP, IUUP, Kerberos 4, LAP-D, LDAP, LLC, LogotypeCertExtn, MEGACO, MIME Multipart, MIP6, MMS, MSRP, MTP3, NCP, NDMP, NDPS, NFS, NTP, OSI, PER, PN-MRP, PPP, 19154Q.931, RADIUS, Redback, RPC, RTCP, RTP, SCCP, SCSI, SDP, SIP, SMB, SMRSE, SNMP, SSL, STANAG 5066, STP, TCAP, TCP, TFTP, TIPC, UDP, UMA, VLAN, VNC, VRRP, X.509ce X11, YMSG, WTLS - Removed Protocols The CISCOWL dissector has been superseded by WLCCP. - New and Updated Capture File Support Catapult DCT2000, EyeSDN, iSeries
2006-11-01Use patches from "php" package to fix the build with version 7.16.0 ortron1-1/+3
newer of the "curl" package.
2006-11-01Add patch to make the "php-curl" package build with version 7.16.0tron2-1/+21
and newer of the "curl" package.
2006-11-01Don't clobber START_FILES in m/pmax.h.markd2-1/+25
Should fix PR pkg/26679.
2006-11-01pkglint recognizes PKG_DESTDIR_SUPPORT.joerg1-1/+2
2006-11-01Add PKG_DESTDIR_SUPPORT to variable list. Bump to 4.73.joerg2-3/+4
2006-11-01DESTDIR support.joerg3-5/+8
2006-11-01Use BUILD_DIRS instead of manual rules.joerg1-6/+2
2006-11-01DESTDIR support.joerg1-4/+5
2006-11-01Added devel/doxymacs version 1.7.0dsainty1-1/+2
2006-11-01Now that PKGNAME is right, PLIST is wrong :) Fix that too.dsainty1-4/+4
2006-11-01Whoops... Make PKGNAME sane.dsainty1-2/+2
2006-11-01Add "doxymacs" package.dsainty1-1/+2