diff options
author | adam <adam@pkgsrc.org> | 2009-01-17 13:27:48 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2009-01-17 13:27:48 +0000 |
commit | dc0a22035268171dde99b1d5fd49a796d9d37a5d (patch) | |
tree | 98bb27e5bfee565fc236fe4aa0b03d88e9600de8 /devel/distccmon-gtk | |
parent | d4c53bd55885af58006cac7d239d8d9de1e7443b (diff) | |
download | pkgsrc-dc0a22035268171dde99b1d5fd49a796d9d37a5d.tar.gz |
Changes 3.1:
* 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.
Diffstat (limited to 'devel/distccmon-gtk')
-rw-r--r-- | devel/distccmon-gtk/Makefile | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/devel/distccmon-gtk/Makefile b/devel/distccmon-gtk/Makefile index 70da2849b52..51bb91810c9 100644 --- a/devel/distccmon-gtk/Makefile +++ b/devel/distccmon-gtk/Makefile @@ -1,17 +1,15 @@ -# $NetBSD: Makefile,v 1.8 2008/03/03 17:45:34 jlam Exp $ +# $NetBSD: Makefile,v 1.9 2009/01/17 13:27:48 adam Exp $ PKGNAME= ${DISTNAME:S/-/-gtk-/} -PKGREVISION= 3 COMMENT= Graphical monitor for distcc, the distributed C/C++ compiler PKG_DESTDIR_SUPPORT= user-destdir .include "../../devel/distcc/Makefile.common" +USE_TOOLS+= pkg-config CONFIGURE_ARGS+= --with-gtk -USE_TOOLS+= pkg-config - SUBST_CLASSES+= gtk SUBST_STAGE.gtk= post-patch SUBST_FILES.gtk= gnome/distccmon-gnome.desktop src/mon-gnome.c @@ -20,16 +18,14 @@ SUBST_MESSAGE.gtk= Renaming -gnome to -gtk. BUILD_TARGET= distccmon-gnome -CHECK_PORTABILITY_SKIP+= contrib/redhat/* - do-install: - ${INSTALL_PROGRAM} ${WRKSRC:Q}/distccmon-gnome \ - ${DESTDIR}${PREFIX:Q}/bin/distccmon-gtk - ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX:Q}/share/distcc - ${INSTALL_DATA} ${WRKSRC:Q}/gnome/distccmon-gnome-icon.png \ - ${DESTDIR}${PREFIX:Q}/share/distcc/distccmon-gtk-icon.png - ${INSTALL_DATA} ${WRKSRC:Q}/gnome/distccmon-gnome.desktop \ - ${DESTDIR}${PREFIX:Q}/share/distcc/distccmon-gtk.desktop + ${INSTALL_PROGRAM} ${WRKSRC}/distccmon-gnome \ + ${DESTDIR}${PREFIX}/bin/distccmon-gtk + ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/distcc + ${INSTALL_DATA} ${WRKSRC}/gnome/distccmon-gnome-icon.png \ + ${DESTDIR}${PREFIX}/share/distcc/distccmon-gtk-icon.png + ${INSTALL_DATA} ${WRKSRC}/gnome/distccmon-gnome.desktop \ + ${DESTDIR}${PREFIX}/share/distcc/distccmon-gtk.desktop .include "../../x11/gtk2/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |