Bug 180013 - [PATCH] games/tux-aqfh: Add Desktop entry file, fix docs, take maintainership
Summary: [PATCH] games/tux-aqfh: Add Desktop entry file, fix docs, take maintainership
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Daniel Eischen
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-06-26 23:40 UTC by nemysis
Modified: 2013-07-11 16:50 UTC (History)
1 user (show)

See Also:


Attachments
tux_aqfh-1.0.14_8.patch (24.63 KB, patch)
2013-06-26 23:40 UTC, nemysis
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description nemysis 2013-06-26 23:40:00 UTC
- Take maintainership
- Bump portrevision
- Shorten header
- Trim master sites
- Add Icons
- Trim comment
- Fix docs
- Add Desktop entry file
- Add DOCS Option
- Trim REINPLACE_CMD
- Trim pkg-descr
- Trim pkg-plist


Generated and tested manually, tested with port test and with RedPorts, sent with FreeBSD Port Tools 0.99_8 (mode: change, diff: ports)

How-To-Repeat: 
Build log

https://redports.org/buildarchive/20130626212100-13872/
Comment 1 Daniel Eischen freebsd_committer freebsd_triage 2013-07-11 16:29:49 UTC
Responsible Changed
From-To: freebsd-ports-bugs->deischen

I'll take this.
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-07-11 16:42:04 UTC
Author: deischen
Date: Thu Jul 11 15:41:47 2013
New Revision: 322781
URL: http://svnweb.freebsd.org/changeset/ports/322781

Log:
  From the (new) maintainer:
  
    - Take maintainership
    - Bump portrevision
    - Shorten header
    - Trim master sites
    - Add Icons
    - Trim comment
    - Fix docs
    - Add Desktop entry file
    - Add DOCS Option
    - Trim REINPLACE_CMD
    - Trim pkg-descr
    - Trim pkg-plist
  
  Note the previous maintainer was ports@.
  
  PR:		180013
  Submitted by:	nemysis at gmx dot ch

Modified:
  head/games/tux-aqfh/Makefile
  head/games/tux-aqfh/distinfo
  head/games/tux-aqfh/pkg-descr
  head/games/tux-aqfh/pkg-plist

Modified: head/games/tux-aqfh/Makefile
==============================================================================
--- head/games/tux-aqfh/Makefile	Thu Jul 11 15:39:15 2013	(r322780)
+++ head/games/tux-aqfh/Makefile	Thu Jul 11 15:41:47 2013	(r322781)
@@ -1,21 +1,20 @@
-# New ports collection makefile for:	tux-aqfh
-# Date created:				10 Jun 2001
-# Whom:					Alexander Langer <alex@FreeBSD.org>
-#
+# Created by: Alexander Langer <alex@FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	tux_aqfh
 PORTVERSION=	1.0.14
-PORTREVISION=	7
+PORTREVISION=	8
 CATEGORIES=	games
-MASTER_SITES=	SF/tuxaqfh/tuxaqfh/${PORTVERSION}-classic
+MASTER_SITES=	SF/tuxaqfh/tuxaqfh/${PORTVERSION}-classic \
+		SF/nemysisfreebsdp/:icons
+DISTFILES=	${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} \
+		${PORTNAME}.png:icons
+EXTRACT_ONLY=	${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX}
 
-MAINTAINER=	ports@FreeBSD.org
-COMMENT=	An OpenGL adventure game
+MAINTAINER=	nemysis@gmx.ch
+COMMENT=	Tuxedo The Penguin: A Quest for Herring
 
 LICENSE=	GPLv2
-LICENSE_FILE=	${WRKSRC}/COPYING
 
 BUILD_DEPENDS=	${LOCALBASE}/lib/libplibsl.a:${PORTSDIR}/x11-toolkits/plib
 
@@ -28,16 +27,42 @@ MAKE_JOBS_SAFE=	yes
 CPPFLAGS+=	-I${LOCALBASE}/include ${PTHREAD_CFLAGS}
 LDFLAGS+=	-L${LOCALBASE}/lib -lusbhid ${PTHREAD_LIBS}
 
-.include <bsd.port.pre.mk>
+PORTDOCS=	*
+
+DOCSRCDIR1=	${WRKSRC}
+DOC_FILES1=	AUTHORS CHANGES README
+
+DOCSRCDIR2=	${WRKSRC}/doc
+DOCSDIR2=	${DOCSDIR}/doc
+DOC_FILES2=	*.png *.html
+
+DESKTOP_ENTRIES="Tuxedo The Penguin: A Quest for Herring" "${COMMENT}" ${PORTNAME} \
+		"${PORTNAME}" "Game;ArcadeGame;" false
+
+OPTIONS_DEFINE=	DOCS
+
+.include <bsd.port.options.mk>
 
 post-patch:
 	@${REINPLACE_CMD} -e \
-		's|-lplibsl -lplibssg|-lplibsl -lplibjs -lplibssg|g ; \
+		's|-lplibul|-lplibul -lplibjs| ; \
 		 s|-O6||g ; \
