From owner-freebsd-ports Fri Jun 23 6: 0:17 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D62F537C27A for ; Fri, 23 Jun 2000 06:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA48905; Fri, 23 Jun 2000 06:00:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 3B33E37B64A; Fri, 23 Jun 2000 05:53:35 -0700 (PDT) Message-Id: <20000623125335.3B33E37B64A@hub.freebsd.org> Date: Fri, 23 Jun 2000 05:53:35 -0700 (PDT) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/19469: Update port: patchkit for using MASTER_SITE_SUNSITE Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 19469 >Category: ports >Synopsis: Update port: patchkit for using MASTER_SITE_SUNSITE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jun 23 06:00:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.0-RELEASE i386 >Organization: >Environment: >Description: - Use MASTER_SITE_SUNSITE to MASTER_SITES >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # audio_wavplay.patch # benchmarks_ubench.patch # comms_sredird.patch # lang_objc.patch # misc_alevt.patch # misc_whichman.patch # www_linbot.patch # x11-fm_xnc.patch # echo x - audio_wavplay.patch sed 's/^X//' >audio_wavplay.patch << 'END-of-audio_wavplay.patch' Xdiff -urN /usr/ports/audio/wavplay/Makefile audio/wavplay/Makefile X--- /usr/ports/audio/wavplay/Makefile Thu Jun 8 01:07:54 2000 X+++ audio/wavplay/Makefile Thu Jun 22 01:31:19 2000 X@@ -8,7 +8,8 @@ X PORTNAME= wavplay X PORTVERSION= 1.4 X CATEGORIES= audio X-MASTER_SITES= http://metalab.unc.edu/pub/Linux/apps/sound/players/ X+MASTER_SITES= ${MASTER_SITE_SUNSITE} X+MASTER_SITE_SUBDIR= apps/sound/players X X MAINTAINER= greg@rosevale.com.au X Xdiff -urN /usr/ports/audio/wavplay/patches/patch-aa audio/wavplay/patches/patch-aa X--- /usr/ports/audio/wavplay/patches/patch-aa Thu Jun 8 01:07:54 2000 X+++ audio/wavplay/patches/patch-aa Thu Jun 22 01:52:22 2000 X@@ -1,5 +1,5 @@ X---- Makefile.orig Sat Dec 4 02:06:42 1999 X-+++ Makefile Fri May 19 17:52:28 2000 X+--- Makefile.orig Sat Dec 4 09:06:42 1999 X++++ Makefile Thu Jun 22 01:50:48 2000 X @@ -38,7 +38,7 @@ X #---------------------------------------------------------------------- X # If you are running a 386 you should comment this line out. X@@ -23,7 +23,7 @@ X # placed (wavplay, wavrec, and xltwavplay) X # X -INSTDIR=/usr/local/bin X-+PREFIX=/usr/local X++PREFIX?=/usr/local X +INSTDIR=$(PREFIX)/bin X +MANDIR=$(PREFIX)/man/man1 X X@@ -70,21 +70,12 @@ X X #---------------------------------------------------------------------- X # Semaphore IPC Key for the Play & Record locks (Default is 0x33333333) X-@@ -155,7 +163,7 @@ X- # Only for unusual sites would you change this: the name of the X- # install program. (has no impact if you choose to manually install) X- # X--INSTALL=install X-+INSTALL=install -c X- X- #---------------------------------------------------------------------- X- # If you have any custom include directories, like for X or X @@ -163,19 +171,19 @@ X # this should be unecessary if the appropriate symlinks are X # installed). X # X -#CUSTINCL= -I/usr/X11R6/include/X11 -I/usr/local/lesstif/include/Xm X-+#CUSTINCL= -I/usr/X11R6/include/X11 -I/usr/local/lesstif/include/Xm -I/usr/X11R6/include X++#CUSTINCL= -I${X11BASE}/include/X11 -I${X11BASE}/include/Xm -I/${X11BASE}/include X X #---------------------------------------------------------------------- X # Normally, you shouldn't need to change anything beyond this point: X@@ -130,7 +121,7 @@ X - @[ ! -d "$(INSTDIR)" ] && echo "You do not have a directory $(INSTDIR); Check INSTDIR in make file." && exit 13 || : X - $(INSTALL) -o root -g root -m 555 wavplay $(INSTDIR) X + mkdir -p $(INSTDIR) X-+ $(INSTALL) -s -o root -g wheel -m 555 wavplay $(INSTDIR) X++ ${BSD_INSTALL_PROGRAM} wavplay $(INSTDIR) X rm -f $(INSTDIR)/wavrec X ln $(INSTDIR)/wavplay $(INSTDIR)/wavrec X - @[ ! -z "$(SCHED_PRIORITY)" ] && echo "*** DO 'make setuid_root' IF YOU WANT REAL TIME SCHEDULING ***" || : X@@ -138,7 +129,7 @@ X X +install_man: wavplay.1 X + mkdir -p $(MANDIR) X-+ $(INSTALL) -o root -g wheel -m 444 wavplay.1 $(MANDIR) X++ ${BSD_INSTALL_MAN} wavplay.1 $(MANDIR) X + X xltwavplay_test: wavplay xltwavplay X WAVPLAYPATH=./wavplay ./xltwavplay X@@ -148,10 +139,10 @@ X X install_xltwavplay: xltwavplay X - $(INSTALL) -o root -g root -m 555 xltwavplay $(INSTDIR) X-+ $(INSTALL) -o root -g wheel -m 555 xltwavplay $(INSTDIR) X++ ${BSD_INSTALL_PROGRAM} xltwavplay $(INSTDIR) X @[ ! -z "$(USERES)" ] \ X - && $(INSTALL) -o root -g root -m 555 xltwavplay.res $(RESDIR)/xltwavplay \ X-+ && $(INSTALL) -o root -g wheel -m 555 xltwavplay.res $(RESDIR)/xltwavplay \ X++ && ${BSD_INSTALL_DATA} xltwavplay.res $(RESDIR)/xltwavplay \ X && ls -dlL $(RESDIR)/xltwavplay/xltwavplay.res \ X || rm -f $(RESDIR)/xltwavplay X END-of-audio_wavplay.patch echo x - benchmarks_ubench.patch sed 's/^X//' >benchmarks_ubench.patch << 'END-of-benchmarks_ubench.patch' Xdiff -urN /usr/ports/benchmarks/ubench/Makefile benchmarks/ubench/Makefile X--- /usr/ports/benchmarks/ubench/Makefile Tue Jun 6 22:36:39 2000 X+++ benchmarks/ubench/Makefile Thu Jun 22 19:45:56 2000 X@@ -8,8 +8,8 @@ X PORTNAME= ubench X PORTVERSION= 0.31 X CATEGORIES= benchmarks X-MASTER_SITES= ftp://metalab.unc.edu/pub/Linux/system/benchmark/ \ X- http://linuxberg.concepts.nl/files/console/system/ X+MASTER_SITES= ${MASTER_SITE_SUNSITE} X+MASTER_SITE_SUBDIR= system/benchmark X X MAINTAINER= leeym@cae.ce.ntu.edu.tw X END-of-benchmarks_ubench.patch echo x - comms_sredird.patch sed 's/^X//' >comms_sredird.patch << 'END-of-comms_sredird.patch' Xdiff -urN /usr/ports/comms/sredird/Makefile comms/sredird/Makefile X--- /usr/ports/comms/sredird/Makefile Fri May 19 19:11:11 2000 X+++ comms/sredird/Makefile Thu Jun 22 19:47:30 2000 X@@ -8,12 +8,13 @@ X PORTNAME= sredird X PORTVERSION= 1.1.7 X CATEGORIES= comms X-MASTER_SITES= http://metalab.unc.edu/pub/Linux/system/serial/ X+MASTER_SITES= ${MASTER_SITE_SUNSITE} X+MASTER_SITE_SUBDIR= system/serial X X MAINTAINER= sobomax@FreeBSD.org X X do-build: X- ${CC} ${CFLAGS} -g -Wall -o ${WRKSRC}/sredird ${WRKSRC}/sredird.c X+ ${CC} ${CFLAGS} -Wall -o ${WRKSRC}/sredird ${WRKSRC}/sredird.c X X do-install: X ${INSTALL_PROGRAM} ${WRKSRC}/sredird ${PREFIX}/libexec END-of-comms_sredird.patch echo x - lang_objc.patch sed 's/^X//' >lang_objc.patch << 'END-of-lang_objc.patch' Xdiff -urN /usr/ports/lang/objc/Makefile lang/objc/Makefile X--- /usr/ports/lang/objc/Makefile Fri Jun 9 21:11:18 2000 X+++ lang/objc/Makefile Thu Jun 22 19:51:26 2000 X@@ -8,8 +8,9 @@ X PORTNAME= objc X PORTVERSION= 3.1.5 X CATEGORIES= lang X-MASTER_SITES= http://metalab.unc.edu/pub/Linux/devel/lang/objc/ \ X+MASTER_SITES= ${MASTER_SITE_SUNSITE} \ X http://people.FreeBSD.org/~chuckr/ X+MASTER_SITE_SUBDIR= devel/lang/objc X DISTFILES= objc-3.1.5-bootstrap.tar.gz objc-3.1.5.tar.gz X X MAINTAINER= chuckr@freebsd.org X@@ -34,7 +35,7 @@ X .include X X pre-configure: X- (cd $(WRKDIR)/$(DISTNAME)-bootstrap;./configure --prefix=$(WRKDIR);make;make install) X+ (cd $(WRKDIR)/$(DISTNAME)-bootstrap;./configure --prefix=$(WRKDIR);${MAKE};${MAKE} install) X X post-build: X $(ECHO) "Building additional libraries (boehm-gc compatibility)" X@@ -44,7 +45,7 @@ X $(MKDIR) $(PREFIX)/share/doc/objc X $(MKDIR) $(PREFIX)/share/doc/objc/examples X $(MKDIR) $(PREFIX)/share/doc/objc/html X- tar -cf - -C $(WRKSRC)/examples . | tar xpf - -C $(PREFIX)/share/doc/objc/examples X- tar -cf - -C $(WRKSRC)/html . | tar xpf - -C $(PREFIX)/share/doc/objc/html X+ ${TAR} -cf - -C $(WRKSRC)/examples . | ${TAR} xpf - -C $(PREFIX)/share/doc/objc/examples X+ ${TAR} -cf - -C $(WRKSRC)/html . | ${TAR} xpf - -C $(PREFIX)/share/doc/objc/html X X .include END-of-lang_objc.patch echo x - misc_alevt.patch sed 's/^X//' >misc_alevt.patch << 'END-of-misc_alevt.patch' Xdiff -urN /usr/ports/misc/alevt/Makefile misc/alevt/Makefile X--- /usr/ports/misc/alevt/Makefile Sat Apr 15 00:28:08 2000 X+++ misc/alevt/Makefile Thu Jun 22 19:52:34 2000 X@@ -8,8 +8,9 @@ X PORTNAME= alevt X PORTVERSION= 1.5.1 X CATEGORIES= misc X-MASTER_SITES= http://user.exit.de/froese/alevt/ \ X- ftp://metalab.unc.edu/pub/Linux/apps/video/ X+MASTER_SITES= ${MASTER_SITE_SUNSITE} \ X+ http://user.exit.de/froese/alevt/ X+MASTER_SITE_SUBDIR= apps/video X X MAINTAINER= roger@freebsd.org X Xdiff -urN /usr/ports/misc/alevt/pkg/DESCR misc/alevt/pkg/DESCR X--- /usr/ports/misc/alevt/pkg/DESCR Thu Aug 19 00:08:37 1999 X+++ misc/alevt/pkg/DESCR Thu Jun 22 20:03:15 2000 X@@ -8,5 +8,4 @@ X manual, and more. X There's also a program to get the time from teletext. X X- The primary site of AleVT is http://user.exit.de/froese X- Also uploaded to ftp://metalab.unc.edu/pub/Linux/apps/video X+WWW: http://user.exit.de/froese END-of-misc_alevt.patch echo x - misc_whichman.patch sed 's/^X//' >misc_whichman.patch << 'END-of-misc_whichman.patch' Xdiff -urN /usr/ports/misc/whichman/Makefile misc/whichman/Makefile X--- /usr/ports/misc/whichman/Makefile Tue Jun 6 23:13:30 2000 X+++ misc/whichman/Makefile Thu Jun 22 19:53:36 2000 X@@ -8,10 +8,9 @@ X PORTNAME= whichman X PORTVERSION= 1.9 X CATEGORIES= misc X-MASTER_SITES= ftp://sunsite.unc.edu/pub/Linux/apps/doctools/ \ X- http://www.metalab.unc.edu/pub/Linux/apps/doctools/ \ X- http://www.linuxfocus.org/~guido.socher/ \ X- http://linuxberg.concepts.nl/files/console/system/ X+MASTER_SITES= ${MASTER_SITE_SUNSITE} \ X+ http://www.linuxfocus.org/~guido.socher/ X+MASTER_SITE_SUBDIR= apps/doctools X X MAINTAINER= leeym@cae.ce.ntu.edu.tw X END-of-misc_whichman.patch echo x - www_linbot.patch sed 's/^X//' >www_linbot.patch << 'END-of-www_linbot.patch' Xdiff -urN /usr/ports/www/linbot/Makefile www/linbot/Makefile X--- /usr/ports/www/linbot/Makefile Sat Apr 22 04:52:08 2000 X+++ www/linbot/Makefile Thu Jun 22 19:54:52 2000 X@@ -8,7 +8,8 @@ X PORTNAME= linbot X PORTVERSION= 1.0 X CATEGORIES= www python X-MASTER_SITES= http://metalab.unc.edu/pub/Linux/apps/www/misc/ X+MASTER_SITES= ${MASTER_SITE_SUNSITE} X+MASTER_SITE_SUBDIR= apps/www/misc X EXTRACT_SUFX= .tgz X X MAINTAINER= billf@FreeBSD.org END-of-www_linbot.patch echo x - x11-fm_xnc.patch sed 's/^X//' >x11-fm_xnc.patch << 'END-of-x11-fm_xnc.patch' Xdiff -urN /usr/ports/x11-fm/xnc/Makefile x11-fm/xnc/Makefile X--- /usr/ports/x11-fm/xnc/Makefile Mon Apr 10 21:06:42 2000 X+++ x11-fm/xnc/Makefile Thu Jun 22 19:55:58 2000 X@@ -8,9 +8,9 @@ X PORTNAME= xnc X PORTVERSION= 4.2.1 X CATEGORIES= x11-fm X-MASTER_SITES= http://www.xnc.dubna.su/src/ \ X- ftp://ftp.chg.ru/pub/Linux/sunsite/X11/desktop/ \ X- ftp://sunsite.unx.edu/pub/Linux/X11/desktop/ X+MASTER_SITES= ${MASTER_SITE_SUNSITE} \ X+ http://www.xnc.dubna.su/src/ X+MASTER_SITE_SUBDIR= X11/desktop X DISTNAME= ${PKGNAME}.src X X MAINTAINER= dima@Chg.RU END-of-x11-fm_xnc.patch exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message