summaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorjschauma <jschauma>2003-08-24 16:31:36 +0000
committerjschauma <jschauma>2003-08-24 16:31:36 +0000
commit0d4d4db66a6cd7b35fe9526072083b01734cd198 (patch)
tree87bc2c12bb52eb02b710103f4812685279dc6a4f /graphics
parent2f758ec3f4086163c3977fa62411f5a760f60792 (diff)
downloadpkgsrc-0d4d4db66a6cd7b35fe9526072083b01734cd198.tar.gz
On IRIX, we need to create a .libs directory, so that the linker doesn't
fail. This makes this package compile and install cleanly under Irix. From PR pkg/22570 by Bas van Oostveen. Thanks!
Diffstat (limited to 'graphics')
-rw-r--r--graphics/freetype2/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/graphics/freetype2/Makefile b/graphics/freetype2/Makefile
index d78864ba64c..f50dbce7886 100644
--- a/graphics/freetype2/Makefile
+++ b/graphics/freetype2/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.19 2003/07/21 16:51:40 martti Exp $
+# $NetBSD: Makefile,v 1.20 2003/08/24 16:31:36 jschauma Exp $
#
DISTNAME= freetype-2.1.4
@@ -27,8 +27,13 @@ CONFIGURE_ENV+= RPATH_FLAG="${RPATH_FLAG}"
USE_LIBTOOL= YES
LIBTOOL_OVERRIDE= ${WRKSRC}/builds/unix/libtool
+.include "../../mk/bsd.prefs.mk"
+
post-configure:
cd ${WRKSRC} && ${LN} -s builds/unix/unix.mk config.mk
+.if ${OPSYS} == "IRIX"
+ ${MKDIR} ${WRKSRC}/.libs
+.endif
.include "../../devel/zlib/buildlink2.mk"
.include "../../mk/bsd.pkg.mk"