blob: 1d9881333f7257c86b076e500f1b49b5330c47d6 (
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
45
46
47
48
49
50
51
|
# $NetBSD: Makefile,v 1.10 2004/01/03 18:49:54 reed Exp $
#
DISTNAME= waimea-0.4.0
PKGREVISION= 6
CATEGORIES= wm
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=waimea/}
MAINTAINER= xtraeme@NetBSD.org
HOMEPAGE= http://www.waimea.org/
COMMENT= Fast and highly customizable virtual window manager
GNU_CONFIGURE= YES
USE_BUILDLINK2= YES
USE_GMAKE= YES
USE_PERL5= run
USE_X11= YES
.include "../../mk/bsd.prefs.mk"
.if !exists(${X11BASE}/include/X11/extensions/Xinerama.h)
CONFIGURE_ARGS+= --disable-xinerama
.endif
.if !exists(${X11BASE}/include/X11/extensions/Xrender.h)
CONFIGURE_ARGS+= --disable-render
.endif
.if !exists(${X11BASE}/include/X11/extensions/shape.h)
CONFIGURE_ARGS+= --disable-shape
.endif
CONFIGURE_ARGS+= --disable-randr
REPLACE_PERL = \
data/scripts/filelist.pl \
data/scripts/procinfo.pl \
data/scripts/stylesdir.pl.in
# XXX We have to remove freetype include directory to make
# this compile.
post-buildlink:
@${RM} -r ${BUILDLINK_DIR}/include/freetype
.include "../../devel/pkgconfig/buildlink2.mk"
.include "../../fonts/Xft2/buildlink2.mk"
.include "../../graphics/freetype2/buildlink2.mk"
.include "../../graphics/imlib2/buildlink2.mk"
.include "../../lang/perl5/buildlink2.mk"
.include "../../mk/bsd.pkg.mk"
|