summaryrefslogtreecommitdiff
path: root/games/bomb
diff options
context:
space:
mode:
authorTrevor Johnson <trevor@FreeBSD.org>2000-10-23 18:23:25 +0000
committerTrevor Johnson <trevor@FreeBSD.org>2000-10-23 18:23:25 +0000
commit9b6eff3e0de24ec814572c15f95a38452e5389d5 (patch)
treea2298916bbd99da6e812433eeb0254d91f5908af /games/bomb
parentSync with -current. (diff)
Add games/bomb, an interactive display hack for SVGAlib or X.
Notes
Notes: svn path=/head/; revision=34144
Diffstat (limited to 'games/bomb')
-rw-r--r--games/bomb/Makefile74
-rw-r--r--games/bomb/distinfo1
-rw-r--r--games/bomb/pkg-comment1
-rw-r--r--games/bomb/pkg-descr9
4 files changed, 85 insertions, 0 deletions
diff --git a/games/bomb/Makefile b/games/bomb/Makefile
new file mode 100644
index 000000000000..239bc99b0684
--- /dev/null
+++ b/games/bomb/Makefile
@@ -0,0 +1,74 @@
+# New ports collection makefile for: bomb
+# Date created: 2000-10-23
+# Whom: trevor
+#
+# $FreeBSD$
+#
+
+PORTNAME= bomb
+PORTVERSION= 1.0
+CATEGORIES= games
+MASTER_SITES= ${MASTER_SITE_SUNSITE}
+MASTER_SITE_SUBDIR= apps/graphics/hacks/svgalib
+DISTNAME= ${PORTNAME}
+
+MAINTAINER= trevor@FreeBSD.org
+
+LIB_DEPENDS= tiff.4:${PORTSDIR}/graphics/tiff \
+ vga.1:${PORTSDIR}/graphics/svgalib
+
+NO_PACKAGE= "parts are under GPL, parts under X license"
+
+DATADIR= share/${PORTNAME}/
+DOCDIR= share/doc/${PORTNAME}/
+DOCS= COPYING README bomb.lsm guile.txt manual.txt notes.txt
+PLIST= ${WRKDIR}/pkg-plist
+SRCS= acidlife anneal bomb brain cmap fast fuse gif image image_rule \
+ image_seq libifs match quad rd rotor rug rug_multi \
+ rug_rug shade slip sound static wave zio
+.for i in ${SRCS}
+OBJS+= ${i}.o
+.endfor
+USE_X_PREFIX= yes
+WRKSRC= ${WRKDIR}/${PORTNAME}
+
+pre-build:
+ ${ECHO} "bin/bomb" > ${PLIST}
+ for i in `find -s ${WRKSRC}/suck -type f`; do \
+ ${ECHO} ${DATADIR}suck/`${BASENAME} $${i}` >> ${PLIST}; \
+ done
+.for i in cmap-data flame-data seq-data title.tif
+ ${ECHO} ${DATADIR}/${i} >> ${PLIST}
+.endfor
+.if !defined(NOPORTDOCS)
+.for i in ${DOCS}
+ ${ECHO} ${DOCDIR}${i} >> ${PLIST}
+.endfor
+ ${ECHO} "@dirrm "${DOCDIR} >> ${PLIST}
+.endif
+ ${ECHO} "@dirrm "${DATADIR}/suck >> ${PLIST}
+ ${ECHO} "@dirrm "${DATADIR} >> ${PLIST}
+
+do-build:
+.for i in ${SRCS}
+ cd ${WRKSRC} && ${CC} ${CFLAGS} -DDATA_DIR=\"${PREFIX}/${DATADIR}\" \
+ -L${X11BASE}/lib \
+ -I${X11BASE}/include \
+ -L${LOCALBASE}/lib \
+ -I${LOCALBASE}/include -c ${i}.c
+.endfor
+ cd ${WRKSRC} && ${CC} ${CFLAGS} -o bomb ${OBJS} -lX11 -lvga -lm -ltiff \
+ -L${LOCALBASE}/lib -L${X11BASE}/lib
+
+do-install:
+ ${MKDIR} ${PREFIX}/${DATADIR}
+ cd ${WRKSRC} && pax -r -w *-data suck title.tif ${PREFIX}/${DATADIR}
+ ${INSTALL} -c -g wheel -o root -m 4755 ${WRKSRC}/bomb ${PREFIX}/bin
+.if !defined(NOPORTDOCS)
+ ${MKDIR} ${PREFIX}/${DOCDIR}
+.for i in ${DOCS}
+ ${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/${DOCDIR}
+.endfor
+.endif
+
+.include <bsd.port.mk>
diff --git a/games/bomb/distinfo b/games/bomb/distinfo
new file mode 100644
index 000000000000..167305bacdfa
--- /dev/null
+++ b/games/bomb/distinfo
@@ -0,0 +1 @@
+MD5 (bomb.tar.gz) = 646bd56aa5d43d62990fb4bf2115b950
diff --git a/games/bomb/pkg-comment b/games/bomb/pkg-comment
new file mode 100644
index 000000000000..88b1e39d76c5
--- /dev/null
+++ b/games/bomb/pkg-comment
@@ -0,0 +1 @@
+Interactive display hack for SVGAlib or X
diff --git a/games/bomb/pkg-descr b/games/bomb/pkg-descr
new file mode 100644
index 000000000000..4db415f42b5c
--- /dev/null
+++ b/games/bomb/pkg-descr
@@ -0,0 +1,9 @@
+This program displays animations on the SVGAlib screen, or in X.
+It responds to keyboard input.
+
+GUILE support is not implemented in this port.
+
+To exit the program, press Esc.
+
+Trevor Johnson
+trevor@FreeBSD.org