Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 23 Feb 2000 11:40:01 -0800 (PST)
From:      "KATO Tsuguru" <tkato@prontomail.ne.jp>
To:        freebsd-ports@FreeBSD.org
Subject:   Re: ports/16933: Update games/oonsoo to Version 1.2
Message-ID:  <200002231940.LAA08286@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/16933; it has been noted by GNATS.

From: "KATO Tsuguru" <tkato@prontomail.ne.jp>
To: jsutton@bbcon.com.au
Cc: FreeBSD-gnats-submit@freebsd.org
Subject: Re: ports/16933: Update games/oonsoo to Version 1.2
Date: Thu, 24 Feb 2000 04:37:59 +0900

 > 	Version 1.1 of the tar file is no longer available. So here is a
 > 	patch to upgrade the port to 1.2. Can someone please apply some
 > 	time soon. thanks, Joel...
 
 Hello,
 
 It seems that upgraded port cannot work properly, because of typo 
 in original source. 
 
 I've tried to fix the patch. Please confirm.
 
 diff -urN /usr/ports/games/oonsoo/Makefile games/oonsoo/Makefile
 --- /usr/ports/games/oonsoo/Makefile	Mon Nov  1 20:15:09 1999
 +++ games/oonsoo/Makefile	Thu Feb 24 04:21:03 2000
 @@ -1,15 +1,15 @@
 -# New ports collection makefile for:  oonsoo 
 -# Version required:	1.1
 +# New ports collection makefile for:	oonsoo 
 +# Version required:	1.2
  # Date created:		23rd June, 1997
  # Whom:			Joel Sutton <jsutton@bbcon.com.au>
  #
  # $FreeBSD: ports/games/oonsoo/Makefile,v 1.7 1999/11/01 00:51:49 steve Exp $
  #
  
 -DISTNAME=	oonsoo-1.1
 +DISTNAME=	oonsoo-1.2
  CATEGORIES=	games
  MASTER_SITES=	ftp://ftp.eos.ncsu.edu/pub/bsvc/rohan/
 -EXTRACT_SUFX=	.tar.z
 +EXTRACT_SUFX=	.tgz
  
  MAINTAINER=	jsutton@bbcon.com.au
  
 @@ -19,6 +19,6 @@
  	@${CP} ${WRKSRC}/Makefile.Linux ${WRKSRC}/Makefile
  
  do-install:
 -		${INSTALL_PROGRAM} ${WRKSRC}/oonsoo ${PREFIX}/bin/
 +	${INSTALL_PROGRAM} ${WRKSRC}/oonsoo ${PREFIX}/bin
  
  .include <bsd.port.mk>
 diff -urN /usr/ports/games/oonsoo/files/md5 games/oonsoo/files/md5
 --- /usr/ports/games/oonsoo/files/md5	Mon Jun 30 20:42:17 1997
 +++ games/oonsoo/files/md5	Thu Feb 24 03:22:09 2000
 @@ -1 +1 @@
 -MD5 (oonsoo-1.1.tar.z) = f827df632b8f56d15a019977ece56343
 +MD5 (oonsoo-1.2.tgz) = 0c6ab323099d01be9b8bb4026754a85c
 diff -urN /usr/ports/games/oonsoo/patches/patch-aa games/oonsoo/patches/patch-aa
 --- /usr/ports/games/oonsoo/patches/patch-aa	Mon Jun 30 20:42:18 1997
 +++ games/oonsoo/patches/patch-aa	Thu Feb 24 03:56:15 2000
 @@ -1,15 +1,23 @@
 ---- Makefile.orig	Sat Jan  6 16:14:07 1996
 -+++ Makefile	Mon Jun 23 21:43:36 1997
 -@@ -12,10 +12,10 @@
 - CPPFLAGS=-O -ansi
 +--- Makefile.orig	Thu Feb 24 03:29:29 2000
 ++++ Makefile	Thu Feb 24 03:42:58 2000
 +@@ -6,16 +6,16 @@
 + ###############################################################################
 + 
 + ## C++ compiler to use
 +-CC=g++
 ++CC=${CXX}
 + 
 + ## C++ compiler flags
 +-CPPFLAGS=-O -ansi
 ++CPPFLAGS=${CXXFLAGS}
   
   ## System Includes
  -SYS_INCLUDES =
 -+SYS_INCLUDE= -I/usr/X11R6/include
 ++SYS_INCLUDES = -I${X11BASE}/include
   
   ## System Libraries
 --SYS_LIBS = -L/usr/X11/lib -lX11
 -+SYS_LIBS = -L/usr/X11R6/lib -lX11
 +-SYS_LIBS = -L/usr/X11R6/lib -lX11
 ++SYS_LIBS = -L${X11BASE}/lib -lX11
   
   ## Archiver
   AR=ar
 diff -urN /usr/ports/games/oonsoo/patches/patch-ab games/oonsoo/patches/patch-ab
 --- /usr/ports/games/oonsoo/patches/patch-ab	Thu Jan  1 09:00:00 1970
 +++ games/oonsoo/patches/patch-ab	Thu Feb 24 04:14:43 2000
 @@ -0,0 +1,34 @@
 +--- Makefile.common.orig	Tue Jan 11 08:36:39 2000
 ++++ Makefile.common	Thu Feb 24 04:14:30 2000
 +@@ -16,11 +16,11 @@
 + 
 + ######################### END OF CONFIGURATION ################################
 + 
 +-INDEPENDENT_PARMS = INCLUDES='$(SYS_INCLUDE)' LIBS='$(SYS_LIBS)'
 ++INDEPENDENT_PARMS = INCLUDES='$(SYS_INCLUDES)' LIBS='$(SYS_LIBS)'
 + 
 + MAKEPARMS = $(INDEPENDENT_PARMS) $(DEPENDENT_PARMS)
 + 
 +-INCLUDE = $(SYS_INCLUDE) -I./UI -I./Game -I./Commands -I./Sound \
 ++INCLUDE = $(SYS_INCLUDES) -I./UI -I./Game -I./Commands -I./Sound \
 + 	-I./SampleData -I./SpriteData -I./Tools
 + 
 + OBJS = main.o
 +@@ -33,7 +33,7 @@
 + 		echo ""; \
 + 		echo "------ Building: $$dir"; \
 + 		cd $$dir; \
 +-		make $(MAKEPARMS) MAKEPARMS="$(MAKEPARMS)" all; \
 ++		$(MAKE) $(MAKEPARMS) MAKEPARMS="$(MAKEPARMS)" all; \
 + 		if [ $$? -eq 0 ] ; \
 + 		then \
 + 			cd ..; \
 +@@ -48,7 +48,7 @@
 + 		echo ""; \
 + 		echo "------ Cleaning: $$dir"; \
 + 		cd $$dir; \
 +-		make $(MAKEPARMS) MAKEPARMS="$(MAKEPARMS)" clean; \
 ++		$(MAKE) $(MAKEPARMS) MAKEPARMS="$(MAKEPARMS)" clean; \
 + 		if [ $$? -eq 0 ] ; \
 + 		then \
 + 			cd ..; \
 diff -urN /usr/ports/games/oonsoo/pkg/DESCR games/oonsoo/pkg/DESCR
 --- /usr/ports/games/oonsoo/pkg/DESCR	Mon Nov  1 20:15:10 1999
 +++ games/oonsoo/pkg/DESCR	Thu Feb 24 03:23:56 2000
 @@ -8,3 +8,5 @@
  Share and enjoy,
  
  Joel...
 +
 +WWW: http://www4.ncsu.edu/~bwmott/www/oonsoo/
 
 
 
 -- 
 KATO Tsuguru / tkato@prontomail.ne.jp
            
 Sent by Japanese ProntoMail
 


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200002231940.LAA08286>