diff options
author | jlam <jlam@pkgsrc.org> | 2001-04-19 19:11:59 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-04-19 19:11:59 +0000 |
commit | 2505570ce29640c05055273e65733456e6b877a0 (patch) | |
tree | 9f2eb9be1665a2910c5f838d78bc572984e80897 /mk | |
parent | ecbbc4485151b40830a07821dde6339ca742c9e0 (diff) | |
download | pkgsrc-2505570ce29640c05055273e65733456e6b877a0.tar.gz |
Handle freetype2 package like the MesaLib package as it is bundled with
XFree86-4.0.x.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.pkg.mk | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index 71bdd488e7c..88b8bdeb77e 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.722 2001/04/18 21:50:46 dmcmahill Exp $ +# $NetBSD: bsd.pkg.mk,v 1.723 2001/04/19 19:11:59 jlam Exp $ # # This file is in the public domain. # @@ -857,6 +857,14 @@ DEPENDS+= Mesa>=3.2.1:../../graphics/Mesa .undef __BUILTIN_MESA .endif # USE_MESA +# If USE_FREETYPE2 is set, depend on freetype2. +.if defined(USE_FREETYPE2) +.if ${HAVE_BUILTIN_FREETYPE2} == "NO" +DEPENDS+= freetype2>=2.0.1:../../graphics/freetype2 +.endif +.undef __BUILTIN_FREETYPE2 +.endif # USE_FREETYPE2 + # Check if we got "rman" with XFree86, for packages that need "rman". .if defined(USE_RMAN) .if !exists(${X11BASE}/bin/rman) |