(5.40 started complaining, and we are not Debian ;) From upstream's changelog: 5.43 01-Jul-2019 New hacks, GravityWell, DeepStars. GLPlanet now supports the Mercator projection. Bouncing Cow has mathematically ideal cows (spherical, frictionless). Foggy toasters. Unknown Pleasures can now use an image file as a clip mask. Updated webcollage for recent changes. macOS: Fixed BSOD fonts on UWQHD+ displays. X11: Added some sample unlock dialog color schemes to the .ad file. X11: On systemd systems, closing your laptop lid might actually lock your screen now, maybe. X11: 'sonar' can ping without being setuid by using setcap. 5.42 28-Dec-2018 macOS: Fixed Sparkle auto-updater. 5.41 26-Dec-2018 X11: Those new font-loading fallback heuristics work again. Oops. iOS, Android: Plugged many memory leaks at exit. New hack, handsy. Fixed noof from displaying minimalistically. Rewrote unknownpleasures to be faster, and a true waterfall graph. BSOD Solaris improved. DVD added. Linux: If the xscreensaver daemon is setuid, then we can implore the kernel's out-of-memory killer to pretty please not unlock the screen. macOS: Upgraded Sparkle (the "Check for Updates" library). macOS: Screen saver settings work again on 10.14.
37 lines
1.3 KiB
Makefile
37 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.79 2020/01/02 10:29:00 hauke Exp $
|
|
|
|
PKGNAME= ${DISTNAME:S/-/-demo-/}
|
|
#PKGREVISION= 1
|
|
COMMENT= Demo viewer and configuration tool for xscreensaver
|
|
|
|
CONFLICTS+= xscreensaver<4.14 xscreensaver-gnome-[0-9]*
|
|
|
|
.include "../../x11/xscreensaver/Makefile.common"
|
|
|
|
USE_TOOLS+= pkg-config
|
|
|
|
CONFIGURE_ARGS+= --with-gtk=${BUILDLINK_PREFIX.gtk2}
|
|
CONFIGURE_ARGS+= --with-configdir=${PREFIX}/libexec/xscreensaver/config
|
|
|
|
BUILD_DIRS= utils driver
|
|
INSTALL_DIRS= driver
|
|
INSTALL_TARGET= install-gnome
|
|
|
|
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 share/applications
|
|
|
|
post-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/driver/xscreensaver-demo \
|
|
${DESTDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/driver/xscreensaver-demo.man \
|
|
${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/xscreensaver-demo.1
|
|
${INSTALL_DATA} ${FILESDIR}/xscreensaver-demo.desktop \
|
|
${DESTDIR}${PREFIX}/share/applications/xscreensaver-demo.desktop
|
|
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
.include "../../devel/libglade/buildlink3.mk"
|
|
.include "../../textproc/libxml2/buildlink3.mk"
|
|
.include "../../x11/gtk2/buildlink3.mk"
|
|
.include "../../graphics/gdk-pixbuf2/buildlink3.mk"
|
|
.include "../../graphics/gdk-pixbuf2-xlib/buildlink3.mk"
|
|
.include "../../x11/xscreensaver/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|