aboutsummaryrefslogtreecommitdiffstats
path: root/games/bsdtris
diff options
context:
space:
mode:
authoredwin <edwin@FreeBSD.org>2003-09-04 09:15:15 +0800
committeredwin <edwin@FreeBSD.org>2003-09-04 09:15:15 +0800
commit2a421598348e25941cd2eca5c8c272e9530188d2 (patch)
tree4da046da61cb46918cd7abc8cac63b861faef68c /games/bsdtris
parent6984fa75ef1aa047243e1f4e041606a7c9186b7f (diff)
downloadfreebsd-ports-gnome-2a421598348e25941cd2eca5c8c272e9530188d2.tar.gz
freebsd-ports-gnome-2a421598348e25941cd2eca5c8c272e9530188d2.tar.zst
freebsd-ports-gnome-2a421598348e25941cd2eca5c8c272e9530188d2.zip
Update games/bsdtris port
This update consists mainly of removing strdup/sprintf/strcpy and license change. Commiter, please grab the tarball here: http://j.xpert.com/FreeBSD/bsdtris-01092003.tar.gz Please put it up somewhere stable. Don't fix the MASTERSITE to point to this address. The last commiter to handle this was edwin, and it's his address that's listed in the Makefile. Tarball name changed from tetris- to bsdtris, and changes to the tarball making script included. There were reports about failure to run in several environments. I could not reproduce those, but I intend to see if they are magically fixed by this update. PR: ports/56272 Submitted by: Yonatan@xpert.com <Yonatan@xpert.com>
Diffstat (limited to 'games/bsdtris')
-rw-r--r--games/bsdtris/Makefile4
-rw-r--r--games/bsdtris/distinfo2
-rw-r--r--games/bsdtris/files/mkbsdtristarball11
-rw-r--r--games/bsdtris/files/mktetristarball12
4 files changed, 14 insertions, 15 deletions
diff --git a/games/bsdtris/Makefile b/games/bsdtris/Makefile
index af385039f70c..17d371db2cbf 100644
--- a/games/bsdtris/Makefile
+++ b/games/bsdtris/Makefile
@@ -6,10 +6,10 @@
#
PORTNAME= bsdtris
-PORTVERSION= 1
+PORTVERSION= 1.1
CATEGORIES= games
MASTER_SITES= http://www.mavetju.org/download/adopted/
-DISTNAME= ${PORTNAME}-01042003
+DISTNAME= ${PORTNAME}-01092003
MAINTAINER= yonatan@xpert.com
COMMENT= BSD version of Text-based tetris game
diff --git a/games/bsdtris/distinfo b/games/bsdtris/distinfo
index ac0b51e7db8d..0424ff326ebd 100644
--- a/games/bsdtris/distinfo
+++ b/games/bsdtris/distinfo
@@ -1 +1 @@
-MD5 (bsdtris-01042003.tar.gz) = 48447120fc2b371b91184fe1cc61dd47
+MD5 (bsdtris-01092003.tar.gz) = 9881e57405dd069df26582a5caacb241
diff --git a/games/bsdtris/files/mkbsdtristarball b/games/bsdtris/files/mkbsdtristarball
new file mode 100644
index 000000000000..7d3ee0baaa31
--- /dev/null
+++ b/games/bsdtris/files/mkbsdtristarball
@@ -0,0 +1,11 @@
+#!/bin/sh
+touch test || exit 1 # i need write perms
+rm test || exit 1 # if this fails - you'r in limbo
+echo enter "anoncvs"
+cvs -d :pserver:anoncvs@anoncvs1.usa.openbsd.org:/cvs login || exit 1 # please login again
+cvs -d :pserver:anoncvs@anoncvs1.usa.openbsd.org:/cvs get src/games/tetris || exit 1 # it's important this succeeds
+cvs -d :pserver:anoncvs@anoncvs1.usa.openbsd.org:/cvs logout # don't care if this fails
+rm -rf ./src/games/tetris/CVS/ || exit 1
+rm -rf ./src/games/tetris/Makefile || exit 1
+tar -czpf bsdtris-`date "+%d%m%Y"`.tar.gz -C ./src/games/tetris/ . || exit 1
+rm -rf ./src
diff --git a/games/bsdtris/files/mktetristarball b/games/bsdtris/files/mktetristarball
deleted file mode 100644
index e406fa228aad..000000000000
--- a/games/bsdtris/files/mktetristarball
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-touch test || exit 1 # i need write perms
-rm test || exit 1 # if this fails - you'r in limbo
-export CVSROOT=:pserver:anoncvs@anoncvs1.usa.openbsd.org:/cvs
-echo enter "anoncvs"
-cvs login || exit 1 # please login again
-cvs get src/games/tetris || exit 1 # it's important this succeeds
-cvs logout # don't care if this fails
-rm -rf ./src/games/tetris/CVS/ || exit 1
-rm -rf ./src/games/tetris/Makefile || exit 1
-tar -czpf tetris-`date "+%d%m%Y"`.tar.gz -C ./src/games/tetris/ . || exit 1
-rm -rf ./src