summaryrefslogtreecommitdiff
path: root/games/bsdtris/files
diff options
context:
space:
mode:
authorEdwin Groothuis <edwin@FreeBSD.org>2003-09-04 01:15:15 +0000
committerEdwin Groothuis <edwin@FreeBSD.org>2003-09-04 01:15:15 +0000
commitda39dccd552d2869080420ae0aaa2e6a419bbaa9 (patch)
tree46010df73812550a3e1d2754ed3e6221ebb006dd /games/bsdtris/files
parentport update: www/dansguardian to version 2.6.1-3 (diff)
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>
Notes
Notes: svn path=/head/; revision=88470
Diffstat (limited to 'games/bsdtris/files')
-rw-r--r--games/bsdtris/files/mkbsdtristarball11
-rw-r--r--games/bsdtris/files/mktetristarball12
2 files changed, 11 insertions, 12 deletions
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