diff options
author | joerg <joerg@pkgsrc.org> | 2007-02-20 14:30:00 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2007-02-20 14:30:00 +0000 |
commit | 2b437f3aa22276c56200d436a97ffa4f0963c8ae (patch) | |
tree | bf17df8441f61703a625ad2ccedaad2c72ea7a5d | |
parent | 6bf2973b43aef72f68efa6715c9965561b46c7d3 (diff) | |
download | pkgsrc-2b437f3aa22276c56200d436a97ffa4f0963c8ae.tar.gz |
Fix the build with modular Xorg. This slipped throght the Xft sweep.
I've been wondering for ages why it failed...
Thanks to David Brownlee for the fix.
-rw-r--r-- | graphics/magicpoint/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/graphics/magicpoint/Makefile b/graphics/magicpoint/Makefile index 1bfd43871fb..4713223c865 100644 --- a/graphics/magicpoint/Makefile +++ b/graphics/magicpoint/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.55 2006/12/06 16:37:27 joerg Exp $ +# $NetBSD: Makefile,v 1.56 2007/02/20 14:30:00 joerg Exp $ DISTNAME= magicpoint-1.10a PKGREVISION= 11 @@ -30,7 +30,7 @@ CONFIGURE_ENV+= BUILDLINK_DIR=${BUILDLINK_DIR:Q} CONFIGURE_ENV+= mgp_cv_path_perl=${TOOLS_PERL5:Q} MGP_RENDERING_ENGINES= freetype graphics/freetype-lib \ - xft2 fonts/Xft2 \ + xft2 x11/libXft \ vflib print/ja-vflib-lib # We need to perform the steps normally done by ``xmkmf -a'' since some @@ -76,6 +76,8 @@ CONFIGURE_ARGS+= --disable-${engine} .if !empty(PKG_OPTIONS:Mxft2) .include "../../graphics/freetype2/buildlink3.mk" +.include "../../x11/libXext/buildlink3.mk" +.include "../../x11/libXmu/buildlink3.mk" .endif .include "../../graphics/libungif/buildlink3.mk" |