Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 Aug 2012 22:09:58 +0200
From:      nemysis <nemysis@gmx.ch>
To:        FreeBSD-gnats-submit@FreeBSD.org
Cc:        jgh@FreeBSD.org
Subject:   ports/170941: [NEW PORT] games/brickout: A ball-and-paddle game where it's your objective to destroy bricks
Message-ID:  <20120823201001.519C81065707@hub.freebsd.org>
Resent-Message-ID: <201208232020.q7NKK1VF060903@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         170941
>Category:       ports
>Synopsis:       [NEW PORT] games/brickout: A ball-and-paddle game where it's your objective to destroy bricks
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Thu Aug 23 20:20:01 UTC 2012
>Closed-Date:
>Last-Modified:
>Originator:     nemysis
>Release:        FreeBSD 9.0-RELEASE amd64
>Organization:
>Environment:
System: FreeBSD FreeBSD_Ports 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC
>Description:
Brick Out is based on the classic arcade game "Breakout."
The objective is to clear a screen of bricks by bouncing a ball against them.
You use a paddle to bounce the ball, and keep it on the screen.

WWW: http://www.newbreedsoftware.com/brickout/

Generated and tested manually, tested with port test and with RedPorts (all RELEASES), sent with FreeBSD Port Tools 0.99_6 (mode: new)
>How-To-Repeat:
>Fix:

