diff options
author | joerg <joerg@pkgsrc.org> | 2007-03-23 22:10:50 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2007-03-23 22:10:50 +0000 |
commit | 1df1fc331eefa91978e4e03f4c5811b335964531 (patch) | |
tree | 8bffaff9f96dc1d31733ebb5964563bf993d2187 /games | |
parent | e1f1e57afb079268d0e322d6671fc4605b57cbbd (diff) | |
download | pkgsrc-1df1fc331eefa91978e4e03f4c5811b335964531.tar.gz |
Fix build with modular Xorg where libXt is needed at build time.
Diffstat (limited to 'games')
-rw-r--r-- | games/fltk-sudoku/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/games/fltk-sudoku/Makefile b/games/fltk-sudoku/Makefile index 2797b3e8750..cec5111f5b4 100644 --- a/games/fltk-sudoku/Makefile +++ b/games/fltk-sudoku/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2006/07/27 14:53:54 rillig Exp $ +# $NetBSD: Makefile,v 1.3 2007/03/23 22:10:50 joerg Exp $ DISTNAME= fltk-1.1.7-source PKGNAME= fltk-sudoku-1.1.7 @@ -45,7 +45,11 @@ BUILD_TARGET= sudoku do-install: ${INSTALL_GAME} ${WRKSRC}/test/sudoku ${PREFIX}/bin/fltk-sudoku -.include "../../x11/fltk/buildlink3.mk" -.include "../../graphics/png/buildlink3.mk" +BUILDLINK_DEPMETHOD.libXt?= build + .include "../../graphics/jpeg/buildlink3.mk" +.include "../../graphics/png/buildlink3.mk" +.include "../../x11/fltk/buildlink3.mk" +.include "../../x11/libX11/buildlink3.mk" +.include "../../x11/libXt/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |