From ust@cert.siemens.de  Wed Dec 22 00:23:47 1999
Return-Path: <ust@cert.siemens.de>
Received: from goliath.siemens.de (goliath.siemens.de [194.138.37.131])
	by hub.freebsd.org (Postfix) with ESMTP id 017F214D66
	for <FreeBSD-gnats-submit@freebsd.org>; Wed, 22 Dec 1999 00:22:00 -0800 (PST)
	(envelope-from ust@cert.siemens.de)
Received: from mail1.siemens.de (mail1.siemens.de [139.23.33.14])
	by goliath.siemens.de (8.9.3/8.9.3) with ESMTP id OAA22416
	for <FreeBSD-gnats-submit@freebsd.org>; Tue, 21 Dec 1999 14:53:08 +0100 (MET)
Received: from mars.cert.siemens.de (ust.mchp.siemens.de [139.23.201.17])
	by mail1.siemens.de (8.9.3/8.9.3) with ESMTP id OAA01686
	for <FreeBSD-gnats-submit@freebsd.org>; Tue, 21 Dec 1999 14:53:07 +0100 (MET)
Received: from alaska.cert.siemens.de (alaska.cert.siemens.de [139.23.202.134])
	by mars.cert.siemens.de (8.9.3/8.9.3/Siemens CERT [ $Revision: 1.9 ]) with ESMTP id OAA15716
	for <FreeBSD-gnats-submit@freebsd.org>; Tue, 21 Dec 1999 14:53:07 +0100 (CET)
Received: (from ust@localhost)
	by alaska.cert.siemens.de (8.9.3/8.9.3/alaska [ $Revision: 1.2 ]) id NAA32990;
	Tue, 21 Dec 1999 13:53:07 GMT
	(envelope-from ust)
Message-Id: <199912211353.NAA32990@alaska.cert.siemens.de>
Date: Tue, 21 Dec 1999 13:53:07 GMT
From: Udo Schweigert <ust@cert.siemens.de>
Reply-To: ust@cert.siemens.de
To: FreeBSD-gnats-submit@freebsd.org
Subject: Build fails in ports/editors/staroffice5 with USE_CDROM
X-Send-Pr-Version: 3.2

>Number:         15622
>Category:       ports
>Synopsis:       Build fails in ports/editors/staroffice5 with USE_CDROM
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Wed Dec 22 00:30:01 PST 1999
>Closed-Date:    Thu Dec 23 12:03:45 PST 1999
>Last-Modified:  Sat Nov 18 23:30:25 GMT 2006
>Originator:     Udo Schweigert
>Release:        FreeBSD 3.4-STABLE i386
>Organization:
Siemens AG, ZT IK 3
>Environment:

FreeBSD 3.4-STABLE i386

>Description:

When doing make USE_CDROM=yes in /usr/ports/editors/staroffice5 I get

===>   staroffice-5.1a depends on executable: unzip - found
ln: illegal option -- v
usage: ln [-fs] file1 file2
       ln [-fs] file ... directory

>How-To-Repeat:

As described.

>Fix:

Apply this patch:

--- Makefile.orig	Wed Dec 15 00:14:28 1999
+++ Makefile	Tue Dec 21 14:47:13 1999
@@ -47,7 +47,7 @@
 .if defined(USE_CDROM)
 do-extract:
 	@${MKDIR} ${WRKSRC}/office51
-	@cd ${WRKSRC}/office51 && ${LN} -s -v /cdrom/linux/office51/* .
+	@cd ${WRKSRC}/office51 && ${LN} -s /cdrom/linux/office51/* .
 .endif
 
 post-extract:

>Release-Note:
>Audit-Trail:

From: Darren Wiebe <dkwiebe@heartland.ab.ca>
To: ust@cert.siemens.de
Cc: FreeBSD-gnats-submit@FreeBSD.ORG
Subject: Re: ports/15622: Build fails in ports/editors/staroffice5 with USE_CDROM
Date: Thu, 23 Dec 1999 08:34:24 -0700

 Looks great!  I just discovered yesterday that it had a problem, and had
 not made a diff up yet.  Thanks!   BTW. I have another small patch here
 which somebody sent me.  Can we just run it through here to??  It allows
 those of us with small /tmp directories.
 
 --- Makefile.orig       Tue Dec 21 09:29:46 1999
 +++ Makefile    Tue Dec 21 09:53:16 1999
 @@ -30,6 +30,7 @@
  NO_BUILD=      yes
  DIST_SUBDIR=   staroffice5
  WRKSRC=                ${WRKDIR}/so51inst
 +TEMPDIR=       /tmp
  
  .include <bsd.port.pre.mk>
  
 @@ -60,12 +61,12 @@
  
  do-install:
         @${ECHO} "${WRKDIR}/tmp" >> /compat/linux/etc/ld.so.conf
 -       @${ECHO} "/tmp/sv001.tmp" >> /compat/linux/etc/ld.so.conf
 -      
 @PATH=${PATH}:/tmp/sv001.tmp:/usr/compat/linux/tmp/sv001.tmp:/usr/compat/linux/tmp:/tmp
 -      
 @LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/tmp:${WRKDIR}/tmp:/usr/lib:/lib:/tmp:/usr/compat/linux/lib
 +       @${ECHO} "${TEMPDIR}/sv001.tmp" >> /compat/linux/etc/ld.so.conf
 +      
 @PATH=${PATH}:${TEMPDIR}/sv001.tmp:/usr/compat/linux/tmp/sv001.tmp:/usr/compat/linux/tmp:/tmp
 +      
 @LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${TEMPDIR}:${WRKDIR}/tmp:/usr/lib:/lib:/tmp:/usr/compat/linux/lib
         @/usr/compat/linux/sbin/ldconfig
         @${CAT} ${PKGDIR}/MESSAGE
 -       @-${WRKDIR}/so51inst/office51/setup /net
 +       @-TEMP=${TEMPDIR} ${WRKDIR}/so51inst/office51/setup /net
  
  # A seperate target as we need to be able to run this stuff
 independantly.
  post-install:
 
 Udo Schweigert wrote:
 > 
 > >Number:         15622
 > >Category:       ports
 > >Synopsis:       Build fails in ports/editors/staroffice5 with USE_CDROM
 > >Confidential:   no
 > >Severity:       non-critical
 > >Priority:       low
 > >Responsible:    freebsd-ports
 > >State:          open
 > >Quarter:
 > >Keywords:
 > >Date-Required:
 > >Class:          sw-bug
 > >Submitter-Id:   current-users
 > >Arrival-Date:   Wed Dec 22 00:30:01 PST 1999
 > >Closed-Date:
 > >Last-Modified:
 > >Originator:     Udo Schweigert
 > >Release:        FreeBSD 3.4-STABLE i386
 > >Organization:
 > Siemens AG, ZT IK 3
 > >Environment:
 > 
 > FreeBSD 3.4-STABLE i386
 > 
 > >Description:
 > 
 > When doing make USE_CDROM=yes in /usr/ports/editors/staroffice5 I get
 > 
 > ===>   staroffice-5.1a depends on executable: unzip - found
 > ln: illegal option -- v
 > usage: ln [-fs] file1 file2
 >        ln [-fs] file ... directory
 > 
 > >How-To-Repeat:
 > 
 > As described.
 > 
 > >Fix:
 > 
 > Apply this patch:
 > 
 > --- Makefile.orig       Wed Dec 15 00:14:28 1999
 > +++ Makefile    Tue Dec 21 14:47:13 1999
 > @@ -47,7 +47,7 @@
 >  .if defined(USE_CDROM)
 >  do-extract:
 >         @${MKDIR} ${WRKSRC}/office51
 > -       @cd ${WRKSRC}/office51 && ${LN} -s -v /cdrom/linux/office51/* .
 > +       @cd ${WRKSRC}/office51 && ${LN} -s /cdrom/linux/office51/* .
 >  .endif
 > 
 >  post-extract:
 > 
 > >Release-Note:
 > >Audit-Trail:
 > >Unformatted:
 > 
 > To Unsubscribe: send mail to majordomo@FreeBSD.org
 > with "unsubscribe freebsd-ports" in the body of the message
 
State-Changed-From-To: open->closed 
State-Changed-By: steve 
State-Changed-When: Wed Dec 22 13:22:23 PST 1999 
State-Changed-Why:  
Duplicate of ports/15623. 
State-Changed-From-To: closed->open  
State-Changed-By: cpiazza 
State-Changed-When: Wed Dec 22 15:47:02 PST 1999 
State-Changed-Why:  
15622 was closed as a duplicate of 15623, and vice versa.  Leave 
one of them open. 
State-Changed-From-To: open->closed 
State-Changed-By: steve 
State-Changed-When: Thu Dec 23 12:03:45 PST 1999 
State-Changed-Why:  
Duplicate of ports/15623. 

From: Darren Wiebe <dkwiebe@hagenhomes.com>
To: ust@cert.siemens.de
Cc: FreeBSD-gnats-submit@FreeBSD.ORG
Subject: Re: ports/15622: Build fails in ports/editors/staroffice5 with USE_CDROM
Date: Thu, 30 Dec 1999 11:49:58 -0700

 Just wanting to say that this patch does apparently fix the problem,
 somebody else confirmed it for me, I don't have the cdrom so...  I don't
 know what the reason was for the -v option...
 
 Darren Wiebe
 dkwiebe@hagenhomes.com
 
 Udo Schweigert wrote:
 > 
 > >Number:         15622
 > >Category:       ports
 > >Synopsis:       Build fails in ports/editors/staroffice5 with USE_CDROM
 > >Confidential:   no
 > >Severity:       non-critical
 > >Priority:       low
 > >Responsible:    freebsd-ports
 > >State:          open
 > >Quarter:
 > >Keywords:
 > >Date-Required:
 > >Class:          sw-bug
 > >Submitter-Id:   current-users
 > >Arrival-Date:   Wed Dec 22 00:30:01 PST 1999
 > >Closed-Date:
 > >Last-Modified:
 > >Originator:     Udo Schweigert
 > >Release:        FreeBSD 3.4-STABLE i386
 > >Organization:
 > Siemens AG, ZT IK 3
 > >Environment:
 > 
 > FreeBSD 3.4-STABLE i386
 > 
 > >Description:
 > 
 > When doing make USE_CDROM=yes in /usr/ports/editors/staroffice5 I get
 > 
 > ===>   staroffice-5.1a depends on executable: unzip - found
 > ln: illegal option -- v
 > usage: ln [-fs] file1 file2
 >        ln [-fs] file ... directory
 > 
 > >How-To-Repeat:
 > 
 > As described.
 > 
 > >Fix:
 > 
 > Apply this patch:
 > 
 > --- Makefile.orig       Wed Dec 15 00:14:28 1999
 > +++ Makefile    Tue Dec 21 14:47:13 1999
 > @@ -47,7 +47,7 @@
 >  .if defined(USE_CDROM)
 >  do-extract:
 >         @${MKDIR} ${WRKSRC}/office51
 > -       @cd ${WRKSRC}/office51 && ${LN} -s -v /cdrom/linux/office51/* .
 > +       @cd ${WRKSRC}/office51 && ${LN} -s /cdrom/linux/office51/* .
 >  .endif
 > 
 >  post-extract:
 > 
 > >Release-Note:
 > >Audit-Trail:
 > >Unformatted:
 > 
 > To Unsubscribe: send mail to majordomo@FreeBSD.org
 > with "unsubscribe freebsd-ports" in the body of the message
 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/15622: commit references a PR
Date: Sat, 18 Nov 2006 23:25:48 +0000 (UTC)

 miwi        2006-11-18 23:25:42 UTC
 
   FreeBSD ports repository
 
   Modified files:
     textproc             Makefile 
   Added files:
     textproc/ruby-erbscan Makefile distinfo pkg-descr pkg-plist 
   Log:
   erbscan is ERB::Compiler accelerator
   8 times faster than erb.rb(Ruby1.8.0)
   
   require "erb" # slow
   require "erb_fast" # FAST!!!!
   
   Author: MoonWolf <moonwolf@moonwolf.com>
   WWW:    http://raa.ruby-lang.org/project/erbscan/
   
   PR:             ports/15622
   Submitted by:   Shinsuke Matsui (<smatsui at karashi.org>)
   
   Revision  Changes    Path
   1.1077    +1 -0      ports/textproc/Makefile
   1.1       +40 -0     ports/textproc/ruby-erbscan/Makefile (new)
   1.1       +3 -0      ports/textproc/ruby-erbscan/distinfo (new)
   1.1       +8 -0      ports/textproc/ruby-erbscan/pkg-descr (new)
   1.1       +5 -0      ports/textproc/ruby-erbscan/pkg-plist (new)
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
