svn commit: r316990 - in head/sysutils: . fusefs-fusepak

Alexey Dokuchaev danfe at FreeBSD.org
Wed May 1 06:37:48 UTC 2013


Author: danfe
Date: Wed May  1 06:37:47 2013
New Revision: 316990
URL: http://svnweb.freebsd.org/changeset/ports/316990

Log:
  Add fusepak, small program that makes it possible to mount PACK or WAD files
  (used in many games, most notably by id Software).
  
  WWW: http://fusepak.sourceforge.net/

Added:
  head/sysutils/fusefs-fusepak/
  head/sysutils/fusefs-fusepak/Makefile   (contents, props changed)
  head/sysutils/fusefs-fusepak/distinfo   (contents, props changed)
  head/sysutils/fusefs-fusepak/pkg-descr   (contents, props changed)
Modified:
  head/sysutils/Makefile

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Wed May  1 06:19:25 2013	(r316989)
+++ head/sysutils/Makefile	Wed May  1 06:37:47 2013	(r316990)
@@ -277,6 +277,7 @@
     SUBDIR += fusefs-ext4fuse
     SUBDIR += fusefs-funionfs
     SUBDIR += fusefs-fur
+    SUBDIR += fusefs-fusepak
     SUBDIR += fusefs-fusexmp_fh
     SUBDIR += fusefs-gnome-vfs
     SUBDIR += fusefs-gstfs

Added: head/sysutils/fusefs-fusepak/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/fusefs-fusepak/Makefile	Wed May  1 06:37:47 2013	(r316990)
@@ -0,0 +1,26 @@
+# Created by: Alexey Dokuchaev <danfe at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	fusepak
+PORTVERSION=	0.5
+CATEGORIES=	sysutils games
+MASTER_SITES=	SF
+PKGNAMEPREFIX=	fusefs-
+
+MAINTAINER=	danfe at FreeBSD.org
+COMMENT=	Mount packed data files of various games (PACK, WAD, etc.)
+
+LICENSE=	GPLv2
+
+USE_BZIP2=	yes
+GNU_CONFIGURE=	yes
+USES=		fuse pkgconfig
+
+PLIST_FILES=	bin/pakmount
+MAN1=		pakmount.1
+
+post-patch:
+	@${REINPLACE_CMD} -e 's,Linux,${OPSYS}, ; s,Fatnasy,Fantasy,' \
+		${WRKSRC}/src/${MAN1}
+
+.include <bsd.port.mk>

Added: head/sysutils/fusefs-fusepak/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/fusefs-fusepak/distinfo	Wed May  1 06:37:47 2013	(r316990)
@@ -0,0 +1,2 @@
+SHA256 (fusepak-0.5.tar.bz2) = 63c2ed7a1c8f868803fcdbb3859d5c2c058d31a8fb4a24d11e4cbfa91df1d41d
+SIZE (fusepak-0.5.tar.bz2) = 107234

Added: head/sysutils/fusefs-fusepak/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/fusefs-fusepak/pkg-descr	Wed May  1 06:37:47 2013	(r316990)
@@ -0,0 +1,17 @@
+Fusepak is a small program that makes it possible to mount PACK or WAD files
+(used in many games, most notably by id Software) under a directory.  This
+is achieved by using FUSE (Filesystem in Userspace).  The following formats
+are supported:
+
+  - WAD, can be found in Wolfenstein 3D and Spear of Destiny games
+  - PACK, can be found in Quake, Quake2, and other games based on
+    id Software's Quake engine
+  - WAD2, can be found inside of PACK files
+  - LGP, can be found in PC version of Final Fantasy VII
+  - PAK, can be found in Dune 2
+  - KSGRP, can be found in Duke Nukem 3D
+
+Secondary goal of fusepak is to provide simple framework which allows one to
+quickly add support for another file format.
+
+WWW: http://fusepak.sourceforge.net/


More information about the svn-ports-all mailing list