diff options
author | martti <martti> | 2003-07-21 12:41:15 +0000 |
---|---|---|
committer | martti <martti> | 2003-07-21 12:41:15 +0000 |
commit | b9576867f9c9e9751a689077e238516904ef510a (patch) | |
tree | c7b08f740834f44bb8852765c2efb654fb6ff562 /devel/distcc | |
parent | 97066cf2cb90161edb00034febdc878e2120d15e (diff) | |
download | pkgsrc-b9576867f9c9e9751a689077e238516904ef510a.tar.gz |
Updated distcc to 2.9
* Optional LZO1X compression of network traffic, to make distcc
faster on slow or overloaded networks. This is turned on by
appending ",lzo" to each host specification.
* The daemon by default allows 2+NCPUS, rather than 3*NCPUS. The
two extras are to allow for some processes to be blocked on
network IO, but allowing more than two of them is probably not
useful on multiprocessor machines.
* Larger files are sent and received using memory mappings where
possible.
* Use of mmap and compression makes distcc substantially faster in
at least some cases.
* Bug fixes
Diffstat (limited to 'devel/distcc')
-rw-r--r-- | devel/distcc/Makefile | 4 | ||||
-rw-r--r-- | devel/distcc/PLIST | 9 | ||||
-rw-r--r-- | devel/distcc/distinfo | 7 | ||||
-rw-r--r-- | devel/distcc/patches/patch-aa | 13 |
4 files changed, 12 insertions, 21 deletions
diff --git a/devel/distcc/Makefile b/devel/distcc/Makefile index 350305eeb4b..baba6eebc1e 100644 --- a/devel/distcc/Makefile +++ b/devel/distcc/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.5 2003/06/16 10:24:13 martti Exp $ +# $NetBSD: Makefile,v 1.6 2003/07/21 12:41:15 martti Exp $ -DISTNAME= distcc-2.7 +DISTNAME= distcc-2.9 CATEGORIES= devel MASTER_SITES= http://distcc.samba.org/ftp/distcc/ EXTRACT_SUFX= .tar.bz2 diff --git a/devel/distcc/PLIST b/devel/distcc/PLIST index 60a583199df..c114ebce3ae 100644 --- a/devel/distcc/PLIST +++ b/devel/distcc/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2003/06/16 10:24:13 martti Exp $ +@comment $NetBSD: PLIST,v 1.4 2003/07/21 12:41:15 martti Exp $ bin/distcc bin/distccd bin/distccmon-text @@ -7,10 +7,15 @@ man/man1/distccd.1 share/doc/distcc/AUTHORS share/doc/distcc/COPYING share/doc/distcc/COPYING.FDL -share/doc/distcc/DEPENDENCIES share/doc/distcc/INSTALL share/doc/distcc/NEWS share/doc/distcc/README +share/doc/distcc/TODO +share/doc/distcc/example-init +share/doc/distcc/example.xinetd share/doc/distcc/protocol-1.txt +share/doc/distcc/protocol-2.txt +share/doc/distcc/reporting-bugs.txt share/doc/distcc/status-1.txt +share/doc/distcc/survey.txt @dirrm share/doc/distcc diff --git a/devel/distcc/distinfo b/devel/distcc/distinfo index 2b2b7ec0b5b..ed24bf0fa03 100644 --- a/devel/distcc/distinfo +++ b/devel/distcc/distinfo @@ -1,5 +1,4 @@ -$NetBSD: distinfo,v 1.4 2003/06/16 10:24:13 martti Exp $ +$NetBSD: distinfo,v 1.5 2003/07/21 12:41:15 martti Exp $ -SHA1 (distcc-2.7.tar.bz2) = 17683fddc9dc332772cf0af58c3bacd8d4666ec8 -Size (distcc-2.7.tar.bz2) = 232371 bytes -SHA1 (patch-aa) = 00a42a5d57ccae16a07f7d10a4eb9e1412252ef0 +SHA1 (distcc-2.9.tar.bz2) = a28296b152b5b5d38c85ed9f3d098e49e9d83a1d +Size (distcc-2.9.tar.bz2) = 237390 bytes diff --git a/devel/distcc/patches/patch-aa b/devel/distcc/patches/patch-aa deleted file mode 100644 index ef868c2bfac..00000000000 --- a/devel/distcc/patches/patch-aa +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-aa,v 1.4 2003/06/16 10:24:13 martti Exp $ - ---- Makefile.in.orig Mon Jun 16 09:48:10 2003 -+++ Makefile.in Mon Jun 16 13:17:43 2003 -@@ -530,7 +530,7 @@ - # install-sh can't handle multiple arguments, but we don't need any - # tricky features so mkinstalldirs and cp will do - --install: showpaths install-doc install-man install-programs try-install-linuxdoc -+install: showpaths install-doc install-man install-programs - - install-programs: $(bin_PROGRAMS) - $(mkinstalldirs) $(DESTDIR)$(bindir) |