summaryrefslogtreecommitdiff
path: root/fonts
diff options
context:
space:
mode:
authorjlam <jlam>2005-06-01 20:07:59 +0000
committerjlam <jlam>2005-06-01 20:07:59 +0000
commit6492b8f1ec8698b04f9127eecc0ef008460a9830 (patch)
tree77aa2e325b82a73660278dbb13238e6aac0adca7 /fonts
parent9c65cd2dcc49b8566966aad971d48eabca98f809 (diff)
downloadpkgsrc-6492b8f1ec8698b04f9127eecc0ef008460a9830.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/Makefile7
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"