freebsd-ports/games/bsdtris/files/mkbsdtristarball
Edwin Groothuis da39dccd55 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>
2003-09-04 01:15:15 +00:00

11 lines
606 B
Bash

#!/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