diff options
author | jlam <jlam@pkgsrc.org> | 2005-06-01 20:07:59 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-06-01 20:07:59 +0000 |
commit | fcb7da800bdfcf21720b30da13c68603c1f09525 (patch) | |
tree | 77aa2e325b82a73660278dbb13238e6aac0adca7 /graphics/libgdiplus | |
parent | f252a9837d224356df2bfc3c73223d7e84e939c5 (diff) | |
download | pkgsrc-fcb7da800bdfcf21720b30da13c68603c1f09525.tar.gz |
Remove mk/autoconf.mk and mk/automake.mk and replace their usage with
USE_TOOLS and any of "autoconf", "autoconf213", "automake" or
"automake14". Also, we don't need to call the auto* tools via
${ACLOCAL}, ${AUTOCONF}, etc., since the tools framework takes care
to symlink the correct tool to the correct name, so we can just use
aclocal, autoconf, etc.
Diffstat (limited to 'graphics/libgdiplus')
-rw-r--r-- | graphics/libgdiplus/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/graphics/libgdiplus/Makefile b/graphics/libgdiplus/Makefile index 5a20fb40968..ce9e1153242 100644 --- a/graphics/libgdiplus/Makefile +++ b/graphics/libgdiplus/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2005/06/01 18:02:56 jlam Exp $ +# $NetBSD: Makefile,v 1.18 2005/06/01 20:08:00 jlam Exp $ # DISTNAME= libgdiplus-1.1.5 @@ -10,16 +10,14 @@ HOMEPAGE= http://www.mono-project.com/ COMMENT= Implementation of the GDI+ API USE_PKGLOCALEDIR= yes -USE_TOOLS+= gmake +USE_TOOLS+= autoconf gmake USE_LIBTOOL= yes PKGCONFIG_OVERRIDE+= libgdiplus.pc.in GNU_CONFIGURE= yes CONFIGURE_ARGS+= --disable-glitz pre-configure: - cd ${WRKSRC}; \ - ${AUTOHEADER}; \ - ${AUTOCONF} + cd ${WRKSRC}; autoheader; autoconf BUILDLINK_DEPENDS.freetype2+= freetype2>=2.1.5 BUILDLINK_DEPENDS.Xft2+= Xft2>=2.1.2 @@ -37,5 +35,4 @@ BUILDLINK_DEPENDS.Xrender+= Xrender>=0.8 .include "../../x11/Xrender/buildlink3.mk" .include "../../mk/pthread.buildlink3.mk" -.include "../../mk/autoconf.mk" .include "../../mk/bsd.pkg.mk" |