Bug 3625 - New port - connect4
Summary: New port - connect4
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-ports (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 1997-05-19 04:40 UTC by sutton
Modified: 1997-06-04 04:27 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description sutton 1997-05-19 04:40:00 UTC
That game which you drop the tokens into the vertical board.

Fix: 

ftp://ftp.FreeBSD.ORG/pub/FreeBSD/incoming/connect4.tar.gz

Please add this to the ports collection when/if you have a
moment. 

If there are any problems please email me. Thanks, Joel...
Comment 1 Satoshi Asami freebsd_committer freebsd_triage 1997-06-04 04:24:35 UTC
State Changed
From-To: open->closed


Thanks, committed.  Here are the changes: 

=== 
diff -ru connect4/Makefile connect4.new/Makefile 
--- connect4/Makefile	Sun May 18 19:56:25 1997 
+++ connect4.new/Makefile	Tue Jun  3 20:15:48 1997 
@@ -10,30 +10,26 @@ 
DISTNAME=	connect4 
PKGNAME=	connect4-3.2 
CATEGORIES=	games 
-MASTER_SITES=	ftp://scitsc.wlv.ac.uk/pub/infomagic/usenet/games/volume6/ 
+MASTER_SITES=	ftp://ftp.gu.kiev.ua/pub/cdrom5/games/volume6/  
+		ftp://scitsc.wlv.ac.uk/pub/infomagic/usenet/games/volume6/ 
+EXTRACT_SUFX=	"" 

MAINTAINER=	sutton@aardvark.apana.org.au 

-DEPENDS=		gunshar:${PORTSDIR}/archivers/gshar+gunshar 
-EXTRACT_SUFX=		"" 
+BUILD_DEPENDS=		gunshar:${PORTSDIR}/archivers/gshar+gunshar 
+ 
EXTRACT_CMD=		gunshar 
EXTRACT_BEFORE_ARGS=	"" 
+NO_WRKSUBDIR=	yes 
+MAN6=		connect4.6 

-# Directories 
-# 
MANDIR=		${PREFIX}/man/man 
LIBDIR=		${PREFIX}/lib 
-NO_WRKSUBDIR=	"yes" 
- 
-MAN6=connect4.6 

-# Distribution does not include an install target. So here it is. 
-# 
do-install: 
${INSTALL_PROGRAM} ${WRKSRC}/c4 ${PREFIX}/bin/connect4 
-		-${MKDIR} ${LIBDIR}/connect4 
+		${MKDIR} ${LIBDIR}/connect4 
${INSTALL_DATA} -m 666 /dev/null ${LIBDIR}/connect4/scores 
${INSTALL_MAN} ${FILESDIR}/connect4.6 ${MANDIR}6/ 

.include <bsd.port.mk> 
- 
diff -ru connect4/pkg/COMMENT connect4.new/pkg/COMMENT 
--- connect4/pkg/COMMENT	Tue Apr 15 05:39:57 1997 
+++ connect4.new/pkg/COMMENT	Tue Jun  3 20:07:52 1997 
@@ -1 +1 @@ 
-A curses version of the classic game. 
 No newline at end of file 
+A curses version of the classic game. 
=== 

I couldn't get to the UK site so I added another that I found by 
ftpsearch.  Also note that ${MKDIR} already includes "-p".