Add grubinvaders, a multi-boot compliant space invaders-type game.

This commit is contained in:
Chris D. Faulhaber 2002-04-14 00:36:20 +00:00
parent 66c93b22ab
commit 03a7b61114
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=57675
8 changed files with 65 additions and 0 deletions

View file

@ -115,6 +115,7 @@
SUBDIR += grande
SUBDIR += greed
SUBDIR += gru
SUBDIR += grubinvaders
SUBDIR += gshisen
SUBDIR += gtetrinet
SUBDIR += gtkabale

View file

@ -0,0 +1,30 @@
# New ports collection makefile for: grubinvaders
# Date created: 13 April 2002
# Whom: Chris D. Faulhaber <jedgar@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= grubinvaders
PORTVERSION= 1.0.0
CATEGORIES= games
MASTER_SITES= http://www.erikyyy.de/invaders/
DISTNAME= invaders-${PORTVERSION}
MAINTAINER= jedgar@FreeBSD.org
RUN_DEPENDS= grub:${PORTSDIR}/sysutils/grub
MAKEFILE= ${FILESDIR}/Makefile
ONLY_FOR_ARCHS= i386
STRIP=
WRKSRC= ${WRKDIR}/invaders
ALL_TARGET= clean all
do-install:
${MKDIR} ${PREFIX}/share/grubinvaders
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/grubinvaders
${INSTALL_PROGRAM} ${WRKSRC}/invaders ${PREFIX}/share/grubinvaders
@${SED} -e 's,%%PREFIX%%,${PREFIX},g' ${PKGMESSAGE}
.include <bsd.port.mk>

View file

@ -0,0 +1 @@
MD5 (invaders-1.0.0.tar.gz) = c5efef690f8c7f3c667cabb696528ab9

View file

@ -0,0 +1,20 @@
# $FreeBSD$
CFLAGS+=-fno-builtin -nostdinc -I. -Wall -Werror
LDFLAGS+=-nostdlib -Wl,-N -Wl,-Ttext -Wl,100000
PROG= invaders
OBJS= boot.o common.o kernel.o keyboard.o video.o game.o sound.o \
delay.o memory.o
all: ${PROG}
${PROG}: ${PROG}.exec
objcopy -O binary invaders.exec invaders
${PROG}.exec: ${OBJS}
${CC} ${LDFLAGS} -o ${PROG}.exec ${OBJS}
clean:
rm -f ${OBJS} ${PROG}

View file

@ -0,0 +1 @@
This is grubinvaders, a multi boot compliant game for i386

View file

@ -0,0 +1,3 @@
grubinvaders, a multi boot compliant game for i386.
WWW: http://www.erikyyy.de/invaders/

View file

@ -0,0 +1,6 @@
------------------------------------------------------------
See %%PREFIX%%/share/grubinvaders/README for instructions on
installing grubinvaders with grub.
------------------------------------------------------------

View file

@ -0,0 +1,3 @@
share/grubinvaders/README
share/grubinvaders/invaders
@dirrm share/grubinvaders