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 /fonts | |
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 'fonts')
-rw-r--r-- | fonts/ttf2pk/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/fonts/ttf2pk/Makefile b/fonts/ttf2pk/Makefile index 4241992dea6..0331e3f88e1 100644 --- a/fonts/ttf2pk/Makefile +++ b/fonts/ttf2pk/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2005/04/11 21:45:47 tv Exp $ +# $NetBSD: Makefile,v 1.4 2005/06/01 20:08:00 jlam Exp $ # .include "../../graphics/freetype-lib/Makefile.common" @@ -10,7 +10,6 @@ MAINTAINER= bernhard@SDG.de,hubertf@NetBSD.org HOMEPAGE= http://www.freetype.org/ COMMENT= TrueType to TeX PK font converter - GNU_CONFIGURE= # defined CONFIGURE_ARGS+= --prefix=${LOCALBASE} CONFIGURE_ARGS+= --with-kpathsea-dir=${PREFIX}/lib @@ -22,11 +21,12 @@ BUILD_DIRS= ${T2PSRC} BUILD_TARGET= depend all USE_LIBTOOL= # defined +USE_TOOLS+= autoconf TEXMF= ${PREFIX}/share/texmf pre-configure: - cd ${T2PSRC}; ${AUTOCONF} + cd ${T2PSRC}; autoconf do-install: ${INSTALL_PROGRAM} ${T2PSRC}/ttf2pk \ @@ -56,5 +56,4 @@ do-install: .include "../../graphics/freetype-lib/buildlink3.mk" .include "../../print/teTeX-bin/kpathsea.buildlink3.mk" -.include "../../mk/autoconf.mk" .include "../../mk/bsd.pkg.mk" |