Bug 187055 - games/viruskiller: Fix build
Summary: games/viruskiller: Fix build
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: Martin Wilke
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-02-25 18:10 UTC by tkato432
Modified: 2014-02-27 09:30 UTC (History)
0 users

See Also:


Attachments
file.diff (5.23 KB, patch)
2014-02-25 18:10 UTC, tkato432
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description tkato432 2014-02-25 18:10:05 UTC
- Fix build
- Fix pathname in desktop entry file

New file:
files/patch-src__pak.cpp
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2014-02-25 18:12:28 UTC
Responsible Changed
From-To: freebsd-ports-bugs->miwi

miwi@ wants this submitter's PRs (via the GNATS Auto Assign Tool)
Comment 2 Martin Wilke freebsd_committer freebsd_triage 2014-02-27 09:24:15 UTC
State Changed
From-To: open->closed

Committed. Thanks!
Comment 3 dfilter service freebsd_committer freebsd_triage 2014-02-27 09:24:24 UTC
Author: miwi
Date: Thu Feb 27 09:24:15 2014
New Revision: 346300
URL: http://svnweb.freebsd.org/changeset/ports/346300
QAT: https://qat.redports.org/buildarchive/r346300/

Log:
  - Fix build
  - Fix pathname in desktop entry file
  
  PR:		187055

Added:
  head/games/viruskiller/files/
  head/games/viruskiller/files/patch-src__pak.cpp   (contents, props changed)
Modified:
  head/games/viruskiller/Makefile
  head/games/viruskiller/pkg-descr
  head/games/viruskiller/pkg-plist

Modified: head/games/viruskiller/Makefile
==============================================================================
--- head/games/viruskiller/Makefile	Thu Feb 27 09:22:59 2014	(r346299)
+++ head/games/viruskiller/Makefile	Thu Feb 27 09:24:15 2014	(r346300)
@@ -3,7 +3,7 @@
 
 PORTNAME=	viruskiller
 PORTVERSION=	1.03
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	games
 MASTER_SITES=	FRUGALWARE/games-extra/${PORTNAME}
 DISTNAME=	${PORTNAME}-${PORTVERSION}-1
@@ -13,40 +13,29 @@ COMMENT=	Arcade game that relies on quic
 
 LICENSE=	GPLv2
 
-OPTIONS_DEFINE=	DOCS
-
-USE_SDL=	mixer image ttf net
-USES=		gmake
-
-BROKEN=		Does not build
-DEPRECATED=	Broken for more then 6 month
-EXPIRATION_DATE=	2014-02-27
-
-INSTALLS_ICONS=	yes
-
 WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
 
+USES=		gmake
+USE_SDL=	mixer image ttf net
 MAKEFILE=	makefile
+INSTALLS_ICONS=	yes
 
-NO_STAGE=	yes
-.include <bsd.port.options.mk>
-
-.if ${ARCH} == "amd64"
-BROKEN=	Does not build with new libz
-.endif
+OPTIONS_DEFINE=	DOCS
 
 post-patch:
