summaryrefslogtreecommitdiff
path: root/archivers/arj
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 /archivers/arj
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 'archivers/arj')
-rw-r--r--archivers/arj/Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/archivers/arj/Makefile b/archivers/arj/Makefile
index 1423514fe5a..bd0fb5f250e 100644
--- a/archivers/arj/Makefile
+++ b/archivers/arj/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.14 2005/05/22 20:07:36 jlam Exp $
+# $NetBSD: Makefile,v 1.15 2005/06/01 20:07:59 jlam Exp $
DISTNAME= arj-3.10.21
CATEGORIES= archivers
@@ -10,7 +10,7 @@ COMMENT= Open-source ARJ
PKG_INSTALLATION_TYPES= overwrite pkgviews
-USE_TOOLS+= gmake
+USE_TOOLS+= autoconf gmake
GNU_CONFIGURE= yes
CONFIGURE_SCRIPT= ${WRKSRC}/gnu/configure
MAKEFILE= makefile.gnu
@@ -25,7 +25,7 @@ pre-configure:
${SED} -e 's|@PREFIX@|${PREFIX}|g' < ${WRKSRC}/environ.c.1 \
> ${WRKSRC}/environ.c
${RM} -f ${WRKSRC}/environ.c.1
- cd ${WRKSRC}/gnu; ${AUTOCONF}
+ cd ${WRKSRC}/gnu && autoconf
post-install:
${INSTALL_DATA_DIR} ${ARJ_DOCSDIR}
@@ -35,5 +35,4 @@ post-install:
${INSTALL_DATA} ${WRKSRC}/resource/en/$$i ${ARJ_DOCSDIR};\
done
-.include "../../mk/autoconf.mk"
.include "../../mk/bsd.pkg.mk"