-		 s|-lpthread||g ; \
-		 s|datadir/games|datadir|g' ${WRKSRC}/configure
+		 s|-lpthread|| ; \
+		 s|datadir/games|datadir|' ${WRKSRC}/configure
 	@${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \
 		's|$$(prefix)/games|@bindir@|g ; \
 		 s|$$(datadir)/games|$$(datadir)|g'
+	@${REINPLACE_CMD} -e 's|doc contrib| contrib|' \
+		${WRKSRC}/Makefile.in
+
+post-install:
+	${INSTALL_DATA} ${_DISTDIR}/${PORTNAME}.png ${PREFIX}/share/pixmaps
+
+.if ${PORT_OPTIONS:MDOCS}
+	@${MKDIR} ${DOCSDIR}
+	${INSTALL_DATA} ${DOC_FILES1:S|^|${DOCSRCDIR1}/|} ${DOCSDIR}
+	@${MKDIR} ${DOCSDIR2}
+	${INSTALL_DATA} ${DOC_FILES2:S|^|${DOCSRCDIR2}/|} ${DOCSDIR2}
+.endif
 
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>

Modified: head/games/tux-aqfh/distinfo
==============================================================================
--- head/games/tux-aqfh/distinfo	Thu Jul 11 15:39:15 2013	(r322780)
+++ head/games/tux-aqfh/distinfo	Thu Jul 11 15:41:47 2013	(r322781)
@@ -1,2 +1,4 @@
 SHA256 (tux_aqfh-1.0.14.tar.gz) = 8a6824387a21aff0ea60d5e6f8ec6c6f65491f37c2465eb8dee7929ac63a7c90
 SIZE (tux_aqfh-1.0.14.tar.gz) = 3604518
+SHA256 (tux_aqfh.png) = 82aa0c040e0e19cdf3c80b27d18e67c08dc5203035f9dc5149953bc630fcef16
+SIZE (tux_aqfh.png) = 3345

Modified: head/games/tux-aqfh/pkg-descr
==============================================================================
--- head/games/tux-aqfh/pkg-descr	Thu Jul 11 15:39:15 2013	(r322780)
+++ head/games/tux-aqfh/pkg-descr	Thu Jul 11 15:41:47 2013	(r322781)
@@ -1,11 +1,6 @@
-TUXEDO T. PENGUIN: A QUEST FOR HERRING
+Tuxedo The 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.  
+A 3D search/explore game staring Tux the Linux Penguin and his girlfriend Gown
+as they solve problems and search a number of 3D levels for Golden Herring.
 
 WWW: http://sourceforge.net/projects/tuxaqfh/

Modified: head/games/tux-aqfh/pkg-plist
==============================================================================
--- head/games/tux-aqfh/pkg-plist	Thu Jul 11 15:39:15 2013	(r322780)
+++ head/games/tux-aqfh/pkg-plist	Thu Jul 11 15:41:47 2013	(r322781)
@@ -1,322 +1,307 @@
 bin/tux_aqfh
-share/tux_aqfh/5star.png
-share/tux_aqfh/OGL_sm.png
-share/tux_aqfh/Penguin.png
-share/tux_aqfh/building_levels.html
-share/tux_aqfh/data/level0.dat
-share/tux_aqfh/data/level1.dat
-share/tux_aqfh/data/level10.dat
-share/tux_aqfh/data/level11.dat
-share/tux_aqfh/data/level12.dat
-share/tux_aqfh/data/level2.dat
-share/tux_aqfh/data/level3.dat
-share/tux_aqfh/data/level4.dat
-share/tux_aqfh/data/level5.dat
-share/tux_aqfh/data/level6.dat
-share/tux_aqfh/data/level7.dat
-share/tux_aqfh/data/level7_special.dat
-share/tux_aqfh/data/level8.dat
-share/tux_aqfh/data/level9.dat
-share/tux_aqfh/data/level9999.dat
-share/tux_aqfh/data/the_end.dat
-share/tux_aqfh/fonts/haeberli.txf
-share/tux_aqfh/fonts/sorority.txf
-share/tux_aqfh/images/Atennisball.rgb
-share/tux_aqfh/images/Atennisground.rgb
-share/tux_aqfh/images/Atennisracketl.rgb
-share/tux_aqfh/images/Gimp_roolz.rgb
-share/tux_aqfh/images/Linux_roolz.rgb
-share/tux_aqfh/images/NTLUG_roolz.rgb
-share/tux_aqfh/images/arrow.rgb
-share/tux_aqfh/images/ball.rgb
-share/tux_aqfh/images/blue_neon.rgba
-share/tux_aqfh/images/blue_pebbles.rgb
-share/tux_aqfh/images/blue_stone.rgb
-share/tux_aqfh/images/blue_stripe.rgb
-share/tux_aqfh/images/brick.rgb
-share/tux_aqfh/images/brick2.rgb
-share/tux_aqfh/images/brown_noise.rgb
-share/tux_aqfh/images/brown_ripple.rgb
-share/tux_aqfh/images/bubble.rgb
-share/tux_aqfh/images/bubble.rgba
-share/tux_aqfh/images/camera.rgba
-share/tux_aqfh/images/candy_stripe.rgb
-share/tux_aqfh/images/clouds.rgb
-share/tux_aqfh/images/dirt.rgb
-share/tux_aqfh/images/embossed_herring.rgb
-share/tux_aqfh/images/finishline.rgb
-share/tux_aqfh/images/flames.rgb
-share/tux_aqfh/images/flames.rgba
-share/tux_aqfh/images/floor.rgb
-share/tux_aqfh/images/fuzzy.int
-share/tux_aqfh/images/fuzzy.inta
-share/tux_aqfh/images/glass.rgb
-share/tux_aqfh/images/glass.rgba
-share/tux_aqfh/images/grey_noise_tile.rgb
-share/tux_aqfh/images/ground2.rgb
-share/tux_aqfh/images/gun.rgba
-share/tux_aqfh/images/herring.inta
-share/tux_aqfh/images/herringbones.inta
-share/tux_aqfh/images/ice.rgb
-share/tux_aqfh/images/lava.rgb
-share/tux_aqfh/images/lightning.rgb
-share/tux_aqfh/images/lightning.rgba
-share/tux_aqfh/images/marble.rgb
-share/tux_aqfh/images/mars.rgb
-share/tux_aqfh/images/moonscape.rgb
-share/tux_aqfh/images/moonscape256.rgb
-share/tux_aqfh/images/nocamera.rgba
-share/tux_aqfh/images/orca_body.rgb
-share/tux_aqfh/images/oxygen.rgb
-share/tux_aqfh/images/pebbles.rgb
-share/tux_aqfh/images/planet.rgb
-share/tux_aqfh/images/poster.rgb
-share/tux_aqfh/images/ringoffire.rgba
-share/tux_aqfh/images/rock.rgb
-share/tux_aqfh/images/safe_flames.rgba
-share/tux_aqfh/images/sand.rgb
-share/tux_aqfh/images/scales.rgb
-share/tux_aqfh/images/smoke.rgba
-share/tux_aqfh/images/snow.rgb
-share/tux_aqfh/images/snowball.rgb
-share/tux_aqfh/images/snowball.rgba
-share/tux_aqfh/images/spark.rgb
-share/tux_aqfh/images/spark.rgba
-share/tux_aqfh/images/sparkle.rgba
-share/tux_aqfh/images/splash.rgba
-share/tux_aqfh/images/sproing.rgb
-share/tux_aqfh/images/stars.rgb
-share/tux_aqfh/images/startline.rgb
-share/tux_aqfh/images/structure.rgb
-share/tux_aqfh/images/swirl.rgb
-share/tux_aqfh/images/thermometer.rgb
-share/tux_aqfh/images/think.rgba
-share/tux_aqfh/images/tinytux.rgb
-share/tux_aqfh/images/tinytux.rgba
-share/tux_aqfh/images/tree.rgba
-share/tux_aqfh/images/tux_text.int
-share/tux_aqfh/images/tux_text.inta
-share/tux_aqfh/images/walls.rgb
-share/tux_aqfh/images/water.rgb
-share/tux_aqfh/images/water2.rgb
-share/tux_aqfh/images/water2.rgba
-share/tux_aqfh/images/waterfall.rgb
-share/tux_aqfh/images/waterfall.rgba
-share/tux_aqfh/images/windows.rgb
-share/tux_aqfh/images/wood.rgb
-share/tux_aqfh/images/wood_tile.rgb
-share/tux_aqfh/images/wrapping_paper.rgb
-share/tux_aqfh/images/xmastree.rgba
-share/tux_aqfh/index.html
-share/tux_aqfh/keystrokes.html
-share/tux_aqfh/levels.html
-share/tux_aqfh/marble.png
-share/tux_aqfh/models/BSOD.ac
-share/tux_aqfh/models/NTLUG_flag.ac
-share/tux_aqfh/models/antechamber.ac
-share/tux_aqfh/models/antechamber2.ac
-share/tux_aqfh/models/award_room.ac
-share/tux_aqfh/models/bee.ac
-share/tux_aqfh/models/big_arrow.ac
-share/tux_aqfh/models/candycane.ac
-share/tux_aqfh/models/diving_ring.ac
-share/tux_aqfh/models/dog3.ac
-share/tux_aqfh/models/door.ac
-share/tux_aqfh/models/electricfence.ac
-share/tux_aqfh/models/electricfence2.ac
-share/tux_aqfh/models/elephant.ac
-share/tux_aqfh/models/exhaust.ac
-share/tux_aqfh/models/finishline.ac
-share/tux_aqfh/models/flag.ac
-share/tux_aqfh/models/floating_island.ac
-share/tux_aqfh/models/flying_saucer.ac
-share/tux_aqfh/models/folly.ac
-share/tux_aqfh/models/frogger.ac
-share/tux_aqfh/models/gold1.ac
-share/tux_aqfh/models/gold2.ac
-share/tux_aqfh/models/jennifers_alien.ac
-share/tux_aqfh/models/jump_pad.ac
-share/tux_aqfh/models/large_gift.ac
-share/tux_aqfh/models/lavaball.ac
-share/tux_aqfh/models/lavapit.ac
-share/tux_aqfh/models/level0.ac
-share/tux_aqfh/models/level1.ac
-share/tux_aqfh/models/level12.ac
-share/tux_aqfh/models/level2.ac
-share/tux_aqfh/models/level3.ac
-share/tux_aqfh/models/level4.ac
-share/tux_aqfh/models/level5.ac
-share/tux_aqfh/models/level5_new.ac
-share/tux_aqfh/models/level6.ac
-share/tux_aqfh/models/level6_skydome.ac
-share/tux_aqfh/models/level6g.ac
-share/tux_aqfh/models/level9.ac
-share/tux_aqfh/models/log1.ac
-share/tux_aqfh/models/log2.ac
-share/tux_aqfh/models/log3.ac
-share/tux_aqfh/models/log4.ac
-share/tux_aqfh/models/maze.ac
-share/tux_aqfh/models/med_gift.ac
-share/tux_aqfh/models/moon_building.ac
-share/tux_aqfh/models/moonscape.ac
-share/tux_aqfh/models/mr_bucket.ac
-share/tux_aqfh/models/nail.ac
-share/tux_aqfh/models/new_level.ac
-share/tux_aqfh/models/nova.ac
-share/tux_aqfh/models/oxy_sponge.ac
-share/tux_aqfh/models/pengpen.ac
-share/tux_aqfh/models/planetscape.ac
-share/tux_aqfh/models/pyramid.ac
-share/tux_aqfh/models/refrigerator.ac
-share/tux_aqfh/models/ringoflightning.ac
-share/tux_aqfh/models/rocket.ac
-share/tux_aqfh/models/roundabout.ac
-share/tux_aqfh/models/scorpiontux.ac
-share/tux_aqfh/models/showcase.ac
-share/tux_aqfh/models/signboard.ac
-share/tux_aqfh/models/skijump.ac
-share/tux_aqfh/models/slide.ac
-share/tux_aqfh/models/slide9.ac
-share/tux_aqfh/models/sliding_jump_pad.ac
-share/tux_aqfh/models/small_gift.ac
-share/tux_aqfh/models/snowman.ac
-share/tux_aqfh/models/spiky.ac
-share/tux_aqfh/models/spiky2.ac
-share/tux_aqfh/models/spinning_diving_ring.ac
-share/tux_aqfh/models/sproingpad.ac
-share/tux_aqfh/models/startline.ac
-share/tux_aqfh/models/starwing.ac
-share/tux_aqfh/models/steps.ac
-share/tux_aqfh/models/swinging_platform.ac
-share/tux_aqfh/models/switchoffbox.ac
-share/tux_aqfh/models/switchonbox.ac
-share/tux_aqfh/models/the_end.ac
-share/tux_aqfh/models/towerblock.ac
-share/tux_aqfh/models/towerblock2.ac
-share/tux_aqfh/models/tree.ac
-share/tux_aqfh/models/truck1.ac
-share/tux_aqfh/models/truck1a.ac
-share/tux_aqfh/models/truck1b.ac
-share/tux_aqfh/models/truck1c.ac
-share/tux_aqfh/models/truck1d.ac
-share/tux_aqfh/models/truck2.ac
-share/tux_aqfh/models/truck2a.ac
-share/tux_aqfh/models/truck2b.ac
-share/tux_aqfh/models/truck2c.ac
-share/tux_aqfh/models/truck2d.ac
-share/tux_aqfh/models/truck3.ac
-share/tux_aqfh/models/truck3a.ac
-share/tux_aqfh/models/truck4.ac
-share/tux_aqfh/models/truck4a.ac
-share/tux_aqfh/models/truck_jump.ac
-share/tux_aqfh/models/tube9.ac
-share/tux_aqfh/models/tumbling_jump_pad.ac
-share/tux_aqfh/models/tuxbox.ac
-share/tux_aqfh/models/tuxcopter.ac
-share/tux_aqfh/models/tuxedo.ac
-share/tux_aqfh/models/venus_penguin_trap.ac
-share/tux_aqfh/models/wall.ac
-share/tux_aqfh/models/waterfall.ac
-share/tux_aqfh/models/waterfall2.ac
-share/tux_aqfh/models/wedgie.ac
-share/tux_aqfh/models/xmastree.ac
-share/tux_aqfh/mods/007.mod
-share/tux_aqfh/mods/ambient.mod
-share/tux_aqfh/mods/anthygo.mod
-share/tux_aqfh/mods/bach.mod
-share/tux_aqfh/mods/bach_3.mod
-share/tux_aqfh/mods/crazy_s.mod
-share/tux_aqfh/mods/fantasia.mod
-share/tux_aqfh/mods/mozart.mod
-share/tux_aqfh/mods/sal_dpso.mod
-share/tux_aqfh/mods/theme.mod
-share/tux_aqfh/mods/wildwood.mod
-share/tux_aqfh/penguin/Gown_beak.rgb
-share/tux_aqfh/penguin/Gown_body.rgb
-share/tux_aqfh/penguin/Penguin_beak.rgb
-share/tux_aqfh/penguin/Penguin_body.rgb
-share/tux_aqfh/penguin/Penguin_foot.rgba
-share/tux_aqfh/penguin/Penguin_orig.rgb
-share/tux_aqfh/penguin/Robin_body.rgb
-share/tux_aqfh/penguin/Scorpion_body.rgb
-share/tux_aqfh/penguin/SuperTux.rgb
-share/tux_aqfh/penguin/bakiny_tux.rgb
-share/tux_aqfh/penguin/blue_neon.rgb
-share/tux_aqfh/penguin/bow.ac
-share/tux_aqfh/penguin/bow.rgb
-share/tux_aqfh/penguin/gold_penguin.ac
-share/tux_aqfh/penguin/gown_beak.ac
-share/tux_aqfh/penguin/gown_beak_halfopen.ac
-share/tux_aqfh/penguin/gown_beak_open.ac
-share/tux_aqfh/penguin/gown_blink.ac
-share/tux_aqfh/penguin/gown_body.ac
-share/tux_aqfh/penguin/gown_bubble.ac
-share/tux_aqfh/penguin/gown_dizzy.ac
-share/tux_aqfh/penguin/gown_halfblink.ac
-share/tux_aqfh/penguin/gown_head.ac
-share/tux_aqfh/penguin/gown_lflipper.ac
-share/tux_aqfh/penguin/gown_lfoot.ac
-share/tux_aqfh/penguin/gown_rflipper.ac
-share/tux_aqfh/penguin/gown_rfoot.ac
-share/tux_aqfh/penguin/gown_slide.ac
-share/tux_aqfh/penguin/partygear.rgba
-share/tux_aqfh/penguin/penguin_256x256.rgb
-share/tux_aqfh/penguin/penguin_beak.ac
-share/tux_aqfh/penguin/penguin_beak_halfopen.ac
-share/tux_aqfh/penguin/penguin_beak_open.ac
-share/tux_aqfh/penguin/penguin_blink.ac
-share/tux_aqfh/penguin/penguin_body.ac
-share/tux_aqfh/penguin/penguin_body_safe.ac
-share/tux_aqfh/penguin/penguin_body_safe2.ac
-share/tux_aqfh/penguin/penguin_bubble.ac
-share/tux_aqfh/penguin/penguin_dizzy.ac
-share/tux_aqfh/penguin/penguin_halfblink.ac
-share/tux_aqfh/penguin/penguin_head.ac
-share/tux_aqfh/penguin/penguin_lflipper.ac
-share/tux_aqfh/penguin/penguin_lfoot.ac
-share/tux_aqfh/penguin/penguin_rflipper.ac
-share/tux_aqfh/penguin/penguin_rfoot.ac
-share/tux_aqfh/penguin/penguin_slide.ac
-share/tux_aqfh/penguin/red_ripple.rgb
-share/tux_aqfh/penguin/supergown_body.ac
-share/tux_aqfh/penguin/superpenguin_body.ac
-share/tux_aqfh/penguin/tux.ac
-share/tux_aqfh/running.html
-share/tux_aqfh/slam.html
-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
-share/tux_aqfh/story.html
-share/tux_aqfh/wavs/ahh.wav
-share/tux_aqfh/wavs/ahooga.wav
-share/tux_aqfh/wavs/barf.wav
-share/tux_aqfh/wavs/boing.wav
-share/tux_aqfh/wavs/bonk.wav
-share/tux_aqfh/wavs/burp.wav
-share/tux_aqfh/wavs/clap.wav
-share/tux_aqfh/wavs/drip.wav
-share/tux_aqfh/wavs/frog.wav
-share/tux_aqfh/wavs/glasbk.wav
-share/tux_aqfh/wavs/laser.wav
-share/tux_aqfh/wavs/moo.wav
-share/tux_aqfh/wavs/ow.wav
-share/tux_aqfh/wavs/pop.wav
-share/tux_aqfh/wavs/sinkdr.wav
-share/tux_aqfh/wavs/tarzan.wav
-share/tux_aqfh/wavs/ugh.wav
-share/tux_aqfh/wavs/wee.wav
-share/tux_aqfh/wavs/whip.wav
-share/tux_aqfh/wavs/whistle.wav
-share/tux_aqfh/wavs/who.wav
-share/tux_aqfh/wavs/who_else.wav
-@dirrm share/tux_aqfh/wavs
-@dirrm share/tux_aqfh/slamcode
-@dirrm share/tux_aqfh/penguin
-@dirrm share/tux_aqfh/mods
-@dirrm share/tux_aqfh/models
-@dirrm share/tux_aqfh/images
-@dirrm share/tux_aqfh/fonts
-@dirrm share/tux_aqfh/data
-@dirrm share/tux_aqfh
+share/pixmaps/tux_aqfh.png
+%%DATADIR%%/data/level0.dat
+%%DATADIR%%/data/level1.dat
+%%DATADIR%%/data/level10.dat
+%%DATADIR%%/data/level11.dat
+%%DATADIR%%/data/level12.dat
+%%DATADIR%%/data/level2.dat
+%%DATADIR%%/data/level3.dat
+%%DATADIR%%/data/level4.dat
+%%DATADIR%%/data/level5.dat
+%%DATADIR%%/data/level6.dat
+%%DATADIR%%/data/level7.dat
+%%DATADIR%%/data/level7_special.dat
+%%DATADIR%%/data/level8.dat
+%%DATADIR%%/data/level9.dat
+%%DATADIR%%/data/level9999.dat
+%%DATADIR%%/data/the_end.dat
+%%DATADIR%%/fonts/haeberli.txf
+%%DATADIR%%/fonts/sorority.txf
+%%DATADIR%%/images/Atennisball.rgb
+%%DATADIR%%/images/Atennisground.rgb
+%%DATADIR%%/images/Atennisracketl.rgb
+%%DATADIR%%/images/Gimp_roolz.rgb
+%%DATADIR%%/images/Linux_roolz.rgb
+%%DATADIR%%/images/NTLUG_roolz.rgb
+%%DATADIR%%/images/arrow.rgb
+%%DATADIR%%/images/ball.rgb
+%%DATADIR%%/images/blue_neon.rgba
+%%DATADIR%%/images/blue_pebbles.rgb
+%%DATADIR%%/images/blue_stone.rgb
+%%DATADIR%%/images/blue_stripe.rgb
+%%DATADIR%%/images/brick.rgb
+%%DATADIR%%/images/brick2.rgb
+%%DATADIR%%/images/brown_noise.rgb
+%%DATADIR%%/images/brown_ripple.rgb
+%%DATADIR%%/images/bubble.rgb
+%%DATADIR%%/images/bubble.rgba
+%%DATADIR%%/images/camera.rgba
+%%DATADIR%%/images/candy_stripe.rgb
+%%DATADIR%%/images/clouds.rgb
+%%DATADIR%%/images/dirt.rgb
+%%DATADIR%%/images/embossed_herring.rgb
+%%DATADIR%%/images/finishline.rgb
+%%DATADIR%%/images/flames.rgb
+%%DATADIR%%/images/flames.rgba
+%%DATADIR%%/images/floor.rgb
+%%DATADIR%%/images/fuzzy.int
+%%DATADIR%%/images/fuzzy.inta
+%%DATADIR%%/images/glass.rgb
+%%DATADIR%%/images/glass.rgba
+%%DATADIR%%/images/grey_noise_tile.rgb
+%%DATADIR%%/images/ground2.rgb
+%%DATADIR%%/images/gun.rgba
+%%DATADIR%%/images/herring.inta
+%%DATADIR%%/images/herringbones.inta
+%%DATADIR%%/images/ice.rgb
+%%DATADIR%%/images/lava.rgb
+%%DATADIR%%/images/lightning.rgb
+%%DATADIR%%/images/lightning.rgba
+%%DATADIR%%/images/marble.rgb
+%%DATADIR%%/images/mars.rgb
+%%DATADIR%%/images/moonscape.rgb
+%%DATADIR%%/images/moonscape256.rgb
+%%DATADIR%%/images/nocamera.rgba
+%%DATADIR%%/images/orca_body.rgb
+%%DATADIR%%/images/oxygen.rgb
+%%DATADIR%%/images/pebbles.rgb
+%%DATADIR%%/images/planet.rgb
+%%DATADIR%%/images/poster.rgb
+%%DATADIR%%/images/ringoffire.rgba
+%%DATADIR%%/images/rock.rgb
+%%DATADIR%%/images/safe_flames.rgba
+%%DATADIR%%/images/sand.rgb
+%%DATADIR%%/images/scales.rgb
+%%DATADIR%%/images/smoke.rgba
+%%DATADIR%%/images/snow.rgb
+%%DATADIR%%/images/snowball.rgb
+%%DATADIR%%/images/snowball.rgba
+%%DATADIR%%/images/spark.rgb
+%%DATADIR%%/images/spark.rgba
+%%DATADIR%%/images/sparkle.rgba
+%%DATADIR%%/images/splash.rgba
+%%DATADIR%%/images/sproing.rgb
+%%DATADIR%%/images/stars.rgb
+%%DATADIR%%/images/startline.rgb
+%%DATADIR%%/images/structure.rgb
+%%DATADIR%%/images/swirl.rgb
+%%DATADIR%%/images/thermometer.rgb
+%%DATADIR%%/images/think.rgba
+%%DATADIR%%/images/tinytux.rgb
+%%DATADIR%%/images/tinytux.rgba
+%%DATADIR%%/images/tree.rgba
+%%DATADIR%%/images/tux_text.int
+%%DATADIR%%/images/tux_text.inta
+%%DATADIR%%/images/walls.rgb
+%%DATADIR%%/images/water.rgb
+%%DATADIR%%/images/water2.rgb
+%%DATADIR%%/images/water2.rgba
+%%DATADIR%%/images/waterfall.rgb
+%%DATADIR%%/images/waterfall.rgba
+%%DATADIR%%/images/windows.rgb
+%%DATADIR%%/images/wood.rgb
+%%DATADIR%%/images/wood_tile.rgb
+%%DATADIR%%/images/wrapping_paper.rgb
+%%DATADIR%%/images/xmastree.rgba
+%%DATADIR%%/models/BSOD.ac
+%%DATADIR%%/models/NTLUG_flag.ac
+%%DATADIR%%/models/antechamber.ac
+%%DATADIR%%/models/antechamber2.ac
+%%DATADIR%%/models/award_room.ac
+%%DATADIR%%/models/bee.ac
+%%DATADIR%%/models/big_arrow.ac
+%%DATADIR%%/models/candycane.ac
+%%DATADIR%%/models/diving_ring.ac
+%%DATADIR%%/models/dog3.ac
+%%DATADIR%%/models/door.ac
+%%DATADIR%%/models/electricfence.ac
+%%DATADIR%%/models/electricfence2.ac
+%%DATADIR%%/models/elephant.ac
+%%DATADIR%%/models/exhaust.ac
+%%DATADIR%%/models/finishline.ac
+%%DATADIR%%/models/flag.ac
+%%DATADIR%%/models/floating_island.ac
+%%DATADIR%%/models/flying_saucer.ac
+%%DATADIR%%/models/folly.ac
+%%DATADIR%%/models/frogger.ac
+%%DATADIR%%/models/gold1.ac
+%%DATADIR%%/models/gold2.ac
+%%DATADIR%%/models/jennifers_alien.ac
+%%DATADIR%%/models/jump_pad.ac
+%%DATADIR%%/models/large_gift.ac
+%%DATADIR%%/models/lavaball.ac
+%%DATADIR%%/models/lavapit.ac
+%%DATADIR%%/models/level0.ac
+%%DATADIR%%/models/level1.ac
+%%DATADIR%%/models/level12.ac
+%%DATADIR%%/models/level2.ac
+%%DATADIR%%/models/level3.ac
+%%DATADIR%%/models/level4.ac
+%%DATADIR%%/models/level5.ac
+%%DATADIR%%/models/level5_new.ac
+%%DATADIR%%/models/level6.ac
+%%DATADIR%%/models/level6_skydome.ac
+%%DATADIR%%/models/level6g.ac
+%%DATADIR%%/models/level9.ac
+%%DATADIR%%/models/log1.ac
+%%DATADIR%%/models/log2.ac
+%%DATADIR%%/models/log3.ac
+%%DATADIR%%/models/log4.ac
+%%DATADIR%%/models/maze.ac
+%%DATADIR%%/models/med_gift.ac
+%%DATADIR%%/models/moon_building.ac
+%%DATADIR%%/models/moonscape.ac
+%%DATADIR%%/models/mr_bucket.ac
+%%DATADIR%%/models/nail.ac
+%%DATADIR%%/models/new_level.ac
+%%DATADIR%%/models/nova.ac
+%%DATADIR%%/models/oxy_sponge.ac
+%%DATADIR%%/models/pengpen.ac
+%%DATADIR%%/models/planetscape.ac
+%%DATADIR%%/models/pyramid.ac
+%%DATADIR%%/models/refrigerator.ac
+%%DATADIR%%/models/ringoflightning.ac
+%%DATADIR%%/models/rocket.ac
+%%DATADIR%%/models/roundabout.ac
+%%DATADIR%%/models/scorpiontux.ac
+%%DATADIR%%/models/showcase.ac
+%%DATADIR%%/models/signboard.ac
+%%DATADIR%%/models/skijump.ac
+%%DATADIR%%/models/slide.ac
+%%DATADIR%%/models/slide9.ac
+%%DATADIR%%/models/sliding_jump_pad.ac
+%%DATADIR%%/models/small_gift.ac
+%%DATADIR%%/models/snowman.ac
+%%DATADIR%%/models/spiky.ac
+%%DATADIR%%/models/spiky2.ac
+%%DATADIR%%/models/spinning_diving_ring.ac
+%%DATADIR%%/models/sproingpad.ac
+%%DATADIR%%/models/startline.ac
+%%DATADIR%%/models/starwing.ac
+%%DATADIR%%/models/steps.ac
+%%DATADIR%%/models/swinging_platform.ac
+%%DATADIR%%/models/switchoffbox.ac
+%%DATADIR%%/models/switchonbox.ac
+%%DATADIR%%/models/the_end.ac
+%%DATADIR%%/models/towerblock.ac
+%%DATADIR%%/models/towerblock2.ac
+%%DATADIR%%/models/tree.ac
+%%DATADIR%%/models/truck1.ac
+%%DATADIR%%/models/truck1a.ac
+%%DATADIR%%/models/truck1b.ac
+%%DATADIR%%/models/truck1c.ac
+%%DATADIR%%/models/truck1d.ac
+%%DATADIR%%/models/truck2.ac
+%%DATADIR%%/models/truck2a.ac
+%%DATADIR%%/models/truck2b.ac
+%%DATADIR%%/models/truck2c.ac
+%%DATADIR%%/models/truck2d.ac
+%%DATADIR%%/models/truck3.ac
+%%DATADIR%%/models/truck3a.ac
+%%DATADIR%%/models/truck4.ac
+%%DATADIR%%/models/truck4a.ac
+%%DATADIR%%/models/truck_jump.ac
+%%DATADIR%%/models/tube9.ac
+%%DATADIR%%/models/tumbling_jump_pad.ac
+%%DATADIR%%/models/tuxbox.ac
+%%DATADIR%%/models/tuxcopter.ac
+%%DATADIR%%/models/tuxedo.ac
+%%DATADIR%%/models/venus_penguin_trap.ac
+%%DATADIR%%/models/wall.ac
+%%DATADIR%%/models/waterfall.ac
+%%DATADIR%%/models/waterfall2.ac
+%%DATADIR%%/models/wedgie.ac
+%%DATADIR%%/models/xmastree.ac
+%%DATADIR%%/mods/007.mod
+%%DATADIR%%/mods/ambient.mod
+%%DATADIR%%/mods/anthygo.mod
+%%DATADIR%%/mods/bach.mod
+%%DATADIR%%/mods/bach_3.mod
+%%DATADIR%%/mods/crazy_s.mod
+%%DATADIR%%/mods/fantasia.mod
+%%DATADIR%%/mods/mozart.mod
+%%DATADIR%%/mods/sal_dpso.mod
+%%DATADIR%%/mods/theme.mod
+%%DATADIR%%/mods/wildwood.mod
+%%DATADIR%%/penguin/Gown_beak.rgb
+%%DATADIR%%/penguin/Gown_body.rgb
+%%DATADIR%%/penguin/Penguin_beak.rgb
+%%DATADIR%%/penguin/Penguin_body.rgb
+%%DATADIR%%/penguin/Penguin_foot.rgba
+%%DATADIR%%/penguin/Penguin_orig.rgb
+%%DATADIR%%/penguin/Robin_body.rgb
+%%DATADIR%%/penguin/Scorpion_body.rgb
+%%DATADIR%%/penguin/SuperTux.rgb
+%%DATADIR%%/penguin/bakiny_tux.rgb
+%%DATADIR%%/penguin/blue_neon.rgb
+%%DATADIR%%/penguin/bow.ac
+%%DATADIR%%/penguin/bow.rgb
+%%DATADIR%%/penguin/gold_penguin.ac
+%%DATADIR%%/penguin/gown_beak.ac
+%%DATADIR%%/penguin/gown_beak_halfopen.ac
+%%DATADIR%%/penguin/gown_beak_open.ac
+%%DATADIR%%/penguin/gown_blink.ac
+%%DATADIR%%/penguin/gown_body.ac
+%%DATADIR%%/penguin/gown_bubble.ac
+%%DATADIR%%/penguin/gown_dizzy.ac
+%%DATADIR%%/penguin/gown_halfblink.ac
+%%DATADIR%%/penguin/gown_head.ac
+%%DATADIR%%/penguin/gown_lflipper.ac
+%%DATADIR%%/penguin/gown_lfoot.ac
+%%DATADIR%%/penguin/gown_rflipper.ac
+%%DATADIR%%/penguin/gown_rfoot.ac
+%%DATADIR%%/penguin/gown_slide.ac
+%%DATADIR%%/penguin/partygear.rgba
+%%DATADIR%%/penguin/penguin_256x256.rgb
+%%DATADIR%%/penguin/penguin_beak.ac
+%%DATADIR%%/penguin/penguin_beak_halfopen.ac
+%%DATADIR%%/penguin/penguin_beak_open.ac
+%%DATADIR%%/penguin/penguin_blink.ac
+%%DATADIR%%/penguin/penguin_body.ac
+%%DATADIR%%/penguin/penguin_body_safe.ac
+%%DATADIR%%/penguin/penguin_body_safe2.ac
+%%DATADIR%%/penguin/penguin_bubble.ac
+%%DATADIR%%/penguin/penguin_dizzy.ac
+%%DATADIR%%/penguin/penguin_halfblink.ac
+%%DATADIR%%/penguin/penguin_head.ac
+%%DATADIR%%/penguin/penguin_lflipper.ac
+%%DATADIR%%/penguin/penguin_lfoot.ac
+%%DATADIR%%/penguin/penguin_rflipper.ac
+%%DATADIR%%/penguin/penguin_rfoot.ac
+%%DATADIR%%/penguin/penguin_slide.ac
+%%DATADIR%%/penguin/red_ripple.rgb
+%%DATADIR%%/penguin/supergown_body.ac
+%%DATADIR%%/penguin/superpenguin_body.ac
+%%DATADIR%%/penguin/tux.ac
+%%DATADIR%%/wavs/ahh.wav
+%%DATADIR%%/wavs/ahooga.wav
+%%DATADIR%%/wavs/barf.wav
+%%DATADIR%%/wavs/boing.wav
+%%DATADIR%%/wavs/bonk.wav
+%%DATADIR%%/wavs/burp.wav
+%%DATADIR%%/wavs/clap.wav
+%%DATADIR%%/wavs/drip.wav
+%%DATADIR%%/wavs/frog.wav
+%%DATADIR%%/wavs/glasbk.wav
+%%DATADIR%%/wavs/laser.wav
+%%DATADIR%%/wavs/moo.wav
+%%DATADIR%%/wavs/ow.wav
+%%DATADIR%%/wavs/pop.wav
+%%DATADIR%%/wavs/sinkdr.wav
+%%DATADIR%%/wavs/tarzan.wav
+%%DATADIR%%/wavs/ugh.wav
+%%DATADIR%%/wavs/wee.wav
+%%DATADIR%%/wavs/whip.wav
+%%DATADIR%%/wavs/whistle.wav
+%%DATADIR%%/wavs/who.wav
+%%DATADIR%%/wavs/who_else.wav
+@dirrm %%DATADIR%%/wavs
+@dirrm %%DATADIR%%/slamcode
+@dirrm %%DATADIR%%/penguin
+@dirrm %%DATADIR%%/mods
+@dirrm %%DATADIR%%/models
+@dirrm %%DATADIR%%/images
+@dirrm %%DATADIR%%/fonts
+@dirrm %%DATADIR%%/data
+@dirrm %%DATADIR%%
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Daniel Eischen freebsd_committer freebsd_triage 2013-07-11 16:43:17 UTC
State Changed
From-To: open->closed

Patch applied, nemysis is the new maintainer. 

Thanks for your contribution!