ports/170837: [NEW PORT] games/vectoroids: Vector-based rock-shooting game similar to Asteroids
nemysis
nemysis at gmx.ch
Sun Sep 9 02:40:13 UTC 2012
The following reply was made to PR ports/170837; it has been noted by GNATS.
From: nemysis <nemysis at gmx.ch>
To: bug-followup at FreeBSD.org
Cc:
Subject: Re: ports/170837: [NEW PORT] games/vectoroids: Vector-based
rock-shooting game similar to Asteroids
Date: Sun, 9 Sep 2012 04:35:18 +0200
--MP_/Njf_8NvV0jf/sKhgaVfSThH
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
This is not new Port, but i have made all new.
--MP_/Njf_8NvV0jf/sKhgaVfSThH
Content-Type: text/x-patch
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename=vectoroids.diff
===> Generating patch
===> Viewing diff with more
diff -ruN --exclude=CVS /usr/ports/games/vectoroids/Makefile ./Makefile
--- /usr/ports/games/vectoroids/Makefile 2012-06-01 07:19:26.000000000 +0200
+++ ./Makefile 2012-08-24 16:04:43.000000000 +0200
@@ -1,33 +1,52 @@
-# New ports collection makefile for: vectoroids
-# Date created: 27 June 2003
-# Whom: Kris Kennaway <kris at FreeBSD.org>
+# New Ports collection makefile for: vectoroids
+# Date created: 2003-06-27
+# Whom: Kris Kennaway <kris at FreeBSD.org>
#
# $FreeBSD: ports/games/vectoroids/Makefile,v 1.16 2012/06/01 05:19:26 dinoex Exp $
#
PORTNAME= vectoroids
PORTVERSION= 1.1.0
-PORTREVISION= 13
+PORTREVISION= 14
CATEGORIES= games
-MASTER_SITES= ftp://ftp.billsgames.com/unix/x/vectoroids/src/
+MASTER_SITES= ftp://ftp.tuxpaint.org/unix/x/vectoroids/src/ \
+ ftp://ftp.billsgames.com/unix/x/vectoroids/src/
-MAINTAINER= ports at FreeBSD.org
-COMMENT= A vector-based, pretty, Asteroids clone
+MAINTAINER= nemysis at gmx.ch
+COMMENT= Vector-based rock-shooting game similar to Asteroids
+
+LICENSE= GPLv2
-USE_SDL= image mixer sdl
USE_GMAKE= yes
+USE_SDL= image mixer sdl
+
+PLIST_FILES= bin/${PORTNAME} \
+ share/pixmaps/${PORTNAME}.png
+
+MAN6= ${PORTNAME}.6
+
+PORTDATA= *
+PORTDOCS= CHANGES.txt README.txt
+
+.include <bsd.port.options.mk>
do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/vectoroids ${PREFIX}/bin
- @${MKDIR} ${DATADIR}/images
- ${INSTALL_DATA} ${WRKSRC}/data/images/* ${DATADIR}/images
- @${MKDIR} ${DATADIR}/music
- ${INSTALL_DATA} ${WRKSRC}/data/music/* ${DATADIR}/music
- @${MKDIR} ${DATADIR}/sounds
- ${INSTALL_DATA} ${WRKSRC}/data/sounds/* ${DATADIR}/sounds
-.if !defined(NOPORTDOCS)
- @${MKDIR} ${DOCSDIR}
- ${INSTALL_DATA} ${WRKSRC}/README.txt ${DOCSDIR}/README
+# Executable
+ ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
+
+# Data
+ (cd ${WRKSRC}/data && ${COPYTREE_SHARE} "images music sounds" ${DATADIR})
+
+# Pixmaps
+ ${INSTALL_DATA} ${WRKSRC}/data/images/icon.png ${PREFIX}/share/pixmaps/${PORTNAME}.png
+
+# Documentation
+.if ${PORT_OPTIONS:MDOCS}
+ ${MKDIR} ${DOCSDIR}
+. for f in ${PORTDOCS}
+ ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
+. endfor
.endif
+ ${INSTALL_MAN} ${WRKSRC}/${MAN6} ${MAN6PREFIX}/man/man6
.include <bsd.port.mk>
diff -ruN --exclude=CVS /usr/ports/games/vectoroids/files/patch-Makefile ./files/patch-Makefile
--- /usr/ports/games/vectoroids/files/patch-Makefile 2003-08-27 21:10:39.000000000 +0200
+++ ./files/patch-Makefile 1970-01-01 01:00:00.000000000 +0100
@@ -1,25 +0,0 @@
---- Makefile.orig Sun Apr 14 09:51:14 2002
-+++ Makefile Wed Aug 27 22:16:03 2003
-@@ -9,19 +9,18 @@
- # November 30, 2001 - April 13, 2002
-
-
--PREFIX=/usr/local
- MAN_PREFIX=$(PREFIX)
- BIN_PREFIX=$(PREFIX)/bin
- DATA_PREFIX=$(PREFIX)/share/vectoroids/
- JOY=YES
- TARGET_DEF=LINUX
--SDL_LIB=$(shell sdl-config --libs) $(MIXER) -lSDL_image
-+SDL_LIB=$(shell $(SDL_CONFIG) --libs) $(MIXER) -lSDL_image
-
- NOSOUNDFLAG=__SOUND
- MIXER=-lSDL_mixer
-
--CFLAGS=-Wall -Wno-long-long -pedantic -ansi -O2 \
-- $(shell sdl-config --cflags) -D$(NOSOUNDFLAG) \
-+CFLAGS+= \
-+ $(shell $(SDL_CONFIG) --cflags) -D$(NOSOUNDFLAG) \
- -DDATA_PREFIX=\"$(DATA_PREFIX)\" -DJOY_$(JOY) -D$(TARGET_DEF)
-
-
diff -ruN --exclude=CVS /usr/ports/games/vectoroids/pkg-descr ./pkg-descr
--- /usr/ports/games/vectoroids/pkg-descr 2003-06-27 11:11:21.000000000 +0200
+++ ./pkg-descr 2012-08-21 23:33:06.000000000 +0200
@@ -1,4 +1,6 @@
-Vectoroids is an SDL Asteroids clone, with quick game-play and pretty
-good graphics.
+Vectoroids is a vector-based rock-shooting game similar to the
+arcade classic "Asteroids". It is an SDL game based on the source for
+"Agendaroids", an X-Window game written for the Agenda VR3 Linux-based PDA
+written by the same author.
WWW: http://www.newbreedsoftware.com/vectoroids/
diff -ruN --exclude=CVS /usr/ports/games/vectoroids/pkg-plist ./pkg-plist
--- /usr/ports/games/vectoroids/pkg-plist 2003-08-27 21:10:38.000000000 +0200
+++ ./pkg-plist 1970-01-01 01:00:00.000000000 +0100
@@ -1,21 +0,0 @@
-bin/vectoroids
-%%PORTDOCS%%%%DOCSDIR%%/README
-%%DATADIR%%/images/icon.png
-%%DATADIR%%/images/redspot-e.bmp
-%%DATADIR%%/images/redspot.jpg
-%%DATADIR%%/music/decision.s3m
-%%DATADIR%%/music/decision.txt
-%%DATADIR%%/sounds/ast1.wav
-%%DATADIR%%/sounds/ast2.wav
-%%DATADIR%%/sounds/ast3.wav
-%%DATADIR%%/sounds/ast4.wav
-%%DATADIR%%/sounds/bullet.wav
-%%DATADIR%%/sounds/explode.wav
-%%DATADIR%%/sounds/extralife.wav
-%%DATADIR%%/sounds/gameover.wav
-%%DATADIR%%/sounds/thrust.wav
- at dirrm %%DATADIR%%/sounds
- at dirrm %%DATADIR%%/music
- at dirrm %%DATADIR%%/images
- at dirrm %%DATADIR%%
-%%PORTDOCS%%@dirrm %%DOCSDIR%%
===> Done
--MP_/Njf_8NvV0jf/sKhgaVfSThH--
More information about the freebsd-ports-bugs
mailing list