diff options
author | martti <martti> | 2003-02-15 12:34:06 +0000 |
---|---|---|
committer | martti <martti> | 2003-02-15 12:34:06 +0000 |
commit | 6690681f04753a863df6db409a56e8cb663f8c50 (patch) | |
tree | a76e9f171e5b2a51179d83c7ae6931d716710098 /devel/distcc | |
parent | aef90d0eb1caf2143d8557cf59549d68ac3cd66e (diff) | |
download | pkgsrc-6690681f04753a863df6db409a56e8cb663f8c50.tar.gz |
Imported distcc-1.1 (provided by Teemu Rinta-aho in pkg/20212)
distcc is a program to distribute compilation of C or C++ code across
several machines on a network. distcc should always generate the same
results as a local compile, is simple to install and use, and is often
two or more times faster than a local compile.
distcc does not require all machines to share a filesystem, have
synchronized clocks, or to have the same libraries or header files
installed. Machines can be running different operating systems, as long
as they have compatible binary formats or cross-compilers.
Diffstat (limited to 'devel/distcc')
-rw-r--r-- | devel/distcc/DESCR | 9 | ||||
-rw-r--r-- | devel/distcc/Makefile | 18 | ||||
-rw-r--r-- | devel/distcc/PLIST | 14 | ||||
-rw-r--r-- | devel/distcc/distinfo | 5 | ||||
-rw-r--r-- | devel/distcc/patches/patch-aa | 13 |
5 files changed, 59 insertions, 0 deletions
diff --git a/devel/distcc/DESCR b/devel/distcc/DESCR new file mode 100644 index 00000000000..95ed2a44a9d --- /dev/null +++ b/devel/distcc/DESCR @@ -0,0 +1,9 @@ +distcc is a program to distribute compilation of C or C++ code across +several machines on a network. distcc should always generate the same +results as a local compile, is simple to install and use, and is often +two or more times faster than a local compile. + +distcc does not require all machines to share a filesystem, have +synchronized clocks, or to have the same libraries or header files +installed. Machines can be running different operating systems, as long +as they have compatible binary formats or cross-compilers. diff --git a/devel/distcc/Makefile b/devel/distcc/Makefile new file mode 100644 index 00000000000..ba04ef4cb0f --- /dev/null +++ b/devel/distcc/Makefile @@ -0,0 +1,18 @@ +# $NetBSD: Makefile,v 1.1.1.1 2003/02/15 12:34:06 martti Exp $ + +DISTNAME= distcc-1.1 +CATEGORIES= devel +MASTER_SITES= http://distcc.samba.org/ftp/distcc/ +EXTRACT_SUFX= .tar.bz2 + +MAINTAINER= teemu@rinta-aho.org +HOMEPAGE= http://distcc.samba.org/ +COMMENT= Tool for distributed C/C++ compiling + +## USE_BUILDLINK2= YES +## USE_LIBTOOL= YES +USE_GMAKE= YES +GNU_CONFIGURE= YES +CONFIGURE_ARGS= --prefix=${LOCALBASE} + +.include "../../mk/bsd.pkg.mk" diff --git a/devel/distcc/PLIST b/devel/distcc/PLIST new file mode 100644 index 00000000000..1860e3bba57 --- /dev/null +++ b/devel/distcc/PLIST @@ -0,0 +1,14 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2003/02/15 12:34:06 martti Exp $ +bin/distcc +bin/distccd +man/man1/distcc.1 +man/man1/distccd.1 +share/doc/distcc/AUTHORS +share/doc/distcc/COPYING +share/doc/distcc/COPYING.FDL +share/doc/distcc/NEWS +share/doc/distcc/OLDNEWS +share/doc/distcc/README +share/doc/distcc/DEPENDENCIES +share/doc/distcc/INSTALL +@dirrm share/doc/distcc diff --git a/devel/distcc/distinfo b/devel/distcc/distinfo new file mode 100644 index 00000000000..652cac2d4cd --- /dev/null +++ b/devel/distcc/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2003/02/15 12:34:06 martti Exp $ + +SHA1 (distcc-1.1.tar.bz2) = 8c797f3a8042fa64a70169de1810539eeff39d98 +Size (distcc-1.1.tar.bz2) = 207370 bytes +SHA1 (patch-aa) = 623abf4f2189a5c1395f564cd98cbd28f98ff9c8 diff --git a/devel/distcc/patches/patch-aa b/devel/distcc/patches/patch-aa new file mode 100644 index 00000000000..312b56d8dfa --- /dev/null +++ b/devel/distcc/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1.1.1 2003/02/15 12:34:06 martti Exp $ + +--- Makefile.in.orig Wed Feb 5 10:08:12 2003 ++++ Makefile.in Wed Feb 5 10:08:25 2003 +@@ -408,7 +408,7 @@ + # TODO: Perhaps don't rely on linuxdoc tools being present on a + # machine doing a build from CVS. + +-install: showpaths install-doc install-man install-programs install-linuxdoc ++install: showpaths install-doc install-man install-programs + + install-programs: $(bin_PROGRAMS) + $(INSTALL) -d $(DESTDIR)$(bindir) |