freebsd-ports/sysutils/nvclock/Makefile
Baptiste Daroussin 2c672a4de9 INSTALLS_ICONS: retire the macro and rework the related dependencies
While here, make sure gtk-update-icon-cache is only on run dependency
where added as a dependency
Enforce gtk3 to depend on gtk-update-icon-cache (previously it was
inheriting the dependency)
2021-10-10 21:44:42 +02:00

53 lines
1.6 KiB
Makefile

# Created by: Samy Al Bahra <samy@kerneled.com>
PORTNAME= nvclock
DISTVERSION= 0.8b4
PORTREVISION= 7
CATEGORIES= sysutils
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/0.8%20%28beta4%29
DISTNAME= nvclock${DISTVERSION}
MAINTAINER= danfe@FreeBSD.org
COMMENT= NVidia graphic card status and overclocking tool
LICENSE= GPLv2
USES= gmake
GNU_CONFIGURE= yes
PLIST_FILES= bin/nvclock bin/smartdimmer man/man1/nvclock.1.gz
PORTDOCS= ABOUT AUTHORS ChangeLog FAQ README
OPTIONS_DEFINE= NVCONTROL X11 DOCS
OPTIONS_DEFAULT= NVCONTROL X11
NVCONTROL_DESC= NV-CONTROL support (for OpenGL settings)
X11_DESC= Build GUI program (requires GTK+ 2.x)
NVCONTROL_USE= XORG=xext
NVCONTROL_USES= pkgconfig xorg
NVCONTROL_CONFIGURE_OFF= --disable-nvcontrol
X11_USES= gnome
X11_USE= GNOME=gtk20
X11_CONFIGURE_OFF= --disable-gtk
X11_PLIST_FILES= bin/nvclock_gtk share/applications/nvclock.desktop \
share/icons/hicolor/48x48/apps/nvclock.png
post-patch:
# Uphold our C[XX]FLAGS except for backend part, it must be compiled with -O0
@${REINPLACE_CMD} -E 's|^(C(XX)?FLAGS)=|\1+=|' \
${WRKSRC}/src/gtk/Makefile.in \
${WRKSRC}/src/qt/Makefile.in \
${WRKSRC}/src/nvcontrol/Makefile.in
# Prevent recursive prepending of DESTDIR
@${REINPLACE_CMD} -E '/exec_prefix|bindir/s|\$$\(DESTDIR\)||' \
${WRKSRC}/src/gtk/Makefile.in \
${WRKSRC}/src/qt/Makefile.in
@${REINPLACE_CMD} 's/-lnvcontrol/& @X11_LIBS@/' \
${WRKSRC}/src/gtk/Makefile.in
# Fix the build with -fno-common (for Clang 11 and GCC 10)
@${REINPLACE_CMD} '/option_list/s,^,extern ,' \
${WRKSRC}/src/nvcontrol/nvcontrol.h
.include <bsd.port.mk>