summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2006-08-22Fix pthread and errno usage. Include sys/uio.h on DragonFly.joerg8-2/+91
2006-08-22Needs C.joerg1-1/+2
2006-08-22Needs scrollkeeper.joerg1-1/+2
2006-08-22Fix pthread linkage.joerg3-2/+17
2006-08-22Rename static clock variable to avoid conflict with function fromjoerg2-1/+77
time.h on DragonFly.
2006-08-22QTDIR is absolute.joerg1-2/+2
2006-08-22vasprintf exists on DragonFly as well.joerg2-1/+15
2006-08-22Needs pkg-config.joerg1-2/+2
2006-08-22Doesn't support Python < 2.3.joerg1-2/+3
2006-08-22Uses libtool. Fix libtunepimp detection.joerg3-2/+27
2006-08-22Fix hard-coded -lpthread.joerg4-2/+40
2006-08-22Revive patch-dt for the sake of DragonFly.joerg2-1/+20
2006-08-22Needs pkg-config.joerg1-1/+2
2006-08-22sun-j??15 -> 5.0.8tv1-1/+3
2006-08-22Update to 1.5.0_08. The bug list, as usual, is pretty long; see here fortv5-72/+99
more information on the release: http://java.sun.com/j2se/1.5.0/ReleaseNotes.html In particular, this release fixes a couple long-standing bugs related to JIT and LinuxThreads (clone(2)-based).
2006-08-22remove hashcash-1.18; we're at 1.22gdt1-2/+1
2006-08-22guile-gtk updatedgdt1-2/+1
2006-08-22 Updated devel/guile-gtk to 0.5 [gdt 2006-08-22]gdt1-1/+2
2006-08-22Update to 0.5.gdt3-33/+10
* Support for Guile 1.8. * Bug fixes, including: * Pixmaps now correctly garbage collected. * Tighter argument range and type checking.
2006-08-22Bump to revision 3: Don't count the 'link level gateway' (or whateverhubertf3-6/+6
that is(?!) when trying to find the default route: Internet: Destination Gateway Flags Refs Use Mtu Interface default link#2 UC - tlp0 default 132.199.210.131 UGS - tun0
2006-08-21Don't duplicate dependency information.hubertf1-1/+0
2006-08-21Correct name for bbkeys09 and bbpager04.kristerw1-3/+3
2006-08-21Updated security/honeyd to 1.5badrianp2-3/+3
2006-08-21Update to 1.5badrianp2-6/+6
Changes include: 1.5a * A typo in an assert caused Honeyd to crash for most services. * The subsystem support did not correctly support getsockname for sockets coming via accept(). 1.5b * A crash when processing ARP packets. * Correct default action handling for UDP packets. * Fixed --without-python flag when using configure.
2006-08-21Note audio/libtunepimp0.4 PKGREVISION bump: security fix.salo1-1/+2
2006-08-21Security fix for CVE-2006-3600:salo3-3/+28
"A vulnerability in libtunepimp can be potentially exploited by malicious people to compromise a user's system. The vulnerability is caused due to a boundary error in the "LookupTRM::lookup()" function when retrieving album release dates. This can be exploited to cause a buffer overflow by returning an overly long release date string (more than 100 bytes). Successful exploitation may allow execution of arbitrary code in context of an application using the vulnerable library." http://secunia.com/advisories/21026/ http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2006-3600 Patch from MusicBrainz SVN. Bump PKGREVISION.
2006-08-21unconditionally install html documentation, since it comesdbj4-9/+12
with pre-built versions in the distribution. bump pkgrevision
2006-08-21remove references to fakepoll.h used on darwin, since the actualdbj2-15/+3
header seems to have already been accidentally removed, and more recent versions of darwin appear to have a working poll
2006-08-21Note update of monotone and monotone-server to 0.29.jmmv1-1/+3
2006-08-21Update monotone and monotone-server to 0.29:jmmv3-9/+9
0.29 release. Code cleanups and bug fixes. New features: - The output of 'mtn status' has been changed significantly; the output formerly used by 'mtn status --brief' has become the default. For output similar to the old 'mtn status', see 'mtn automate get_revision'. - It is now significantly easier to control what merger monotone uses to resolve conflicts; for instance, to use emacs to resolve conflicts, add: merge = "emacs" to your .monotonerc file. To override temporarily, you can also use the environment variable MTN_MERGE, which takes the same strings. Currently recognized strings are "kdiff3", "xxdiff", "opendiff", "tortoisemerge", "emacs", "vim", and "meld". - Formerly, monotone's sync-over-ssh support required that an absolute path be used, with a URL like: ssh://venge.net/home/njs/my-db.mtn The following syntaxes are now supported as well: ssh://venge.net/~/my-db.mtn ssh://venge.net/~njs/my-db.mtn Bugs fixed: - The bug where monotone would sometimes respond to a control-C (or several other signals) by locking up and refusing to exit, has been fixed. - Monotone now properly respects SIGPIPE. In particular, this means that 'mtn log | less' should now exit promptly when 'less' is exited. - 'mtn log' now flushes its output after each message; this makes 'mtn log <FILES>' significantly more usable. - 'mtn log <FILES>' formerly listed irrelevant revisions (in particular, any revision which contained a delete of any files or directories, was always included). This has been fixed. - If, during an update, two files both had conflicts, which, when resolved, resulting the two files becoming identical, the update would error out. This has been fixed. - If _MTN/log exists and does not end in a newline, we now add a newline before using the log message. This removes a problem where the string "MTN:" would end up appended to the last line of the log message. - We no longer buffer up an arbitrarily large number of pending writes in the database. This improves speed and memory usage for 'commit', and fixes the problem where 'cvs_import' would run out of memory. - Monotone's tree walking code (used by 'ls unknown', 'ls missing', and friends) now uses much less memory, especially on reiserfs. Automate changes: - 'mtn automate stdio' now uses a configurable block size, controlled by command-line option --automate-stdio-size. This is mostly useful for testing speed/memory trade-offs. - 'automate attributes' has a new format, which includes more information. Code cleanup: - We now use boost::program_options to parse command line options, rather than popt. The only user-visible change should be that --option="" no longer works as a way to set some option to the empty string; use --option "". (This change also removes a lot of orphaned and historically buggy code from monotone.) Other: - zsh completion script significantly revised and updated (see contrib/monotone.zsh_completion).
2006-08-21 Added sysutils/tphdisk version 20050112 [gdt 2006-08-21]gdt1-1/+2
2006-08-21add tphdiskgdt1-1/+2
2006-08-21This program is a replacement for phdisk.exe that allows you to creategdt5-0/+44
a save2dsk.bin hibernation file for Phoenix notebios laptops. It works with most IBM Thinkpads.
2006-08-21"Say "this JRE", not "this JDK"gson1-2/+2
2006-08-20fix PLISTjschauma2-14/+15
2006-08-20note addition of bbkeys09, bbpager04 and blackbox70jschauma1-1/+4
2006-08-20add/enable bbkeys09, bbpager04, blackbox70jschauma4-4/+13
have older versions conflict with these newer incompatible versions
2006-08-20By popular demand:jschauma16-0/+330
Finally add packages for the "new" version of blackbox, 0.70.x. This window manager is incompatible with older versions, and older add-on applications (aka "bbtools") will not work with this version. Hence, add new versions of bbkeys and bbpager as well, to provide at least the basics. (Again, these will not work with older versions.) Why are we adding these? Well, I'm told that blackbox 0.70.x is fully EWMH compliant and has better fonts. And people always ask "why is blackbox 0.70.x not in pkgsrc?". blackbox version 0.65 and the other bbtools that work with blackbox will remain in pkgsrc.
2006-08-20Note graphics/libwmf PKGREVISION bump: security fix.salo1-1/+2
2006-08-20Security fix for CVE-2006-3376:salo3-3/+35
"A vulnerability in libwmf can be potentially exploited by malicious people to compromise an application using the vulnerable library. The vulnerability is caused due to an integer overflow error when allocating memory based on a value taken directly from a WMF file without performing any checks. This can be exploited to cause a heap-based buffer overflow when a specially crafted WMF file is processed. Successful exploitation may allow execution of arbitrary code." http://secunia.com/advisories/20921/ http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2006-3376 Patch from Red Hat. Bump PKGREVISION.
2006-08-20Added devel/p5-Event-RPC.xtraeme1-1/+2
2006-08-20Add Event::RPC, DESCRiption:xtraeme5-1/+31
Event::RPC supports you in developing Event based networking client/server applications with transparent object/method access from the client to the server. Network communication is optionally encrypted using IO::Socket::SSL. Several event loop managers are supported due to an extensible API. Currently Event and Glib are implemented.
2006-08-20Updated emulators/gxemul to 0.4.2xtraeme1-1/+2
2006-08-20Update to 0.4.2.xtraeme3-11/+17
Changes between release 0.4.1 and 0.4.2 include, among other things: o) The NetWinder emulation mode now works well enough to let NetBSD/netwinder run from a disk image. (NetBSD/netwinder has to be installed manually, though, because there is no installation ramdisk kernel. The GXemul documentation has an example of how to install NetBSD/netwinder using an emulated NetBSD/pmax machine.) o) Algorithmics P5064 emulation works well enough to let NetBSD/algor run from a disk image. (Similar to NetBSD/netwinder, it has to be installed manually, using another emulated machine.) o) PCI configuration register writes can now be handled, which allows NetBSD/Malta (evbmips) 3.0.1 and NetBSD/cobalt 3.0.1 to run from PCI IDE harddisk images. (Previously, only NetBSD 2.1 worked for the Malta and Cobalt emulation modes.) o) Some performance increases: The virtual translation table update routine has been simplified to work the same way for 32-bit and 64-bit emulation, and this apparently results in a speedup for all 64-bit modes. For 32-bit MIPS, some more instruction combinations have been added.
2006-08-20Nuke some whitespace.joerg1-2/+2
2006-08-20added a hack to work around the incorrect detection of the absence of exp10schwarz1-0/+15
on Darwin
2006-08-20Update to libarchive-1.2.57 which includes the inttypes.h fix.joerg1-1/+2
2006-08-20Update to 1.2.57 which includes a better replacement for patch-aa.joerg5-55/+13
While here, don't patch away tar.5, it is about the tape archive format and not about bsdtar. It belongs into the package for that reason.
2006-08-20net/openntpd updated.peter2-3/+3
2006-08-20Update openntpd version 3.9p1.peter2-6/+6
Submitted by Shaun Amott in PR/34231. Changes since previous version in pkgsrc: 20060513 - (dtucker) [configure.ac includes.h ntp_msg.c] Add UnixWare support. Based on patch from luke.bakken at gmail.com. - (dtucker) [version.h] Release 3.9. - (dtucker) [openbsd-compat/fake-rfc2553.c] Missing braces in initializer. 20060423 - (dtucker) [configure.ac] Correctly fall back to builtin-arc4random when OpenSSL is not present. 20060116 - (dtucker) [INSTALL configure.ac ntp.c] Make configure --with-privsep-path compile in the chroot directory. Default behavior remains to chroot to the ntpd user's home dir. Based in part on a patch from OpenWall via solar at openwall com. - (dtucker) [Makefile.in] Make rebuild of y.tab.c parse conditional. - (dtucker) [configure.ac defines.h] Enable replacement getifaddrs via ioctl on Linux. - (dtucker) [configure.ac openbsd-compat/fake-rfc2553.{c,h}] Add in6addr_any if system libraries don't have it. - (dtucker) [configure.ac openbsd-compat/bsd-misc.c] Add null implementation of strsignal(). - (dtucker) [openbsd-compat/openbsd-compat.h] Template for strsignal. - (dtucker) OpenBSD CVS Sync - dtucker@cvs.openbsd.org 2005/07/06 19:54:24 [client.c] add another non-fatal error for recvfrom; ok henning@ (ID sync only, already in portable) - dtucker@cvs.openbsd.org 2005/07/11 18:04:28 [client.c] Print actual error when in debug mode; ok henning@ - dtucker@cvs.openbsd.org 2005/07/11 18:05:34 [ntp.c] Print privsep user and dir when in debug mode; ok henning@ - dtucker@cvs.openbsd.org 2005/07/11 18:08:06 [ntpd.c] More descriptive error if a signal causes the child to exit; ok henning@ - henning@cvs.openbsd.org 2005/07/15 13:34:52 [ntp.c] fix a function name in an error message why this was rotting in my tree for so long, I dunno - and I dunno where it came from - henning@cvs.openbsd.org 2005/07/15 13:36:10 [ntp.c] remove recently added "using privsep user X" message, spams console in -s mode, noticed by kettenis - henning@cvs.openbsd.org 2005/07/15 13:37:15 [ntpd.h] shrink read buffer size from 64k to 4k, this is not bgpd and we're dealing with way less data - dtucker@cvs.openbsd.org 2005/07/22 18:58:56 [server.c] Skip invalid interfaces during 'listen on *'; ok henning@ - henning@cvs.openbsd.org 2005/08/09 00:42:32 [ntp.c] with -s, do not wait if we don't have any peers at all. From: Thomas Jarosch <thomas.jarosch@intra2net.com> - dtucker@cvs.openbsd.org 2005/08/10 23:48:36 [client.c ntp.c ntpd.h server.c] Propogate server's leap indicator flags to clients; ok henning@ - henning@cvs.openbsd.org 2005/08/12 02:21:52 [buffer.c] check for EINTR too after writev(), pt out by Alexander Farber - henning@cvs.openbsd.org 2005/08/12 02:26:29 [buffer.c] on writing, we actually can deal with ENOBUFS just as well as with EAGAIN and EINTR, so do it, more or less from bgpd - wvdputte@cvs.openbsd.org 2005/09/07 07:27:10 [ntpd.c] when running ntpd with "-s" as it's argument from /etc/rc.conf, make sure the output goes to syslog and not console by moving around log_init - dtucker@cvs.openbsd.org 2005/09/24 10:32:03 [client.c ntp_msg.c ntpd.h server.c] Log source address for 'malformed packet' errors. ok henning@ - dtucker@cvs.openbsd.org 2006/01/19 17:40:16 [server.c] Check SA_LEN(sa) after sa is checked for NULL. Pointed out by solar at openwall.com, ok henning@ - dtucker@cvs.openbsd.org 2006/01/19 22:20:23 [server.c] Do not attempt to listen on interfaces with a wildcard address; ok henning@ 20050729 - (dtucker) [configure.ac] Skip OpenSSL checks for cross-compilation. Found and tested by Scott Hays. 20050707 - (dtucker) [openbsd-compat/bsd-setres[ug]id.c] Add code to use setre[ug]id and some sanity checks. - (dtucker) [configure.ac] Alphabetize $host case block. - (dtucker) [configure.ac server.c openbsd-compat/Makefile.in openbsd-compat/bsd-getifaddrs.{c,h} openbsd-compat/openbsd-compat.h] Add getifaddrs() to compat layer. Not enabled by default on any platform now, enable with -DGETIFADDRS_VIA_SIOCGIFCONF at your own risk. - (dtucker) [client.c] recvfrom on HP-UX will return EADDRNOTAVAIL instead of ECONNREFUSED for a port-unreachable, so add to the non-fatal error codes. - (dtucker) OpenBSD CVS Sync - dtucker@cvs.openbsd.org 2005/07/05 20:09:12 [client.c ntp.c ntpd.h server.c] Save transmit time for each peer for later use as refid for SNTPv4 replies. ok henning@ 20050703 - (dtucker) OpenBSD CVS Sync - henning@cvs.openbsd.org 2005/03/23 11:42:04 [imsg.c ntpd.h] wpos in struct buf_read and datalen in imsg_get should be size_t and not ssize_t From: Alexander von Gernler <grunk@pestilenz.org> - henning@cvs.openbsd.org 2005/03/23 12:36:35 [buffer.c] remove now osolete comment, from a mail exchange with Alexander von Gernler <grunk@pestilenz.org> - henning@cvs.openbsd.org 2005/03/24 11:56:22 [ntpd.c] fatal vs fatalx, Alexander von Gernler - henning@cvs.openbsd.org 2005/03/24 15:50:07 [ntp.c] one more fatal/fatalx, alexander - henning@cvs.openbsd.org 2005/03/31 12:14:01 [log.c] zap includes, Alexander von Gernler <grunk@pestilenz.org> - henning@cvs.openbsd.org 2005/03/31 17:02:43 [ntpd.c] zap includes, grunk - henning@cvs.openbsd.org 2005/04/18 11:06:35 [client.c] prevent replies with negative delay from being used, could happen with -s From: Joerg Sonnenberger <joerg@britannica.bec.de> of dragonfly - henning@cvs.openbsd.org 2005/04/18 11:07:55 [ntp.c] after setting the clock hard correct the "next" and "deadline" timestamps by the offset From: Joerg Sonnenberger <joerg@britannica.bec.de> - henning@cvs.openbsd.org 2005/04/18 14:12:50 [ntp.c] correctness: only account for offset after settime in next and deadline when those timers are actually running. due to the way ntpd's logic works this does not really make a difference, but correctness is good. spotted by me, joerg agrees - henning@cvs.openbsd.org 2005/04/18 20:46:02 [ntpd.c] extra paranoia, from a discussion with joerg - henning@cvs.openbsd.org 2005/04/19 11:08:41 [client.c] move the "reply from ... " log msg in -d mdoe uop a bit so it actually comes before the "adjusting local clock by..." one, joerg - henning@cvs.openbsd.org 2005/04/26 15:18:22 [buffer.c imsg.c ntpd.h] unify shared code a bit again to make future syncs easier From: Alexander von Gernler <grunk@pestilenz.org> - djm@cvs.openbsd.org 2005/05/03 05:44:35 [ntp.c] setres[ug]id; ok deraadt@ - henning@cvs.openbsd.org 2005/05/11 15:12:35 [config.c] don't touch *hn in failure case. no real change due to the way we use it but more correct. from Michael Knudsen <e@molioner.dk> - henning@cvs.openbsd.org 2005/05/24 08:46:43 [ntp.c] no need for endpwent(0 here either - henning@cvs.openbsd.org 2005/05/25 06:10:50 [server.c] ifa->ifa_addr can be NULL in some cases, pt out by Kurt Roeckx <kurt@roeckx.be> / bugs.debian.org/310586 - dtucker@cvs.openbsd.org 2005/05/26 19:13:06 [ntp.c ntpd.c] Ensure previous adjust has completed before clearing alarm flag; ok henning@ - henning@cvs.openbsd.org 2005/06/20 02:42:57 [client.c ntp.c ntpd.c ntpd.h parse.y] use a little state engine to keep track of delayed dns lookups and such, eases things tested by Jason Ackley <jason@ackley.net> Matthias Kilian <kili@outback.escape.de> Stephen Marley <stephen@marley.org.uk> sturm@ theo ok - henning@cvs.openbsd.org 2005/06/20 03:11:13 [ntpd.c ntpd.h] use a #define for the time to wait on -s and clarify a log msg - deraadt@cvs.openbsd.org 2005/06/22 05:55:18 [ntpd.8] (ID sync only; section is not in portable man page) we do not do -s in /etc/rc anymore. this is because, even if -s did try to do it's job it would have to choose between two cases: 1. either it would take a very long time to get the correct adjustment, thus, if you are not currently on the net right, you wait a long time (or must type ^C, which is ridiculous) 2. ntpd could be modified to "abort early", but then would not meet the promise made by -s in the manual page (note: it does not say that it "tries") therefore, -s and -S must become user choices. Sorry. This same choice is made in lots of other places - (dtucker) [LICENCE configure.ac openbsd-compat/Makefile.in openbsd-compat/bsd-setres[ug]id.c openbsd-compat/openbsd-compat.h removed openbsd-compat/uidswap.c] Use setres[ug]id interface on all platforms. Currently only implements the case where ruid == euid == suid which is all ntpd uses (may be extended later). - (dtucker) [Makefile.in] Use example ntpd.conf from srcdir so "make install" works for the srcdir != builddir. - (dtucker) [openbsd-compat/{bsd-poll.c,bsd-setresgid.c,bsd-setresuid.c}] Add CVS Ids 20050629 - (dtucker) [configure.ac openbsd-compat/{Makefile.in,errx.c,verrx.c, openbsd-compat.h}] Add errx(), in anticipation of it being used in ntpd. - (dtucker) [INSTALL] Add a bit more detail on the privsep user and group. 20050627 - (dtucker) [README] Make it clear that the footnote only applies to old Solaris systems, based on feedback from oyvind at repvik.org. - (dtucker) [INSTALL] Point out that --with-ssl-dir is only used if we're not using the builtin arc4random. 20050626 - (dtucker) [INSTALL] Add installation directions, lack thereof pointed out by oyvind at repvik.org. - (dtucker) [Makefile.in configure.ac] Have configure find a yacc that works. - (dtucker) [Makefile.in] Make check for existing ntp user more specific. 20050619 - (dtucker) [openbsd-compat/bsd-poll.c] Remove code left over from debugging. 20050508 - (dtucker) [configure.ac] Check that required programs are found. Pointed out by jj at it.su.se. - (dtucker) [contrib/redhat/openntpd.spec] If ntp user already exists, set its homedir to the chroot dir. From wijnand at nedbsd.nl. - (dtucker) [contrib/redhat/openntpd.spec] Always create privsep dir even if ntp user already exists. Also from Wijnand. 20050530 - (dtucker) [Makefile.in configure.ac mdoc2man.awk] Add support for other man page formats (man and catman), based on OpenSSH's. - (dtucker) [Makefile.in openbsd-compat/Makefile.in] Make out-of-tree builds work. - (dtucker) [Makefile.in openbsd-compat/Makefile.in] Minor cleanups. - (dtucker) [LICENCE] Add Anil Madhavapeddy to atomicio bits. - (dtucker) [version.h] Set version to -current. 20050529 - (dtucker) [openbsd-compat/atomicio.c openbsd-compat/atomicio.h openbsd-compat/bsd-arc4random.c] Sync OpenBSD ssize_t -> size_t atomicio change by avsm@, update rnd code to new interface. 20050528 - (dtucker) [openbsd-compat/bsd-poll.c] Portability and correctness fixes: - Handle fd == -1 case. - Handle fractional second timeouts correctly (not used in ntpd). - Allow any negative timeout to mean INFTIM. - (dtucker) [configure.ac] For AC_CHECK_HEADERS() and AC_CHECK_FUNCS() have one entry per line to make it easier to merge changes. - (dtucker) [defines.h includes.h openbsd-compat/bsd-poll.c] Copyright bump. - (dtucker) [CREDITS Makefile.in includes.h version.h] Add CVS Id. - (dtucker) [openbsd-compat/asprintf.c] char const -> const char, matches OpenBSD 1.10 -> 1.11.