diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-09-04 01:15:15 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-09-04 01:15:15 +0000 |
commit | da39dccd552d2869080420ae0aaa2e6a419bbaa9 (patch) | |
tree | 46010df73812550a3e1d2754ed3e6221ebb006dd /games/bsdtris | |
parent | 6fabfb19923d5cf06e63f2a3ff4ec3007dcc31d3 (diff) | |
download | ports-da39dccd552d2869080420ae0aaa2e6a419bbaa9.tar.gz ports-da39dccd552d2869080420ae0aaa2e6a419bbaa9.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>
Notes
Notes:
svn path=/head/; revision=88470
Diffstat (limited to 'games/bsdtris')
-rw-r--r-- | games/bsdtris/Makefile | 4 | ||||
-rw-r--r-- | games/bsdtris/distinfo | 2 | ||||
-rw-r--r-- | games/bsdtris/files/mkbsdtristarball | 11 | ||||
-rw-r--r-- | games/bsdtris/files/mktetristarball | 12 |
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 |