3.3 - Charlie the unicorn * Use masquerade as compiler white-list. * New --allow-private (the default) which allows non-global * IP and IPv6 addresses. * Cross-compilation support. * Fix parsing of IPv6 addresses. * Python 3, not python 2. * Can build without python (and without pump mode or tests). For those upgrading: you must run update-distcc-symlinks on every server machine, and add manually (see MASQUERADING of distcc(1)) those compilers it does not detect.
29 lines
948 B
Makefile
29 lines
948 B
Makefile
# $NetBSD: Makefile,v 1.39 2018/07/11 07:30:40 adam Exp $
|
|
|
|
PKGNAME= ${DISTNAME:S/-/-gtk-/}
|
|
COMMENT= Graphical monitor for distcc, the distributed C/C++ compiler
|
|
|
|
.include "../../devel/distcc/Makefile.common"
|
|
|
|
USE_TOOLS+= pkg-config
|
|
CONFIGURE_ARGS+= --with-gtk
|
|
|
|
SUBST_CLASSES+= gtk
|
|
SUBST_STAGE.gtk= pre-configure
|
|
SUBST_FILES.gtk= gnome/distccmon-gnome.desktop src/mon-gnome.c
|
|
SUBST_SED.gtk= -e "s/distccmon-gnome/distccmon-gtk/g"
|
|
SUBST_MESSAGE.gtk= Renaming -gnome to -gtk.
|
|
|
|
BUILD_TARGET= distccmon-gnome
|
|
INSTALLATION_DIRS+= share/distcc
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/distccmon-gnome \
|
|
${DESTDIR}${PREFIX}/bin/distccmon-gtk
|
|
${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"
|