diff options
author | tron <tron@pkgsrc.org> | 2000-05-09 08:30:49 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2000-05-09 08:30:49 +0000 |
commit | ae2880dc0678f0db5ea2c8ce8905c8ad49e2ec94 (patch) | |
tree | 7849044c87219b4569b53c3365eb1051999d1100 /graphics | |
parent | 925698fa15ac67233cc5d0b5e544f7983634e983 (diff) | |
download | pkgsrc-ae2880dc0678f0db5ea2c8ce8905c8ad49e2ec94.tar.gz |
Make sure that the package uses either "Xaw3d" or "Xaw-Xpm" but not
standard "Xaw" which won't work.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/fxtv/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/graphics/fxtv/Makefile b/graphics/fxtv/Makefile index 0050ec3fa48..72b0268e1c8 100644 --- a/graphics/fxtv/Makefile +++ b/graphics/fxtv/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2000/05/07 20:34:13 tron Exp $ +# $NetBSD: Makefile,v 1.2 2000/05/09 08:30:49 tron Exp $ DISTNAME= fxtv-1.02 CATEGORIES= graphics @@ -13,6 +13,13 @@ DEPENDS+= xpm-3.4[j-z]:../../graphics/xpm ONLY_FOR_PLATFORM= NetBSD-1.4[Y-Z]-* NetBSD-1.[5-9]*-* +.include "../../mk/bsd.prefs.mk" + +XAW_TYPE?= 3d +.if (${XAW_TYPE} == standard) +DEPENDS+= Xaw3d-1.5:../../x11/Xaw3d +.endif + USE_GMAKE= yes USE_XAW= yes USE_X11BASE= yes |