diff options
author | zuntum <zuntum@pkgsrc.org> | 2001-08-19 08:32:40 +0000 |
---|---|---|
committer | zuntum <zuntum@pkgsrc.org> | 2001-08-19 08:32:40 +0000 |
commit | 49b739d94784ac43055ffb10b98be3a1282eb80b (patch) | |
tree | 592fb6818c679e3bb2ea50d41d2359b9e207a7b4 | |
parent | 9fa59d09cf24b300cc45b646f0d364359354fae8 (diff) | |
download | pkgsrc-49b739d94784ac43055ffb10b98be3a1282eb80b.tar.gz |
XFree86 4.x has freetype2 built-in, but it doesn't have freetype-config script
that exists in 3.3.6. There's a workaround for this in freetype2 package
that creates freetype-config script in ${BUILDLINK_DIR}/bin so the packages
can find it, but this doesn't work when package that wants to use freetype-config
doesn't .include freetype's buildlink.mk directly, but pulls in freetype2 dependency
by including the buildlink of another package (which depends on freetype2).
-rw-r--r-- | graphics/apla/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/graphics/apla/Makefile b/graphics/apla/Makefile index 1b2ee61c11e..455e3685322 100644 --- a/graphics/apla/Makefile +++ b/graphics/apla/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2001/08/17 21:16:52 jlam Exp $ +# $NetBSD: Makefile,v 1.8 2001/08/19 08:32:40 zuntum Exp $ # DISTNAME= apla-1.0.3 @@ -16,5 +16,6 @@ do-install: .include "../../graphics/avifile-devel/buildlink.mk" .include "../../devel/SDL_ttf/buildlink.mk" +.include "../../graphics/freetype2/buildlink.mk" .include "../../converters/libiconv/buildlink.mk" .include "../../mk/bsd.pkg.mk" |