blob: 97f14d1317a97b2cadb86e4aa61e12f4f8fc766c (
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
|
# $NetBSD: Makefile,v 1.12 2001/02/13 21:45:06 tron Exp $
DISTNAME= fxtv-1.03
CATEGORIES= graphics
MASTER_SITES= ${HOMEPAGE}
EXTRACT_SUFX= .tgz
MAINTAINER= tron@netbsd.org
HOMEPAGE= http://people.freebsd.org/~rhh/fxtv/
DEPENDS+= tiff>=3.5.5:../../graphics/tiff
ONLY_FOR_PLATFORM= NetBSD-1.4[Y-Z]-* NetBSD-1.4Z[A-Z]-* \
NetBSD-1.5_ALPHA-* NetBSD-1.[5-9]*-*
USE_X11BASE= YES
USE_XAW= YES
USE_XPM= YES
USE_GMAKE= YES
.include "../../mk/bsd.prefs.mk"
MAKE_ENV+= X11PREFIX=${X11PREFIX}
XAW_TYPE?= 3d
# The purpose of this check is to make sure that there is a "Xaw3d"
# compatible widget set installed because normal "Xaw" won't work.
.if (${XAW_TYPE} == standard)
DEPENDS+= Xaw3d-1.5:../../x11/Xaw3d
.endif
post-extract:
@${RM} -f ${WRKSRC}/videolib/videolib.o
.include "../../mk/bsd.pkg.mk"
|