openbsd-ports/x11/xscreensaver/Makefile
sturm 51c1e97a0f first bunch of license cleanup, some discussions about interpretation
during the release with pval@

other categories will follow once they are finished
2003-10-08 17:13:14 +00:00

75 lines
1.9 KiB
Makefile

# $OpenBSD: Makefile,v 1.19 2003/10/08 17:13:19 sturm Exp $
COMMENT= "screen saver and locker for the X Window System"
VERSION= 4.06
DISTNAME= xscreensaver-${VERSION}
CATEGORIES= x11
HOMEPAGE= http://www.jwz.org/xscreensaver/
MAINTAINER= Marc Matteo <marcm@openbsd.org>
# BSD
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= http://www.jwz.org/xscreensaver/
MODULES= gettext
LIB_DEPENDS+= xml2.6::textproc/libxml
MAKE_ENV+= ${CONFIGURE_ENV}
USE_X11= Yes
USE_GMAKE= Yes
NO_REGRESS= Yes
CONFIGURE_STYLE= autoconf
AUTOCONF_NEW= Yes
CONFIGURE_ARGS+= --with-hackdir="${PREFIX}/libexec/xscreensaver"
CONFIGURE_ARGS+= --with-gl
CONFIGURE_ARGS+= --with-xpm
CONFIGURE_ARGS+= --without-gnome
CONFIGURE_ARGS+= --with-zippy=/usr/games/fortune
CONFIGURE_ARGS+= --without-kerberos
CONFIGURE_ARGS+= --with-xml
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include"
CONFIGURE_ENV+= CFLAGS="${CFLAGS} -I${LOCALBASE}/include"
CONFIGURE_ENV+= LDFLAGS="-L${LOCALBASE}/lib"
FLAVORS= no_gle gtk2
FLAVOR?=
.if !${FLAVOR:L:Mno_gle}
LIB_DEPENDS+= gle.3::graphics/gle
CONFIGURE_ARGS+= --with-gle
.else
CONFIGURE_ARGS+= --without-gle
.endif
.if ${FLAVOR:L:Mgtk2}
LIB_DEPENDS+= gdk_pixbuf_xlib-2.0.0.0::x11/gtk+2 \
glade-2.0.0.0::devel/libglade2
CONFIGURE_ARGS+= --with-gtk2
.else
LIB_DEPENDS+= gdk_pixbuf.2,gdk_pixbuf_xlib.2::graphics/gdk-pixbuf
.endif
post-install:
# rename deco to xdeco, so it doesn't conflict with misc/deco
@mv ${PREFIX}/man/man1/deco.1 ${PREFIX}/man/man1/xdeco.1
@mv ${PREFIX}/libexec/xscreensaver/deco \
${PREFIX}/libexec/xscreensaver/xdeco
@mv ${PREFIX}/lib/xscreensaver/config/deco.xml \
${PREFIX}/lib/xscreensaver/config/xdeco.xml
# Need a pretty icon for the controlcenter
@${INSTALL_DATA_DIR} ${PREFIX}/share/pixmaps
@${INSTALL_DATA} ${PREFIX}/share/xscreensaver/xscreensaver.xpm \
${PREFIX}/share/pixmaps/
.include <bsd.port.mk>