blob: 39aedf07fb28edd53adcb3c4e99afa9b4a5970a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# $NetBSD: Makefile,v 1.41 2000/04/24 14:57:48 hubertf Exp $
#
DISTNAME= xscreensaver-3.23
CATEGORIES= x11
MASTER_SITES= http://www.jwz.org/xscreensaver/
MAINTAINER= packages@netbsd.org
HOMEPAGE= http://www.jwz.org/xscreensaver/
DEPENDS+= xpm-3.4k:../../graphics/xpm
DEPENDS+= Mesa-*:../../graphics/Mesa
DEPENDS+= gtk+-1.2.*:../../x11/gtk
GNU_CONFIGURE= yes
CONFIGURE_ARGS+=--without-shadow --with-zippy=/usr/games/fortune \
--enable-subdir=${PREFIX}/libexec/xscreensaver
CONFIGURE_ENV+= INSTALL=/usr/bin/install
USE_X11BASE= yes
USE_MOTIF= yes
USE_PERL5= yes
USE_XAW= yes
.include "../../mk/bsd.prefs.mk"
XAW_TYPE?= 3d
.if (${OPSYS} == "NetBSD")
.if defined(KERBEROS)
CFLAGS+= -I/usr/include/kerberosIV
CONFIGURE_ARGS+=--with-kerberos=yes
.endif
.endif
post-patch:
cd ${WRKSRC}/driver ; \
f=xscreensaver.kss ; \
[ -f $$f.BAK ] || ${MV} $$f $$f.BAK ; \
${SED} \
-e 's|@PREFIX@|${PREFIX}|g' \
<xscreensaver.kss.BAK >xscreensaver.kss
.include "../../mk/bsd.pkg.mk"
|