b8bba3c379
* New options: --scan-includes, --disable-Werror * Document all of the exit codes in the man page. * Handle "-Wp,-MMD,...". * Report a better error message if a host specification contains ",cpp" but not ",lzo". * Fix a bug where the "m4" directory wasn't included in the source distribution tarball, which caused it to stop working if you ran autogen.sh. * Fixed a bug where the pump script was hard-coding /etc/distcc/hosts rather than using the prefix specified to configure. * Fixed build errors on Gentoo Linux and some other systems. Changes 3.0: * New "--without-avahi" option to configure. * Fixed a problem where pump mode was falling back to local compilation when compiling with -I options that refer to a subdirectory of one of the default system include directories (Nils Klarlund, Fergus Henderson). * Allow distcc to distribute commands that use "-MF<filename>" rather than "-MF <filename>", and likewise for "-MT<target>". * Fixed a build problem on ARM and Solaris systems. * Fixed a build problem on some Linux systems. * Fixed failure of "make install" on Cygwin. * Fallback to local compilation for "-march=native" or "mtune=native" * Fix for deadlock in pump mode. * New protocol, version 3, allowing for preprocessing on distcc servers ("pump" mode). * New component: an include server for incremental static analysis of include dependencies. This software is written in Python 2.4. * Support for getting hosts via avahi. * gcc debug option -d must be run locally because it produces secondary files. * Improved checking for errors on socket connection.
41 lines
1.1 KiB
Text
41 lines
1.1 KiB
Text
# $NetBSD: Makefile.common,v 1.7 2009/01/17 13:27:48 adam Exp $
|
|
|
|
DISTCC_VERSION= 3.1
|
|
|
|
DISTNAME= distcc-${DISTCC_VERSION}
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://distcc.googlecode.com/files/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://distcc.org/
|
|
|
|
DISTINFO_FILE= ${.CURDIR}/../../devel/distcc/distinfo
|
|
PATCHDIR= ${.CURDIR}/../../devel/distcc/patches
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_TOOLS+= gmake
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --disable-Werror
|
|
CONFIGURE_ARGS+= --enable-rfc2553
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
|
|
#CONFIGURE_ENV+= ac_cv_path_PYTHON=/dev/null
|
|
|
|
CHECK_PORTABILITY_SKIP+= contrib/redhat/*
|
|
|
|
SUBST_CLASSES+= doc
|
|
SUBST_STAGE.doc= post-patch
|
|
SUBST_FILES.doc= src/distcc.c src/hosts.c
|
|
SUBST_SED.doc= -e "s|%s/distcc/hosts|%s/hosts|g"
|
|
SUBST_MESSAGE.doc= Fixing paths.
|
|
|
|
.if empty(PKGNAME:Mdistcc-[0-9]*)
|
|
DEPENDS+= distcc>=${DISTCC_VERSION}:../../devel/distcc
|
|
PRINT_PLIST_AWK+= /^@dirrm share\/distcc$$/ \
|
|
{ print "@comment in distcc: " $$0; next }
|
|
.endif
|
|
|
|
INSTALLATION_DIRS+= bin
|
|
|
|
.include "../../devel/popt/buildlink3.mk"
|