Add grubinvaders, a multi-boot compliant space invaders-type game.
This commit is contained in:
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
|
@ -115,6 +115,7 @@
|
|||
SUBDIR += grande
|
||||
SUBDIR += greed
|
||||
SUBDIR += gru
|
||||
SUBDIR += grubinvaders
|
||||
SUBDIR += gshisen
|
||||
SUBDIR += gtetrinet
|
||||
SUBDIR += gtkabale
|
||||
|
|
30
games/grubinvaders/Makefile
Normal file
30
games/grubinvaders/Makefile
Normal 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>
|
1
games/grubinvaders/distinfo
Normal file
1
games/grubinvaders/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (invaders-1.0.0.tar.gz) = c5efef690f8c7f3c667cabb696528ab9
|
20
games/grubinvaders/files/Makefile
Normal file
20
games/grubinvaders/files/Makefile
Normal 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}
|
||||
|
1
games/grubinvaders/pkg-comment
Normal file
1
games/grubinvaders/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
This is grubinvaders, a multi boot compliant game for i386
|
3
games/grubinvaders/pkg-descr
Normal file
3
games/grubinvaders/pkg-descr
Normal file
|
@ -0,0 +1,3 @@
|
|||
grubinvaders, a multi boot compliant game for i386.
|
||||
|
||||
WWW: http://www.erikyyy.de/invaders/
|
6
games/grubinvaders/pkg-message
Normal file
6
games/grubinvaders/pkg-message
Normal file
|
@ -0,0 +1,6 @@
|
|||
------------------------------------------------------------
|
||||
|
||||
See %%PREFIX%%/share/grubinvaders/README for instructions on
|
||||
installing grubinvaders with grub.
|
||||
|
||||
------------------------------------------------------------
|
3
games/grubinvaders/pkg-plist
Normal file
3
games/grubinvaders/pkg-plist
Normal file
|
@ -0,0 +1,3 @@
|
|||
share/grubinvaders/README
|
||||
share/grubinvaders/invaders
|
||||
@dirrm share/grubinvaders
|
Loading…
Reference in a new issue