-	# Remove non-free restricted files:
-	${RM} -f ${WRKSRC}/music/* ${WRKSRC}/sound/*
-
-.if ${PORT_OPTIONS:MDOCS}
-	@${REINPLACE_CMD} -e "s|^.*install.*DOCS.*||g" \
-		-e "s|^.*mkdir.*DOCDIR.*||g" \
-		${WRKSRC}/makefile
-.endif
-	@${REINPLACE_CMD} -e "s|^PREFIX.*|PREFIX=${PREFIX}|g" \
-		-e "s|^BINDIR.*|BINDIR=${PREFIX}/bin/|g" \
-		-e "s|^DATADIR.*|DATADIR=${DATADIR}/|g" \
-		-e "s|^DOCDIR.*|DOCDIR=${DOCSDIR}|g" ${WRKSRC}/makefile
+	@${REINPLACE_CMD} -e \
+		'/^DOCS/s|=.*|= doc/README doc/*.*| ; \
+		 /^PREFIX/s|=.*|= ${PREFIX}| ; \
+		 /^BINDIR/s|=.*|= $$(DESTDIR)$$(PREFIX)/bin/| ; \
+		 /^DATADIR/s|=.*|= $$(DESTDIR)$$(PREFIX)/${DATADIR_REL}/| ; \
+		 /^DOCDIR/s|=.*|= $$(DESTDIR)$$(PREFIX)/${DOCSDIR_REL}/| ; \
+		 /^ICONDIR/s|=.*|= $$(DESTDIR)$$(PREFIX)/share/icons/hicolor/| ; \
+		 /^DESKTOPDIR/s|=.*|= $$(DESTDIR)$$(PREFIX)/share/applications/| ; \
+		 s|install .* 755|$${BSD_INSTALL_PROGRAM}| ; \
+		 s|install .* 644|$${BSD_INSTALL_DATA}| ; \
+		 /ICONS/s|cp|$${BSD_INSTALL_DATA}|' ${WRKSRC}/makefile
+	@${REINPLACE_CMD} -e \
+		's|.png|| ; \
+		 s|/usr/games/||' ${WRKSRC}/icons/viruskiller.desktop
 
 .include <bsd.port.mk>

Added: head/games/viruskiller/files/patch-src__pak.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/viruskiller/files/patch-src__pak.cpp	Thu Feb 27 09:24:15 2014	(r346300)
@@ -0,0 +1,27 @@
+--- src/pak.cpp.orig
++++ src/pak.cpp
+@@ -124,7 +124,7 @@
+ 			{
+ 				printf("Couldn't open %s for reading!\n", filename);
+ 				closedir(dirp);
+-				gzclose(pak);
++				gzclose((gzFile)pak);
+ 				exit(1);
+ 			}
+ 			
+@@ -156,13 +156,13 @@
+ 			{
+ 				printf("Couldn't open %s for reading!\n", filename);
+ 				closedir(dirp);
+-				gzclose(pak);
++				gzclose((gzFile)pak);
+ 				exit(1);
+ 			}
+ 			else
+ 			{
+ 				fSize = gzread(fp, buffer, filesize);
+-				gzclose(fp);
++				gzclose((gzFile)fp);
+ 
+ 				cSize = (uLongf)((fSize * 1.01) + 12);
+ 				compress2(output, &cSize, buffer, fSize, 9);

Modified: head/games/viruskiller/pkg-descr
==============================================================================
--- head/games/viruskiller/pkg-descr	Thu Feb 27 09:22:59 2014	(r346299)
+++ head/games/viruskiller/pkg-descr	Thu Feb 27 09:24:15 2014	(r346300)
@@ -1,9 +1,9 @@
-Your computer has been invaded! Dozens of little viruses are pouring in via
-security holes in Microsoft Internet Explorer, Microsoft Outlook, Microsoft MSN
-Messenger and Microsoft Recycle Bin!! Using your trusty mouse you must shoot the
-buggers before they can destroy your files! Some will steal them from their home
-directories and take them back to their security hole. Others will just eat them
-right there on the spot! See how long you and your computer can survive the
-onslaught!
+Your computer has been invaded! Dozens of little viruses are pouring in
+via security holes in Microsoft Internet Explorer, Microsoft Outlook,
+Microsoft MSN Messenger and Microsoft Recycle Bin!! Using your trusty
+mouse you must shoot the buggers before they can destroy your files!
+Some will steal them from their home directories and take them back to
+their security hole. Others will just eat them right there on the spot!
+See how long you and your computer can survive the onslaught!
 
 WWW: http://www.parallelrealities.co.uk/projects/virusKiller.php

Modified: head/games/viruskiller/pkg-plist
==============================================================================
--- head/games/viruskiller/pkg-plist	Thu Feb 27 09:22:59 2014	(r346299)
+++ head/games/viruskiller/pkg-plist	Thu Feb 27 09:24:15 2014	(r346300)
@@ -1,6 +1,5 @@
 bin/viruskiller
-%%DATADIR%%/viruskiller.pak
-%%PORTDOCS%%%%DOCSDIR%%/LICENSE
+share/applications/viruskiller.desktop
 %%PORTDOCS%%%%DOCSDIR%%/README
 %%PORTDOCS%%%%DOCSDIR%%/battery.png
 %%PORTDOCS%%%%DOCSDIR%%/bomb.png
@@ -13,14 +12,6 @@ bin/viruskiller
 share/icons/hicolor/16x16/apps/viruskiller.png
 share/icons/hicolor/32x32/apps/viruskiller.png
 share/icons/hicolor/64x64/apps/viruskiller.png
-share/applications/viruskiller.desktop
+%%DATADIR%%/viruskiller.pak
+@dirrm %%DATADIR%%
 %%PORTDOCS%%@dirrm %%DOCSDIR%%
-@dirrmtry %%DATADIR%%
-@dirrmtry share/icons/hicolor/64x64/apps
-@dirrmtry share/icons/hicolor/64x64
-@dirrmtry share/icons/hicolor/32x32/apps
-@dirrmtry share/icons/hicolor/32x32
-@dirrmtry share/icons/hicolor/16x16/apps
-@dirrmtry share/icons/hicolor/16x16
-@dirrmtry share/icons/hicolor
-@dirrmtry share/icons
_______________________________________________
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"