* New hacks, `flurry', `metaballs', `eruption', `popsquares', and `barcode'. * Minor updates to `maze' for high density mazes. * Added double buffering to `fluidballs' and `whirlygig'. * Bug fixes for running xscreensaver to a remote XFree86 display (which nobody would ever do...) * Updated `webcollage' (faster Alta Vista searching.) * Updated `glplanet' so the sun sets in the west. * Updated `sproingies' with smooth, unsegmented surfaces. * Fixed Perl version-sensitivity in `xscreensaver-getimage-file'. * Fixed GTK2 scrolling bug in `xscreensaver-demo'.
36 lines
1.3 KiB
Makefile
36 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.16 2003/02/15 10:48:27 wiz Exp $
|
|
#
|
|
|
|
PKGNAME= ${DISTNAME:S/-/-gnome-/}
|
|
COMMENT= Screen saver and locker for the X window system (with GNOME support)
|
|
|
|
CONFLICTS+= xscreensaver-[0-9]*
|
|
|
|
.include "../../x11/xscreensaver/Makefile.common"
|
|
|
|
# so that the screensaver.desktop rule in ``configure'' works
|
|
USE_GMAKE= YES
|
|
|
|
CONFIGURE_ARGS+= --with-gtk=${BUILDLINK_PREFIX.gtk}
|
|
CONFIGURE_ARGS+= --with-pixbuf=${BUILDLINK_PREFIX.gdk-pixbuf}
|
|
CONFIGURE_ARGS+= --with-xml=${BUILDLINK_PREFIX.libxml2}
|
|
CONFIGURE_ARGS+= --with-gnome=${BUILDLINK_PREFIX.gnome-libs}
|
|
CONFIGURE_ARGS+= --with-configdir=${PREFIX}/share/control-center/screensavers
|
|
|
|
PLIST_SRC= ${.CURDIR}/PLIST
|
|
|
|
# Very ugly hack so that GTK2 is not found, since the package does not support
|
|
# choosing GTK1 over GTK2 (which is needed, since gnome-libs link against GTK1).
|
|
pre-configure:
|
|
cd ${WRKSRC} && ${SED} -e "s/have_gtk2=yes/have_gtk=no/g" \
|
|
-e "s/HAVE_GTK2/DUMMY_HAVE_GTK2/g" configure \
|
|
> configure.patched && \
|
|
${MV} configure.patched configure && ${CHMOD} 755 configure
|
|
|
|
post-install:
|
|
cd ${WRKSRC}/driver && ${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} ${MAKE_FLAGS} xxxinstall-gnome
|
|
|
|
.include "../../devel/libglade/buildlink2.mk"
|
|
.include "../../textproc/libxml2/buildlink2.mk"
|
|
.include "../../x11/controlcenter/buildlink2.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|