summaryrefslogtreecommitdiff
path: root/sysutils
AgeCommit message (Collapse)AuthorFilesLines
2004-10-26Update sysutils/gtk-send-pr to 0.3.4, no changelog available.xtraeme2-6/+5
2004-10-25Update gkrellm to 2.2.4, ok cube@.xtraeme3-6/+6
Changes: 2.2.4 - Mon Sep 6, 2004 ----------------------- * 2.2.3 used a Gtk 2.4 function and did not compile under Gtk 2.2, so added GTK_CHECK_VERSION. * Jerome UZEL got a patch in to account for deleted email in Evolution mailboxes. 2.2.3 - Mon Sep 6, 2004 ----------------------- * On SMP machines, allow sensors to be relocated to composite CPU panel. * Alan Swanson: icon patch to give GKrellM and its configuration windows an icon for task switching. * Bugfixes: o Christophe Barbe: fix mail.c X-Evolution flag decoding to use proper "seen" bit for determining new/old email. o Henrik Brix Andersen: use gtk_window_get_size() when calculating _NET_WM_STRUT size so strut space can be resized when shutting gkrellm. o Don't save new y_positions that are y packed and not user set (eg preserve user positon when opening fs secondaries for > 10 seconds). o Don't nest static function declarations inside of functions to fix upcoming gcc 3.5 compile errors - from Art Haas. o Sensor location menu wasn't recreated after the first config opening.
2004-10-24Adopt patches from darwinports to make gnome-vfs2 build on OS X.recht9-28/+154
While at it also combine patch-a[fk] since they've patched the same file.
2004-10-21Upgrade to lsof version 4.73. No changes related to or affectingatatat2-6/+6
NetBSD (or pkgsrc) are mentioned in the 00DIST file, but this update conveniently and completely eliminates the problem of the changing tar file from a few days ago.
2004-10-20Update to 0.99. From the changelog:schmonz2-5/+5
Set PAM_RHOST to value of TCPREMOTEIP, which is set by tcpserver. Thanks to dean gaudet. Use service name in syslog instead of hard-coded 'checkpassword-pam' value. Thanks to dean gaudet. New command-line option -H/--no-chdir-home: do not chdir to user home directory. Useful in a specific case when home directories are automounted, but mail is being delivered to a central location. Thanks to Christian Hudon. Updated to Autoconf 2.59 and Automake 1.7.9.
2004-10-20Update to 2.8.0:jmmv3-8/+10
* HIG fix for the preference dialog * Updated translations
2004-10-20/bin/sh -> @RCD_SCRIPTS_SHELL@xtraeme1-2/+2
2004-10-20Replace harcoded /usr/pkg and /var with @PREFIX@ and @VARBASE@xtraeme1-3/+3
respectively, from Sergey Svishchev in private email.
2004-10-19Remove a memory leak that was supposed to fix a bug (but the bug is notjmmv1-8/+4
really there... i.e., me not reading the code properly). Not bumping revision since this affects the kqueue part only, which is not built by default.
2004-10-19A minor change (by the author) to the tarball (but without changingatatat2-5/+5
the name) renders the checksum invalid (even though the material contents of the tarball are unchanged). Luckily, we can switch from the .tar.bz2 distribution to the .tar.gz one. It's a little larger, but it get around this problem. We will switch back to the .tar.bz2 one once 4.73 is released, which ought to happen in a few weeks.
2004-10-17When enabling kqueue, only link famd against -lpthread, not everything.jmmv1-4/+4
2004-10-17Add kqueue support. This way, famd can be notified of changes to files andjmmv8-16/+536
directories in "real time", without having to periodically poll(2) for them after several seconds. This improves the responsiveness of applications using famd (specially GNOME) when changes to files occur from the "outside" (they are notified from changes immediately), or even from the application itself (for example, have you ever tried to rename several files from Nautilus? just a PITA). To enable kqueue, you have to pass the 'kqueue' option to the package. I'm not enabling it by default because it needs testing (but it should be enabled in a future). Furthermore, I'd like to send these patches to the FAM developers for comments too. And a review from somebody knowing kqueue could be good! (this is the first time I use the kqueue interface, so I'm not sure if everything is right). A description on how this works can be found in the files/IMonKQueue.c++ file. Note that, due to FAM's design, the easiest way to do this change is to "emulate" imon functionality. While here, add an rc.d script for famd, in case the user prefers to run it at system startup instead of from inetd (I created it while developing the kqueue functionality, so it's a good moment to add it). Adjust the MESSAGE accordingly. Bump PKGREVISION to 4.
2004-10-16Make the mntent compatibility layer work properly. It was storing the listjmmv3-7/+8
of mounted filesystems in a local variable that was lost between calls to the emulated getmntinfo function. I'm not sure if this fixes any visible problem, but it probably should. The code was randomly reading from memory before (running with debugging enabled exposed the problem, for example). Bump PKGREVISION to 3.
2004-10-16Set INCOMPAT_CURSES to make this package build on NetBSD-1.*.minskim1-1/+3
Suggested by wiz@.
2004-10-12Install several header files needed by the glib interface.jmmv2-6/+18
Bump PKGREVISION to 1.
2004-10-12Recreate the VARBASE/run/dbus directory before starting the daemon, in casejmmv2-4/+13
it does not exist; this directory is removed at boot time by another script. Also, don't bother to create it with an OWN_DIRS_PERMS line, because the rc.d script will do it for us. Bump PKGREVISION to 1.
2004-10-11RCD_SCRIPTS_EXAMPLEDIR was just changed to be a relative directoryreed2-4/+4
under ${PREFIX} instead of being an absolute path. So fix the references using RCD_SCRIPTS_EXAMPLEDIR to be ${PREFIX}/${RCD_SCRIPTS_EXAMPLEDIR}. This should have no changes to use before. Please note that the MESSAGE files in most cases are wrong in the first place. We have automated mechanisms and could have an automated message for explaining rc.d script usage. (This is something to do!)
2004-10-11Add and enable dbus and dbus-glib.jmmv1-1/+3
2004-10-11Initial import of dbus-glib, version 0.22:jmmv4-0/+64
D-BUS is a message bus, used for sending messages between applications. Conceptually, it fits somewhere in between raw sockets and CORBA in terms of complexity. D-BUS supports broadcast messages, asynchronous messages (thus decreasing latency), authentication, and more. It is designed to be low-overhead; messages are sent using a binary protocol, not using XML. D-BUS also supports a method call mapping for its messages, but it is not required; this makes using the system quite simple. This package provides the D-BUS interface to GLib and the dbus-monitor utility (included here because it also uses GLib).
2004-10-11Initial import of dbus, version 0.22:jmmv9-0/+233
D-BUS is a message bus, used for sending messages between applications. Conceptually, it fits somewhere in between raw sockets and CORBA in terms of complexity. D-BUS supports broadcast messages, asynchronous messages (thus decreasing latency), authentication, and more. It is designed to be low-overhead; messages are sent using a binary protocol, not using XML. D-BUS also supports a method call mapping for its messages, but it is not required; this makes using the system quite simple. This package provides the D-BUS core library and daemon, as well as some utilities that complement it.
2004-10-11Add and enable ccze.minskim1-1/+2
2004-10-11Import ccze from pkgsrc-wip. Packaged by xtraeme@ and modified byminskim4-0/+57
wiz@ and me.
2004-10-11Yikes, use lchown!kim3-2/+56
2004-10-11Add p5-Lchownkim1-1/+2
2004-10-11Provides a perl interface to the lchown() system call, on platforms thatkim4-0/+24
support it.
2004-10-10Add rsnapshot.kim1-1/+2
2004-10-10rsnapshot is a filesystem backup utility based on rsync.kim4-0/+51
Using rsnapshot, it is possible to take snapshots of your filesystems at different points in time. Using hard links, rsnapshot creates the illusion of multiple full backups, while only taking up the space of one full backup plus differences. When coupled with ssh, it is possible to take snapshots of remote filesystems as well.
2004-10-09Add GCC_REQD+= 2.96 since this pkg uses unnamed/annonymous structureskristerw1-1/+4
and unions, which are not supported by gcc 2.95.
2004-10-08Updated xfce4-showdesktop-plugin to 0.3.0martti3-7/+7
* Bug fixes
2004-10-08Updated xfce4-netload-plugin to 0.2.3martti4-10/+10
* Bug fixes
2004-10-08Updated xfce4-diskperf-plugin to 1.5martti4-28/+7
* Bug fixes
2004-10-07Fix build problem caused by inconsistent function declaration which gottron2-1/+15
exposed by the recent update of the "libcdio" package.
2004-10-05Fix build after amanda-common had its PKGREVISION bumped: be a bitseb2-6/+6
more liberal about the versions of the various amanda packages listed as dependencies.
2004-10-05Update rconfig to 0.39:abs2-5/+5
- No longer require ssh to localhost for probe - When reporting a error in probe, use the netname not the short name
2004-10-05Fix build after amanda-common had its PKGREVISION bumped: no need to setseb1-3/+1
an explicit DEPENDS on it, let sysutils/amanda-common/buildlink3.mk take care of it.
2004-10-05Add and enable ntfsprogsagc1-1/+2
2004-10-05Initial import of ntfsprogs-1.9.4 into the packages collection.agc11-0/+408
The Linux-NTFS project (http://linux-ntfs.sf.net/) aims to bring full support for the NTFS filesystem to the Linux operating system. The ntfsprogs package currently consists of a static library and utilities such as mkntfs, ntfscat, ntfsls, ntfsresize, and ntfsundelete (for a full list of included utilities see man 8 ntfsprogs after installation). Provided in PR 27119 by Darrin B. Jewell, modified by myself to remove dylib files from PLIST, add NetBSD statvfs compatibility, and quieten a warning in one of the patches. Darrin's patches perform the following changes: . provide for redirection of error output without having an lvalue stderr . support for NetBSD disklabels . fix for ntfs_attr_pread to avoid reading a partial block . workaround for darwin sys/mount.h namespace pollution This package is currently configured with the gnome-vfs module disabled.
2004-10-03Add SDLT320 to the list of drives using DLT4000Eject()bouyer2-6/+61
Do not pass the element descriptor size to SCSI_ReadElementStatus(); SCSI_ReadElementStatus() will then issue a SC_COM_RES to know how much space it needs to allocate, then issue a second one with the proper size. Fix problems with newer changers, which returns a descriptor status larger than sizeof(DataTransferElementDescriptor_T). These changes makes the Overland neo2000/SDLT320 work with amanda. Ride the libtool PKGREVISION bump.
2004-10-03Bump non-bl3ified dependency.tv1-2/+3
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv94-141/+190
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-10-01there will not be a NetBSD-1.[7-9] but will be a NetBSD-[2-9].*grant1-2/+2
adjust patterns used in ONLY_FOR_PLATFORM/NOT_FOR_PLATFORM to reflect this.
2004-09-30+shcgrant1-1/+2
2004-09-30Initial import of shc-3.7 into the NetBSD packages collection.grant5-0/+69
shc creates a stripped binary executable version of a shell script. shc itself is not a compiler such as cc, but rather it encodes and encrypts a shell script and generates C source code with the added expiration capability. It then uses the system compiler to compile a stripped binary which behaves exactly like the original script. Upon execution, the compiled binary will decrypt and execute the code with the shell -c option.
2004-09-29The master site and homepage have moved.jlam1-3/+3
2004-09-29Sort.wiz1-4/+4
2004-09-28Not every system has B230400, so only include it if available. Fixes parttv2-8/+12
(but not all) of a build problem on IRIX.
2004-09-24MASTER_SITES was gone. So now using sourceforge for download.reed1-2/+2
2004-09-23Remove example crontab entry from FILESDIR and add it to MESSAGE, the moreben4-12/+7
customary place.
2004-09-23Add example crontab entry for cfexecd. This addresses one of the issuesben3-2/+9
in PR#26614.
2004-09-23Move man pages from cfengine2-doc to cfengine package.ben4-14/+14
Addresses one of the issues in PR#26614.