summaryrefslogtreecommitdiff
path: root/parallel/paexec/Makefile
diff options
context:
space:
mode:
authorcheusov <cheusov>2013-08-25 14:59:17 +0000
committercheusov <cheusov>2013-08-25 14:59:17 +0000
commit670328ccd0b3fd232cc90d231a1652b00d6012ca (patch)
tree73d10b3e0c13ac4aada68ecc1db16448b2e64085 /parallel/paexec/Makefile
parent01d0e54a416010bce18f23711b74b6a2bfbca1c0 (diff)
downloadpkgsrc-670328ccd0b3fd232cc90d231a1652b00d6012ca.tar.gz
Update to 0.19.0
This release of paexec was successfully tested on the following platforms: NetBSD-6.1/amd64, OpenBSD-5.3/i386, FreeBSD-8.3/i386, Solaris-10/sparc, Solaris-11/amd64 and diverse Linux/{i386,amd64}. paexec is now selfcontained, libmaa is not needed anymore. Presentation paexec.pdf was added to presentation/. I hope it will help easier understand how "paexec" works. It is installed to ${DOCDIR}. paexec: - POSIX-2008 getline(3) is used for reading lines instead of home-made function. - t '' is equivalent to "no transport", spaces are trimmed. - "-n +NNN" has higher priority than -t, i.e. if they both are specified, transport is ignored. - Fix for -W1. - Environment variable PAEXEC_EOT was introduced. - Option -y was added to paexec(1) and paexec_reorder(1). - Option -C was added to paexec(1). paexec_reorder: - Option -x was added to paexec_reorder(1). A number of fixes and improvements in regression tests.
Diffstat (limited to 'parallel/paexec/Makefile')
-rw-r--r--parallel/paexec/Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/parallel/paexec/Makefile b/parallel/paexec/Makefile
index 6d25fa2a757..a57e3a46528 100644
--- a/parallel/paexec/Makefile
+++ b/parallel/paexec/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.12 2013/03/08 14:06:30 cheusov Exp $
+# $NetBSD: Makefile,v 1.13 2013/08/25 14:59:17 cheusov Exp $
#
-DISTNAME= paexec-0.18.0
-PKGREVISION= 1
+DISTNAME= paexec-0.19.0
CATEGORIES= parallel sysutils
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=paexec/} \
http://mova.org/~cheusov/pub/paexec/
@@ -31,7 +30,9 @@ MAKE_ENV+= EGDIR=${EGDIR}
REPLACE_SH+= examples/cc_wrapper/cc_wrapper_cmd \
tests/broken_echo/transport_broken_echo2
-.include "../../devel/mk-configure/mk-c.mk"
+post-install:
+ set -e; cd ${WRKSRC}; \
+ ${INSTALL_DATA} presentation/paexec.pdf ${DESTDIR}${PREFIX}/share/doc/paexec/
-.include "../../devel/libmaa/buildlink3.mk"
+.include "../../devel/mk-configure/mk-c.mk"
.include "../../mk/bsd.pkg.mk"