From owner-freebsd-emulation@FreeBSD.ORG Thu Aug 6 09:31:11 2009 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 052F6106564A for ; Thu, 6 Aug 2009 09:31:10 +0000 (UTC) (envelope-from tijl@ulyssis.org) Received: from mailrelay003.isp.belgacom.be (mailrelay003.isp.belgacom.be [195.238.6.53]) by mx1.freebsd.org (Postfix) with ESMTP id 406C78FC14 for ; Thu, 6 Aug 2009 09:31:10 +0000 (UTC) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AoQFAPc3ekpR8EUk/2dsb2JhbACBUoEw0ViEGAWBTA Received: from 36.69-240-81.adsl-dyn.isp.belgacom.be (HELO kalimero.kotnet.org) ([81.240.69.36]) by relay.skynet.be with ESMTP; 06 Aug 2009 11:01:54 +0200 Received: from kalimero.kotnet.org (kalimero.kotnet.org [127.0.0.1]) by kalimero.kotnet.org (8.14.3/8.14.3) with ESMTP id n768xNOI002174; Thu, 6 Aug 2009 10:59:23 +0200 (CEST) (envelope-from tijl@ulyssis.org) From: Tijl Coosemans To: freebsd-emulation@freebsd.org Date: Thu, 6 Aug 2009 10:59:21 +0200 User-Agent: KMail/1.9.10 References: <20090628082701.GA34665@triton.kn-bremen.de> <20090630163841.GA28338@triton.kn-bremen.de> <20090630184146.GA39346@triton.kn-bremen.de> In-Reply-To: <20090630184146.GA39346@triton.kn-bremen.de> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200908061059.22997.tijl@ulyssis.org> Cc: Juergen Lock Subject: Re: nspluginwrapper patch for testing (was: Re: flash10 vs f10) X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Aug 2009 09:31:11 -0000 On Tuesday 30 June 2009 20:41:46 Juergen Lock wrote: > New version that redirects possible error messages to /dev/null: > (in case limit is already lower than 32M...) > > Index: Makefile > =================================================================== > RCS file: /home/pcvs/ports/www/nspluginwrapper/Makefile,v > retrieving revision 1.13 > diff -u -p -r1.13 Makefile > --- Makefile 19 Mar 2009 17:28:49 -0000 1.13 > +++ Makefile 30 Jun 2009 16:31:29 -0000 > @@ -7,7 +7,7 @@ > > PORTNAME= nspluginwrapper > PORTVERSION= 1.2.2 > -PORTREVISION= 2 > +PORTREVISION= 3 > CATEGORIES= www linux emulators > MASTER_SITES= http://gwenole.beauchesne.info/projects/nspluginwrapper/files/ > DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${RPMFILE} > @@ -53,6 +53,8 @@ post-extract: > post-patch: > @${REINPLACE_CMD} -e 's,/usr/X11R6,${LOCALBASE},g' \ > ${WRKSRC}/src/npw-config.c > + ${RM} ${WRKSRC}/usr/lib/nspluginwrapper/i386/linux/npviewer.orig > + > post-install: > ${MKDIR} ${LIBDIR}/i386/linux > ${INSTALL_SCRIPT} ${WRKSRC}/usr/lib/nspluginwrapper/i386/linux/* \ > Index: files/patch-ulimit > @@ -0,0 +1,7 @@ > +Index: usr/lib/nspluginwrapper/i386/linux/npviewer > +@@ -1,4 +1,5 @@ > + #!/bin/sh > + TARGET_OS=linux > + TARGET_ARCH=i386 > ++ulimit -s 32768 2>/dev/null > + . /usr/local/lib/nspluginwrapper/noarch/npviewer Can this be committed before the 8.0 ports freeze?