summaryrefslogtreecommitdiff
path: root/games/tux-aqfh
diff options
context:
space:
mode:
authorAlexander Langer <alex@FreeBSD.org>2001-06-10 21:52:36 +0000
committerAlexander Langer <alex@FreeBSD.org>2001-06-10 21:52:36 +0000
commit0c5c5cd7eed1c87a7321bcb44fc61939b3f12192 (patch)
tree4180441801add8105ad724ea70a2882a0b50e4a0 /games/tux-aqfh
parentA more correct patch as suggested by some folks- use PTHREAD_LIBS and (diff)
Add tux-aqfh, "Tux: A Quest for Herring", a 3D adventure game similar
to Mario'64 and other console games.
Notes
Notes: svn path=/head/; revision=43783
Diffstat (limited to 'games/tux-aqfh')
-rw-r--r--games/tux-aqfh/Makefile31
-rw-r--r--games/tux-aqfh/distinfo1
-rw-r--r--games/tux-aqfh/files/patch-configure19
-rw-r--r--games/tux-aqfh/files/patch-src::Makefile.in23
-rw-r--r--games/tux-aqfh/pkg-comment1
-rw-r--r--games/tux-aqfh/pkg-descr13
-rw-r--r--games/tux-aqfh/pkg-plist312
7 files changed, 400 insertions, 0 deletions
diff --git a/games/tux-aqfh/Makefile b/games/tux-aqfh/Makefile
new file mode 100644
index 000000000000..9ac8d43f0ab8
--- /dev/null
+++ b/games/tux-aqfh/Makefile
@@ -0,0 +1,31 @@
+# New ports collection makefile for: tux-aqfh
+# Date created: 10 Jun 2001
+# Whom: Alexander Langer <alex@FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= tux_aqfh
+PORTVERSION= 1.0.10
+CATEGORIES= games
+MASTER_SITES= http://tuxaqfh.sourceforge.net/dist/
+
+MAINTAINER= ports@FreeBSD.org
+
+BUILD_DEPENDS= ${X11BASE}/lib/libplibsl.a:${PORTSDIR}/x11-toolkits/plib
+
+GNU_CONFIGURE= yes
+USE_GMAKE= yes
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include \
+ -I${X11BASE}/include \
+ ${PTHREAD_CFLAGS}" \
+ LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib \
+ ${PTHREAD_LIBS}"
+USE_NEWGCC= yes
+CONFIGURE_ARGS+= --with-plib=${X11BASE} --bindir=${PREFIX}/bin
+USE_X_PREFIX= yes
+USE_MESA= yes
+MAKE_ENV+= PTHREAD_LIBS="${PTHREAD_LIBS}" \
+ PTHREAD_CFLAGS="${PTHREAD_CFLAGS}"
+
+.include <bsd.port.mk>
diff --git a/games/tux-aqfh/distinfo b/games/tux-aqfh/distinfo
new file mode 100644
index 000000000000..8b7ad452a765
--- /dev/null
+++ b/games/tux-aqfh/distinfo
@@ -0,0 +1 @@
+MD5 (tux_aqfh-1.0.10.tar.gz) = 47a5745ab93722da82e4efd6b1a6483c
diff --git a/games/tux-aqfh/files/patch-configure b/games/tux-aqfh/files/patch-configure
new file mode 100644
index 000000000000..e242da115007
--- /dev/null
+++ b/games/tux-aqfh/files/patch-configure
@@ -0,0 +1,19 @@
+--- configure.old Sun Jun 10 23:09:51 2001
++++ configure Sun Jun 10 23:09:59 2001
+@@ -2994,12 +2994,12 @@
+ CFLAGS="$CFLAGS -I/usr/local/include -L/usr/local/lib"
+ CXXFLAGS="$CXXFLAGS -I/usr/local/include -L/usr/local/lib"
+ else
+- CFLAGS="$CFLAGS -O6 -Wall"
+- CXXFLAGS="$CXXFLAGS -O6 -Wall"
++ CFLAGS="$CFLAGS -Wall"
++ CXXFLAGS="$CXXFLAGS -Wall"
+ fi
+ else
+- CFLAGS="$CFLAGS -O6 -Wall $MACH -malign-double -I/usr/local/include -L/usr/local/lib"
+- CXXFLAGS="$CXXFLAGS -O6 -Wall $MACH -malign-double -I/usr/local/include -L/usr/local/lib"
++ CFLAGS="$CFLAGS -Wall $MACH -malign-double -I/usr/local/include -L/usr/local/lib"
++ CXXFLAGS="$CXXFLAGS -Wall $MACH -malign-double -I/usr/local/include -L/usr/local/lib"
+ fi
+
+
diff --git a/games/tux-aqfh/files/patch-src::Makefile.in b/games/tux-aqfh/files/patch-src::Makefile.in
new file mode 100644
index 000000000000..7d6ad7dbcded
--- /dev/null
+++ b/games/tux-aqfh/files/patch-src::Makefile.in
@@ -0,0 +1,23 @@
+--- src/Makefile.in.orig Fri Feb 11 08:54:40 2000
++++ src/Makefile.in Sun Jun 10 23:35:57 2001
+@@ -66,7 +66,7 @@
+ RANLIB = @RANLIB@
+ VERSION = @VERSION@
+
+-bindir = $(prefix)/games
++bindir = $(prefix)/bin
+
+ bin_PROGRAMS = tux_aqfh
+
+@@ -78,9 +78,9 @@
+
+
+ DEFS = @DEFS@ -I. -I$(srcdir)
+-CPPFLAGS = @CPPFLAGS@
++CPPFLAGS = @CPPFLAGS@ $(PTHREAD_CFLAGS)
+ LDFLAGS = @LDFLAGS@
+-LIBS = @LIBS@
++LIBS = @LIBS@ -lGL -lGLU -lglut $(PTHREAD_LIBS)
+ X_CFLAGS = @X_CFLAGS@
+ X_LIBS = @X_LIBS@
+ X_EXTRA_LIBS = @X_EXTRA_LIBS@
diff --git a/games/tux-aqfh/pkg-comment b/games/tux-aqfh/pkg-comment
new file mode 100644
index 000000000000..4bfb8d52d165
--- /dev/null
+++ b/games/tux-aqfh/pkg-comment
@@ -0,0 +1 @@
+"Tux: A Quest for Herring", a 3D adventure game.
diff --git a/games/tux-aqfh/pkg-descr b/games/tux-aqfh/pkg-descr
new file mode 100644
index 000000000000..e1808e8f4268
--- /dev/null
+++ b/games/tux-aqfh/pkg-descr
@@ -0,0 +1,13 @@
+TUXEDO T. PENGUIN: A QUEST FOR HERRING
+
+A nice 3D graphics adventure game.
+
+The author's goal is to end up with a game that's similar to some of the
+console games like Mario'64, Banjo-Kazooie, Gex or Spiro the dragon.
+He'd like more emphasis on search-and-explore and puzzle solving and less
+on violence and mass killing. Graphical quality is less important than
+game-play and fun.
+
+WWW: http://tuxaqfh.sourceforge.net/
+
+- Alexander Langer <alex@FreeBSD.org>
diff --git a/games/tux-aqfh/pkg-plist b/games/tux-aqfh/pkg-plist
new file mode 100644
index 000000000000..898980589948
--- /dev/null
+++ b/games/tux-aqfh/pkg-plist
@@ -0,0 +1,312 @@
+share/games/tux_aqfh/wavs/ahh.wav
+share/games/tux_aqfh/wavs/ahooga.wav
+share/games/tux_aqfh/wavs/barf.wav
+share/games/tux_aqfh/wavs/boing.wav
+share/games/tux_aqfh/wavs/bonk.wav
+share/games/tux_aqfh/wavs/burp.wav
+share/games/tux_aqfh/wavs/clap.wav
+share/games/tux_aqfh/wavs/drip.wav
+share/games/tux_aqfh/wavs/frog.wav
+share/games/tux_aqfh/wavs/glasbk.wav
+share/games/tux_aqfh/wavs/laser.wav
+share/games/tux_aqfh/wavs/moo.wav
+share/games/tux_aqfh/wavs/ow.wav
+share/games/tux_aqfh/wavs/pop.wav
+share/games/tux_aqfh/wavs/sinkdr.wav
+share/games/tux_aqfh/wavs/tarzan.wav
+share/games/tux_aqfh/wavs/ugh.wav
+share/games/tux_aqfh/wavs/wee.wav
+share/games/tux_aqfh/wavs/whip.wav
+share/games/tux_aqfh/wavs/whistle.wav
+share/games/tux_aqfh/wavs/who.wav
+share/games/tux_aqfh/wavs/who_else.wav
+share/games/tux_aqfh/images/Gimp_roolz.rgb
+share/games/tux_aqfh/images/Linux_roolz.rgb
+share/games/tux_aqfh/images/NTLUG_roolz.rgb
+share/games/tux_aqfh/images/arrow.rgb
+share/games/tux_aqfh/images/ball.rgb
+share/games/tux_aqfh/images/blue_pebbles.rgb
+share/games/tux_aqfh/images/blue_stone.rgb
+share/games/tux_aqfh/images/blue_stripe.rgb
+share/games/tux_aqfh/images/brick.rgb
+share/games/tux_aqfh/images/brick2.rgb
+share/games/tux_aqfh/images/brown_noise.rgb
+share/games/tux_aqfh/images/brown_ripple.rgb
+share/games/tux_aqfh/images/bubble.rgb
+share/games/tux_aqfh/images/candy_stripe.rgb
+share/games/tux_aqfh/images/clouds.rgb
+share/games/tux_aqfh/images/dirt.rgb
+share/games/tux_aqfh/images/embossed_herring.rgb
+share/games/tux_aqfh/images/finishline.rgb
+share/games/tux_aqfh/images/flames.rgb
+share/games/tux_aqfh/images/floor.rgb
+share/games/tux_aqfh/images/glass.rgb
+share/games/tux_aqfh/images/grey_noise_tile.rgb
+share/games/tux_aqfh/images/ground2.rgb
+share/games/tux_aqfh/images/ice.rgb
+share/games/tux_aqfh/images/lava.rgb
+share/games/tux_aqfh/images/lightning.rgb
+share/games/tux_aqfh/images/marble.rgb
+share/games/tux_aqfh/images/mars.rgb
+share/games/tux_aqfh/images/moonscape.rgb
+share/games/tux_aqfh/images/moonscape256.rgb
+share/games/tux_aqfh/images/orca_body.rgb
+share/games/tux_aqfh/images/oxygen.rgb
+share/games/tux_aqfh/images/pebbles.rgb
+share/games/tux_aqfh/images/planet.rgb
+share/games/tux_aqfh/images/poster.rgb
+share/games/tux_aqfh/images/rock.rgb
+share/games/tux_aqfh/images/sand.rgb
+share/games/tux_aqfh/images/scales.rgb
+share/games/tux_aqfh/images/snow.rgb
+share/games/tux_aqfh/images/snowball.rgb
+share/games/tux_aqfh/images/spark.rgb
+share/games/tux_aqfh/images/sproing.rgb
+share/games/tux_aqfh/images/stars.rgb
+share/games/tux_aqfh/images/startline.rgb
+share/games/tux_aqfh/images/swirl.rgb
+share/games/tux_aqfh/images/structure.rgb
+share/games/tux_aqfh/images/thermometer.rgb
+share/games/tux_aqfh/images/tinytux.rgb
+share/games/tux_aqfh/images/tree.rgb
+share/games/tux_aqfh/images/walls.rgb
+share/games/tux_aqfh/images/water.rgb
+share/games/tux_aqfh/images/water2.rgb
+share/games/tux_aqfh/images/waterfall.rgb
+share/games/tux_aqfh/images/windows.rgb
+share/games/tux_aqfh/images/wood.rgb
+share/games/tux_aqfh/images/wood_tile.rgb
+share/games/tux_aqfh/images/wrapping_paper.rgb
+share/games/tux_aqfh/images/blue_neon.rgba
+share/games/tux_aqfh/images/bubble.rgba
+share/games/tux_aqfh/images/camera.rgba
+share/games/tux_aqfh/images/flames.rgba
+share/games/tux_aqfh/images/glass.rgba
+share/games/tux_aqfh/images/gun.rgba
+share/games/tux_aqfh/images/lightning.rgba
+share/games/tux_aqfh/images/nocamera.rgba
+share/games/tux_aqfh/images/ringoffire.rgba
+share/games/tux_aqfh/images/safe_flames.rgba
+share/games/tux_aqfh/images/smoke.rgba
+share/games/tux_aqfh/images/snowball.rgba
+share/games/tux_aqfh/images/spark.rgba
+share/games/tux_aqfh/images/sparkle.rgba
+share/games/tux_aqfh/images/splash.rgba
+share/games/tux_aqfh/images/think.rgba
+share/games/tux_aqfh/images/tinytux.rgba
+share/games/tux_aqfh/images/tree.rgba
+share/games/tux_aqfh/images/water2.rgba
+share/games/tux_aqfh/images/waterfall.rgba
+share/games/tux_aqfh/images/xmastree.rgba
+share/games/tux_aqfh/images/fuzzy.int
+share/games/tux_aqfh/images/tux_text.int
+share/games/tux_aqfh/images/fuzzy.inta
+share/games/tux_aqfh/images/herring.inta
+share/games/tux_aqfh/images/herringbones.inta
+share/games/tux_aqfh/images/tux_text.inta
+share/games/tux_aqfh/data/level0.dat
+share/games/tux_aqfh/data/level1.dat
+share/games/tux_aqfh/data/level10.dat
+share/games/tux_aqfh/data/level11.dat
+share/games/tux_aqfh/data/level12.dat
+share/games/tux_aqfh/data/level2.dat
+share/games/tux_aqfh/data/level3.dat
+share/games/tux_aqfh/data/level4.dat
+share/games/tux_aqfh/data/level5.dat
+share/games/tux_aqfh/data/level6.dat
+share/games/tux_aqfh/data/level7.dat
+share/games/tux_aqfh/data/level7_special.dat
+share/games/tux_aqfh/data/level8.dat
+share/games/tux_aqfh/data/level9999.dat
+share/games/tux_aqfh/data/the_end.dat
+share/games/tux_aqfh/penguin/bow.ac
+share/games/tux_aqfh/penguin/gold_penguin.ac
+share/games/tux_aqfh/penguin/gown_beak.ac
+share/games/tux_aqfh/penguin/gown_beak_halfopen.ac
+share/games/tux_aqfh/penguin/gown_beak_open.ac
+share/games/tux_aqfh/penguin/gown_blink.ac
+share/games/tux_aqfh/penguin/gown_body.ac
+share/games/tux_aqfh/penguin/gown_bubble.ac
+share/games/tux_aqfh/penguin/gown_dizzy.ac
+share/games/tux_aqfh/penguin/gown_halfblink.ac
+share/games/tux_aqfh/penguin/gown_head.ac
+share/games/tux_aqfh/penguin/gown_lflipper.ac
+share/games/tux_aqfh/penguin/gown_lfoot.ac
+share/games/tux_aqfh/penguin/gown_rflipper.ac
+share/games/tux_aqfh/penguin/gown_rfoot.ac
+share/games/tux_aqfh/penguin/gown_slide.ac
+share/games/tux_aqfh/penguin/penguin_beak.ac
+share/games/tux_aqfh/penguin/penguin_beak_halfopen.ac
+share/games/tux_aqfh/penguin/penguin_blink.ac
+share/games/tux_aqfh/penguin/penguin_beak_open.ac
+share/games/tux_aqfh/penguin/penguin_body.ac
+share/games/tux_aqfh/penguin/penguin_body_safe.ac
+share/games/tux_aqfh/penguin/penguin_body_safe2.ac
+share/games/tux_aqfh/penguin/penguin_bubble.ac
+share/games/tux_aqfh/penguin/penguin_dizzy.ac
+share/games/tux_aqfh/penguin/penguin_halfblink.ac
+share/games/tux_aqfh/penguin/penguin_head.ac
+share/games/tux_aqfh/penguin/penguin_lflipper.ac
+share/games/tux_aqfh/penguin/penguin_lfoot.ac
+share/games/tux_aqfh/penguin/penguin_rflipper.ac
+share/games/tux_aqfh/penguin/penguin_rfoot.ac
+share/games/tux_aqfh/penguin/penguin_slide.ac
+share/games/tux_aqfh/penguin/supergown_body.ac
+share/games/tux_aqfh/penguin/superpenguin_body.ac
+share/games/tux_aqfh/penguin/Gown_beak.rgb
+share/games/tux_aqfh/penguin/Gown_body.rgb
+share/games/tux_aqfh/penguin/Penguin_beak.rgb
+share/games/tux_aqfh/penguin/Penguin_body.rgb
+share/games/tux_aqfh/penguin/Penguin_orig.rgb
+share/games/tux_aqfh/penguin/Robin_body.rgb
+share/games/tux_aqfh/penguin/Scorpion_body.rgb
+share/games/tux_aqfh/penguin/SuperTux.rgb
+share/games/tux_aqfh/penguin/blue_neon.rgb
+share/games/tux_aqfh/penguin/bow.rgb
+share/games/tux_aqfh/penguin/penguin_256x256.rgb
+share/games/tux_aqfh/penguin/red_ripple.rgb
+share/games/tux_aqfh/penguin/Penguin_foot.rgba
+share/games/tux_aqfh/penguin/partygear.rgba
+share/games/tux_aqfh/models/NTLUG_flag.ac
+share/games/tux_aqfh/models/antechamber.ac
+share/games/tux_aqfh/models/antechamber2.ac
+share/games/tux_aqfh/models/award_room.ac
+share/games/tux_aqfh/models/bee.ac
+share/games/tux_aqfh/models/big_arrow.ac
+share/games/tux_aqfh/models/candycane.ac
+share/games/tux_aqfh/models/diving_ring.ac
+share/games/tux_aqfh/models/dog3.ac
+share/games/tux_aqfh/models/door.ac
+share/games/tux_aqfh/models/electricfence.ac
+share/games/tux_aqfh/models/electricfence2.ac
+share/games/tux_aqfh/models/elephant.ac
+share/games/tux_aqfh/models/exhaust.ac
+share/games/tux_aqfh/models/finishline.ac
+share/games/tux_aqfh/models/flag.ac
+share/games/tux_aqfh/models/flying_saucer.ac
+share/games/tux_aqfh/models/folly.ac
+share/games/tux_aqfh/models/frogger.ac
+share/games/tux_aqfh/models/gold1.ac
+share/games/tux_aqfh/models/gold2.ac
+share/games/tux_aqfh/models/jennifers_alien.ac
+share/games/tux_aqfh/models/jump_pad.ac
+share/games/tux_aqfh/models/large_gift.ac
+share/games/tux_aqfh/models/lavaball.ac
+share/games/tux_aqfh/models/level0.ac
+share/games/tux_aqfh/models/level1.ac
+share/games/tux_aqfh/models/level12.ac
+share/games/tux_aqfh/models/level14.ac
+share/games/tux_aqfh/models/level2.ac
+share/games/tux_aqfh/models/level3.ac
+share/games/tux_aqfh/models/level4.ac
+share/games/tux_aqfh/models/level5.ac
+share/games/tux_aqfh/models/level5_new.ac
+share/games/tux_aqfh/models/level6.ac
+share/games/tux_aqfh/models/level6_skydome.ac
+share/games/tux_aqfh/models/level6g.ac
+share/games/tux_aqfh/models/log1.ac
+share/games/tux_aqfh/models/log2.ac
+share/games/tux_aqfh/models/log3.ac
+share/games/tux_aqfh/models/log4.ac
+share/games/tux_aqfh/models/maze.ac
+share/games/tux_aqfh/models/med_gift.ac
+share/games/tux_aqfh/models/moon_building.ac
+share/games/tux_aqfh/models/moonscape.ac
+share/games/tux_aqfh/models/mr_bucket.ac
+share/games/tux_aqfh/models/nail.ac
+share/games/tux_aqfh/models/nova.ac
+share/games/tux_aqfh/models/oxy_sponge.ac
+share/games/tux_aqfh/models/pengpen.ac
+share/games/tux_aqfh/models/planetscape.ac
+share/games/tux_aqfh/models/pyramid.ac
+share/games/tux_aqfh/models/refrigerator.ac
+share/games/tux_aqfh/models/ringoflightning.ac
+share/games/tux_aqfh/models/rocket.ac
+share/games/tux_aqfh/models/roundabout.ac
+share/games/tux_aqfh/models/scorpiontux.ac
+share/games/tux_aqfh/models/showcase.ac
+share/games/tux_aqfh/models/signboard.ac
+share/games/tux_aqfh/models/skijump.ac
+share/games/tux_aqfh/models/slide.ac
+share/games/tux_aqfh/models/sliding_jump_pad.ac
+share/games/tux_aqfh/models/small_gift.ac
+share/games/tux_aqfh/models/snowman.ac
+share/games/tux_aqfh/models/spiky.ac
+share/games/tux_aqfh/models/spiky2.ac
+share/games/tux_aqfh/models/spinning_diving_ring.ac
+share/games/tux_aqfh/models/sproingpad.ac
+share/games/tux_aqfh/models/startline.ac
+share/games/tux_aqfh/models/starwing.ac
+share/games/tux_aqfh/models/steps.ac
+share/games/tux_aqfh/models/swinging_platform.ac
+share/games/tux_aqfh/models/switchoffbox.ac
+share/games/tux_aqfh/models/switchonbox.ac
+share/games/tux_aqfh/models/the_end.ac
+share/games/tux_aqfh/models/towerblock.ac
+share/games/tux_aqfh/models/towerblock2.ac
+share/games/tux_aqfh/models/tree.ac
+share/games/tux_aqfh/models/truck1.ac
+share/games/tux_aqfh/models/truck1a.ac
+share/games/tux_aqfh/models/truck1b.ac
+share/games/tux_aqfh/models/truck1c.ac
+share/games/tux_aqfh/models/truck1d.ac
+share/games/tux_aqfh/models/truck2.ac
+share/games/tux_aqfh/models/truck2a.ac
+share/games/tux_aqfh/models/truck2b.ac
+share/games/tux_aqfh/models/truck2c.ac
+share/games/tux_aqfh/models/truck2d.ac
+share/games/tux_aqfh/models/truck3.ac
+share/games/tux_aqfh/models/truck3a.ac
+share/games/tux_aqfh/models/truck4.ac
+share/games/tux_aqfh/models/truck4a.ac
+share/games/tux_aqfh/models/truck_jump.ac
+share/games/tux_aqfh/models/tumbling_jump_pad.ac
+share/games/tux_aqfh/models/tuxbox.ac
+share/games/tux_aqfh/models/tuxcopter.ac
+share/games/tux_aqfh/models/tuxedo.ac
+share/games/tux_aqfh/models/venus_penguin_trap.ac
+share/games/tux_aqfh/models/wall.ac
+share/games/tux_aqfh/models/waterfall.ac
+share/games/tux_aqfh/models/waterfall2.ac
+share/games/tux_aqfh/models/wedgie.ac
+share/games/tux_aqfh/models/xmastree.ac
+share/games/tux_aqfh/mods/007.mod
+share/games/tux_aqfh/mods/ambient.mod
+share/games/tux_aqfh/mods/anthygo.mod
+share/games/tux_aqfh/mods/bach.mod
+share/games/tux_aqfh/mods/bach_3.mod
+share/games/tux_aqfh/mods/crazy_s.mod
+share/games/tux_aqfh/mods/fantasia.mod
+share/games/tux_aqfh/mods/mozart.mod
+share/games/tux_aqfh/mods/sal_dpso.mod
+share/games/tux_aqfh/mods/theme.mod
+share/games/tux_aqfh/mods/tux.mod
+share/games/tux_aqfh/mods/wildwood.mod
+share/games/tux_aqfh/fonts/haeberli.txf
+share/games/tux_aqfh/fonts/sorority.txf
+share/tux_aqfh/building_levels.html
+share/tux_aqfh/index.html
+share/tux_aqfh/keystrokes.html
+share/tux_aqfh/levels.html
+share/tux_aqfh/running.html
+share/tux_aqfh/slam.html
+share/tux_aqfh/story.html
+share/tux_aqfh/5star.png
+share/tux_aqfh/OGL_sm.png
+share/tux_aqfh/Penguin.png
+share/tux_aqfh/marble.png
+share/tux_aqfh/snap2tb.png
+share/tux_aqfh/snap3tb.png
+share/tux_aqfh/snap4tb.png
+share/tux_aqfh/snap5tb.png
+share/tux_aqfh/snap6tb.png
+@dirrm share/games/tux_aqfh/wavs
+@dirrm share/games/tux_aqfh/images
+@dirrm share/games/tux_aqfh/data
+@dirrm share/games/tux_aqfh/penguin
+@dirrm share/games/tux_aqfh/models
+@dirrm share/games/tux_aqfh/mods
+@dirrm share/games/tux_aqfh/fonts
+@dirrm share/games/tux_aqfh/slamcode
+@dirrm share/games/tux_aqfh
+@dirrm share/tux_aqfh