diff options
author | joerg <joerg@pkgsrc.org> | 2014-08-13 22:38:33 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2014-08-13 22:38:33 +0000 |
commit | f2f298b22f0bad3146aad4f5d71d82044bd6517c (patch) | |
tree | 43f7d5b8203e9199e3b7dab70a43d63f2df387f7 /devel/openrcs | |
parent | 784805ab67e73eee717112fd47ff16d75f2b0fe9 (diff) | |
download | pkgsrc-f2f298b22f0bad3146aad4f5d71d82044bd6517c.tar.gz |
Call the various autotools directly as bootstrap wants to use the wrong
scripts.
Diffstat (limited to 'devel/openrcs')
-rw-r--r-- | devel/openrcs/Makefile | 10 | ||||
-rw-r--r-- | devel/openrcs/distinfo | 3 | ||||
-rw-r--r-- | devel/openrcs/patches/patch-bootstrap | 13 |
3 files changed, 8 insertions, 18 deletions
diff --git a/devel/openrcs/Makefile b/devel/openrcs/Makefile index ce564bf16a6..9f8c2f8f238 100644 --- a/devel/openrcs/Makefile +++ b/devel/openrcs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2014/06/29 06:27:07 dholland Exp $ +# $NetBSD: Makefile,v 1.3 2014/08/13 22:38:33 joerg Exp $ DISTNAME= openrcs-20110824192219 CATEGORIES= devel @@ -10,11 +10,15 @@ COMMENT= OpenRCS is RCS clone from OpenBSD project WRKSRC= $(WRKDIR)/openrcs -USE_TOOLS= aclocal automake autoconf yacc +USE_TOOLS+= aclocal automake autoconf yacc GNU_CONFIGURE= yes USE_LIBTOOL= yes pre-configure: - cd $(WRKSRC) && $(CONFIG_SHELL) bootstrap + cd $(WRKSRC) && ${PREFIX}/bin/libtoolize --copy --force + cd $(WRKSRC) && ${TOOLS_CMD.aclocal} + cd $(WRKSRC) && ${TOOLS_CMD.autoconf} + cd $(WRKSRC) && ${TOOLS_CMD.autoheader} + cd $(WRKSRC) && ${TOOLS_CMD.automake} --foreign --add-missing --copy .include "../../mk/bsd.pkg.mk" diff --git a/devel/openrcs/distinfo b/devel/openrcs/distinfo index ae3d5a3bd9c..dcbd8bce35e 100644 --- a/devel/openrcs/distinfo +++ b/devel/openrcs/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.2 2013/07/19 12:50:44 joerg Exp $ +$NetBSD: distinfo,v 1.3 2014/08/13 22:38:33 joerg Exp $ SHA1 (openrcs-20110824192219.tar.gz) = 582ca78a9efcc193c18d82fae0617468bdc75b1d RMD160 (openrcs-20110824192219.tar.gz) = 266fd50d49da2fbacd2a7c05e2f545a3a19331ad Size (openrcs-20110824192219.tar.gz) = 106878 bytes -SHA1 (patch-bootstrap) = 705640b108251219b193b988133f17d030a696a3 diff --git a/devel/openrcs/patches/patch-bootstrap b/devel/openrcs/patches/patch-bootstrap deleted file mode 100644 index 25f9bea26f1..00000000000 --- a/devel/openrcs/patches/patch-bootstrap +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-bootstrap,v 1.2 2013/07/19 12:50:44 joerg Exp $ - ---- bootstrap.orig 2010-08-24 22:08:11.000000000 +0000 -+++ bootstrap -@@ -35,7 +35,7 @@ aclocalflags="`sed -ne 's/^[ \t]*ACLOCAL - - # Check for automake - amvers="no" --for v in 10 9 8 7 6 5; do -+for v in 14 13 12 11 10 9 8 7 6 5; do - if automake-1.${v} --version >/dev/null 2>&1; then - amvers="-1.${v}" - break |