From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 7 19:30:02 2007 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5754716A41B for ; Tue, 7 Aug 2007 19:30:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3703413C45D for ; Tue, 7 Aug 2007 19:30:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.1/8.14.1) with ESMTP id l77JU23S036715 for ; Tue, 7 Aug 2007 19:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.1/8.14.1/Submit) id l77JU14p036714; Tue, 7 Aug 2007 19:30:01 GMT (envelope-from gnats) Resent-Date: Tue, 7 Aug 2007 19:30:01 GMT Resent-Message-Id: <200708071930.l77JU14p036714@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Richard Arends Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6A85416A475 for ; Tue, 7 Aug 2007 19:26:34 +0000 (UTC) (envelope-from richard@unixguru.nl) Received: from mx1.unixguru.nl (mx1.unixguru.nl [84.16.238.226]) by mx1.freebsd.org (Postfix) with ESMTP id 2655513C45B for ; Tue, 7 Aug 2007 19:26:34 +0000 (UTC) (envelope-from richard@unixguru.nl) Received: from localhost (localhost [127.0.0.1]) by mx1.unixguru.nl (Postfix) with ESMTP id 2312F45B8 for ; Tue, 7 Aug 2007 21:09:04 +0200 (CEST) Received: from mx1.unixguru.nl ([84.16.238.226]) by localhost (vs8616 [84.16.238.226]) (amavisd-new, port 10024) with ESMTP id 13687-10 for ; Tue, 7 Aug 2007 21:08:39 +0200 (CEST) Received: from mail.unixguru.nl (cc1029189-b.emmen1.dr.home.nl [212.120.92.81]) by mx1.unixguru.nl (Postfix) with ESMTP id 7A7F145B4 for ; Tue, 7 Aug 2007 21:08:33 +0200 (CEST) Received: from shell.unixguru.nl (shell.unixguru.nl [192.168.10.20]) by mail.unixguru.nl (Postfix) with ESMTP id 0F8C91142E for ; Tue, 7 Aug 2007 21:08:34 +0200 (CEST) Received: from shell.unixguru.nl (localhost.unixguru.nl [127.0.0.1]) by shell.unixguru.nl (8.13.8/8.13.8) with ESMTP id l77J8YeO034940 for ; Tue, 7 Aug 2007 21:08:34 +0200 (CEST) (envelope-from richard@shell.unixguru.nl) Received: (from richard@localhost) by shell.unixguru.nl (8.13.8/8.13.8/Submit) id l77J8YKw034939; Tue, 7 Aug 2007 21:08:34 +0200 (CEST) (envelope-from richard) Message-Id: <200708071908.l77J8YKw034939@shell.unixguru.nl> Date: Tue, 7 Aug 2007 21:08:34 +0200 (CEST) From: Richard Arends To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/115278: mussh uses seq instead of jot X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Richard Arends List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Aug 2007 19:30:02 -0000 >Number: 115278 >Category: ports >Synopsis: mussh uses seq instead of jot >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Aug 07 19:30:01 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Richard Arends >Release: FreeBSD 6.2-RELEASE-p4 i386 >Organization: >Environment: System: FreeBSD shell.unixguru.nl 6.2-RELEASE-p4 FreeBSD 6.2-RELEASE-p4 #0: Thu Apr 26 17:40:53 UTC 2007 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: mussh uses seq for concurrency measures which is not available on FreeBSD. >How-To-Repeat: Install mussh and use the -m option >Fix: Use jot instead of seq. The following patch fixes this. diff -ruN mussh.orig/Makefile mussh/Makefile --- mussh.orig/Makefile 2007-08-07 20:58:41.000000000 +0200 +++ mussh/Makefile 2007-08-07 20:58:03.000000000 +0200 @@ -25,6 +25,8 @@ post-patch: @${REINPLACE_CMD} -e "s,^#!/bin/bash,#!/usr/bin/env bash,g" \ ${WRKSRC}/${PORTNAME} + @${REINPLACE_CMD} -e "s,seq 1 ,jot 1 ,g" \ + ${WRKSRC}/${PORTNAME} do-install: @${MKDIR} ${PREFIX}/bin >Release-Note: >Audit-Trail: >Unformatted: