diff options
author | zuntum <zuntum> | 2001-08-19 08:32:40 +0000 |
---|---|---|
committer | zuntum <zuntum> | 2001-08-19 08:32:40 +0000 |
commit | f4180ddb649f5b62011c9c3e0cc1462f12771f66 (patch) | |
tree | 592fb6818c679e3bb2ea50d41d2359b9e207a7b4 | |
parent | 12e710a91217a7758f68887bf49d466432b19bcd (diff) | |
download | pkgsrc-f4180ddb649f5b62011c9c3e0cc1462f12771f66.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" |