96820105fc
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.
27 lines
871 B
Makefile
27 lines
871 B
Makefile
# $NetBSD: Makefile,v 1.61 2018/07/11 07:30:40 adam Exp $
|
|
|
|
PKGNAME= ${DISTNAME:S/-/-gnome-/}
|
|
CATEGORIES+= gnome
|
|
COMMENT= Graphical monitor for distcc, the distributed C/C++ compiler
|
|
|
|
.include "../../devel/distcc/Makefile.common"
|
|
|
|
USE_TOOLS+= pkg-config
|
|
CONFIGURE_ARGS+= --with-gnome
|
|
|
|
BUILD_TARGET= distccmon-gnome
|
|
INSTALLATION_DIRS+= share/distcc
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/distccmon-gnome ${DESTDIR}${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/gnome/distccmon-gnome-icon.png \
|
|
${DESTDIR}${PREFIX}/share/distcc
|
|
${INSTALL_DATA} ${WRKSRC}/gnome/distccmon-gnome.desktop \
|
|
${DESTDIR}${PREFIX}/share/distcc
|
|
|
|
.include "../../devel/libgnome/buildlink3.mk"
|
|
.include "../../devel/libgnomeui/buildlink3.mk"
|
|
.include "../../devel/pango/buildlink3.mk"
|
|
.include "../../net/avahi/buildlink3.mk"
|
|
.include "../../x11/gtk2/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|