freebsd-ports/sysutils/nvclock/Makefile
Tobias C. Berner fa81a4f5f8 accessibility/at-spi2-core: update to 2.46.0
What's new in at-spi2-core 2.46.0:
* Fix GetInterfaces documentation on org.a11y.atspi.Accessible
  interface.

What's new in at-spi2-core 2.45.91:
* Send device event controller events using the same signature as other
  events.
* Document the Accessible, Action, and Cache dbus interfaces.
* Fix license of atspi-gmain.c (#87).

What's new in at-spi2-core 2.45.90:
* xml: Add some documentation.
* xml: Fix event arguments.
* xml: Add some missing DeviceEventController methods.
* Bind the AT-SPI bus to the graphical session.
* Mark bus service as belonging to the session slice.
* Add ATSPI_ROLE_PUSH_BUTTON_MENU.
* Add an "announcement" event/signal to allow objects to send
  notifications (!63).
* Various code clean-ups and test improvements.

What's new in at-spi2-core 2.45.1:
* Atk and at-spi2-atk are now merged into this project.
* Now requires meson 0.56.2 and glib 2.67.4.
* at-spi2-atk: Expose the accessible hierarchy via dbus introspection.
* Properly escape the AT-SPI bus address; fixes warnings about the address
  not containing a colon (!55).
* Add a text value to AtspiValue, so that a value can expose a textual
  description, as in the new Atk value API.
* Add atspi_event_listener_register_with_app, to allow an event listener
  to be registered only for a given application (!52).

- accessibility/atk and accessibility/at-spi2-atk have been merged into
  accessibility/at-spi2-core

- accessibility/at-spi2-core: bump consumers of removed ports atk and at-spi2-atk

PR:		269704
Exp-run by:	antoine
---
2023-03-02 06:23:10 +01:00

52 lines
1.6 KiB
Makefile

PORTNAME= nvclock
DISTVERSION= 0.8b4
PORTREVISION= 8
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
WWW= https://www.linuxhardware.org/nvclock/
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>