--- .shar begins here ---
# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	brickout
#	brickout/Makefile
#	brickout/pkg-descr
#	brickout/distinfo
#	brickout/files
#	brickout/files/patch-Makefile
#
echo c - brickout
mkdir -p brickout > /dev/null 2>&1
echo x - brickout/Makefile
sed 's/^X//' >brickout/Makefile << 'b60913504648def465c6eb5f1aa66963'
X# New Ports collection makefile for:	brickout
X# Date created:         2012-08-23
X# Whom:                 nemysis@gmx.ch
X#
X# $FreeBSD$
X#
X
XPORTNAME=	brickout
XPORTVERSION=	2002.06.09
XCATEGORIES=	games
XMASTER_SITES=	ftp://ftp.tuxpaint.org/unix/agenda/brickout/src/
X
XMAINTAINER=	nemysis@gmx.ch
XCOMMENT=	A ball-and-paddle game where it's your objective to destroy bricks
X
XLICENSE=	GPLv2
X
XUSE_SDL=	image mixer sdl
XUSE_GMAKE=	yes
X
XPLIST_FILES=	bin/${PORTNAME} \
X		share/pixmaps/${PORTNAME}.png
X
XPORTDATA=	*
XPORTDOCS=	CHANGES.txt README.txt TODO.txt
X
X.include <bsd.port.options.mk>
X
Xdo-install:
X# Executable
X	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/
X
X# Data
X.  for d in images images-sdl music sounds
X	@(cd ${WRKSRC} && ${COPYTREE_SHARE} ${d} ${DATADIR})
X.  endfor
X
X# Pixmaps
X	${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.png ${PREFIX}/share/pixmaps/
X
X# Documentation
X.if ${PORT_OPTIONS:MDOCS}
X	${MKDIR} ${DOCSDIR}
X.  for f in ${PORTDOCS}
X	${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
X.  endfor
X.endif
X
X.include <bsd.port.mk>
b60913504648def465c6eb5f1aa66963
echo x - brickout/pkg-descr
sed 's/^X//' >brickout/pkg-descr << '312c414178a3006939f5ed1c40b50dcb'
XBrick Out is based on the classic arcade game "Breakout."
XThe objective is to clear a screen of bricks by bouncing a ball against them.
XYou use a paddle to bounce the ball, and keep it on the screen.
X
XWWW: http://www.newbreedsoftware.com/brickout/
312c414178a3006939f5ed1c40b50dcb
echo x - brickout/distinfo
sed 's/^X//' >brickout/distinfo << 'eca53686fb155717a6b280cbb3d6c736'
XSHA256 (brickout-2002.06.09.tar.gz) = 56e0abb8697b62949ab085419a3b6f83dd13db02d322759f4cd6c5e5286c2240
XSIZE (brickout-2002.06.09.tar.gz) = 120554
eca53686fb155717a6b280cbb3d6c736
echo c - brickout/files
mkdir -p brickout/files > /dev/null 2>&1
echo x - brickout/files/patch-Makefile
sed 's/^X//' >brickout/files/patch-Makefile << 'cf1e28542809aadd09f8d71f0cc95708'
X--- Makefile.orig	2002-06-10 09:27:19.000000000 +0200
X+++ Makefile	2012-08-23 13:21:01.000000000 +0200
X@@ -10,11 +10,11 @@
X CC=$(PROGPREFIX)gcc
X STRIP=$(PROGPREFIX)strip
X 
X-CFLAGS=-O2 -Wall -I/usr/include $(EXTRA_CFLAGS) -DIMAGEDIR=\"$(IMAGEDIR)\" \
X+CFLAGS+=-I/usr/local/include $(EXTRA_CFLAGS) -DIMAGEDIR=\"$(IMAGEDIR)\" \
X 	-DSOUNDDIR=\"$(SOUNDDIR)\" -DMUSICDIR=\"$(MUSICDIR)\"
X XLIB=-L$(LIBDIR) -lX11 -lXpm
X 
X-IMAGEDIR=images/
X+IMAGEDIR=/usr/local/share/brickout/images/
X IMAGES=$(IMAGEDIR)ball.xpm \
X   $(IMAGEDIR)brick1.xpm \
X   $(IMAGEDIR)brick2.xpm \
X@@ -43,15 +43,15 @@
X THE_IMAGES=$(IMAGES)
X 
X 
X-all:
X-	@echo "Pick a target:"
X-	@echo "--------------"
X-	@echo "host-x        - X-Window version for host environment (this computer)"
X-	@echo "host-sdl      - libSDL version for host envionrment"
X-	@echo "zaurus        - Qtopia/libSDL version for Sharp Zaurus PDA"
X-	@echo "mips-snow     - X-Window version for SNOW MIPS (Agenda VR3 PDA - newer Kernel)"
X-	@echo "mips-svr4     - X-Window version for SVR4 MIPS (Agenda VR3 PDA - older Kernel)"
X-	@echo
X+all:    host-sdl
X+#	@echo "Pick a target:"
X+#	@echo "--------------"
X+#	@echo "host-x        - X-Window version for host environment (this computer)"
X+#	@echo "host-sdl      - libSDL version for host envionrment"
X+#	@echo "zaurus        - Qtopia/libSDL version for Sharp Zaurus PDA"
X+#	@echo "mips-snow     - X-Window version for SNOW MIPS (Agenda VR3 PDA - newer Kernel)"
X+#	@echo "mips-svr4     - X-Window version for SVR4 MIPS (Agenda VR3 PDA - older Kernel)"
X+#	@echo
X 
X host-x:
X 	make \
X@@ -61,14 +61,14 @@
X 
X host-sdl:
X 	make \
X-		TARGET=brickout.sdl brickout.sdl \
X+		TARGET=brickout brickout \
X 		PROGPREFIX= \
X 		XLIB="$(shell sdl-config --libs) -lSDL_mixer" \
X 		LIBDIR= \
X 		EXTRA_CFLAGS="-DUSE_SDL $(shell sdl-config --cflags)" \
X-		IMAGEDIR=images-sdl/ \
X-		SOUNDDIR=sounds/ \
X-		MUSICDIR=music/ \
X+		IMAGEDIR=/usr/local/share/brickout/images-sdl/ \
X+		SOUNDDIR=/usr/local/share/brickout/sounds/ \
X+		MUSICDIR=/usr/local/share/brickout/music/ \
X 		THE_IMAGES=
X 
X zaurus:
cf1e28542809aadd09f8d71f0cc95708
exit
--- .shar ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20120823201001.519C81065707>