From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jul 17 11:00:36 2005 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 00A4916A41C for ; Sun, 17 Jul 2005 11:00:36 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2DB443D45 for ; Sun, 17 Jul 2005 11:00:35 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j6HB0ZxC001740 for ; Sun, 17 Jul 2005 11:00:35 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j6HB0Zo7001739; Sun, 17 Jul 2005 11:00:35 GMT (envelope-from gnats) Date: Sun, 17 Jul 2005 11:00:35 GMT Message-Id: <200507171100.j6HB0Zo7001739@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Emanuel Haupt Cc: Subject: Re: ports/83556: new port: audio/penguinsap - A command line player for playing .sap audio files X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Emanuel Haupt List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jul 2005 11:00:36 -0000 The following reply was made to PR ports/83556; it has been noted by GNATS. From: Emanuel Haupt To: bug-followup@FreeBSD.org, ehaupt@critical.ch Cc: Subject: Re: ports/83556: new port: audio/penguinsap - A command line player for playing .sap audio files Date: Sun, 17 Jul 2005 12:52:07 +0200 I found a better solution for the ^M problem in the porters handbook. Please apply the following patch: --- Makefile.patch begins here --- --- Makefile.orig Sun Jul 17 12:45:07 2005 +++ Makefile Sun Jul 17 12:46:35 2005 @@ -26,10 +26,8 @@ PLIST_FILES= bin/sap post-patch: -# gcc 2.95.4 does not like CR/LFs - @${FIND} ${WRKSRC} -type f -exec \ - ${REINPLACE_CMD} -E -e 's| -||' {} \; + @${FIND} -E ${WRKDIR} -type f -iregex ".*\.(c|cpp|h|txt)" -print0 | \ + ${XARGS} -0 ${REINPLACE_CMD} -e 's/[[:cntrl:]]*$$//' @${REINPLACE_CMD} -e 's|linux/soundcard\.h|sys/soundcard\.h|' \ ${WRKSRC}/main.cpp --- Makefile.patch ends here ----