svn commit: r316707 - in head/archivers: . par

Alexey Dokuchaev danfe at FreeBSD.org
Sun Apr 28 09:25:09 UTC 2013


Author: danfe
Date: Sun Apr 28 09:25:08 2013
New Revision: 316707
URL: http://svnweb.freebsd.org/changeset/ports/316707

Log:
  Add par 0.03.01, an archiver for Quake I and II packed data files (pakX.pak).
  It supports listing, extraction, and creation of .pak archives.
  
  WWW: http://ibiblio.org/pub/linux/games/quake/

Added:
  head/archivers/par/
  head/archivers/par/Makefile   (contents, props changed)
  head/archivers/par/distinfo   (contents, props changed)
  head/archivers/par/pkg-descr   (contents, props changed)
Modified:
  head/archivers/Makefile

Modified: head/archivers/Makefile
==============================================================================
--- head/archivers/Makefile	Sun Apr 28 08:20:44 2013	(r316706)
+++ head/archivers/Makefile	Sun Apr 28 09:25:08 2013	(r316707)
@@ -122,6 +122,7 @@
     SUBDIR += p7zip
     SUBDIR += packddir
     SUBDIR += paq
+    SUBDIR += par
     SUBDIR += par2cmdline
     SUBDIR += par2cmdline-tbb
     SUBDIR += parchive

Added: head/archivers/par/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/par/Makefile	Sun Apr 28 09:25:08 2013	(r316707)
@@ -0,0 +1,37 @@
+# Created by: Alexey Dokuchaev <danfe at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	par
+PORTVERSION=	0.03.01
+CATEGORIES=	archivers games
+MASTER_SITES=	http://ibiblio.org/pub/linux/games/quake/
+
+MAINTAINER=	danfe at FreeBSD.org
+COMMENT=	Archiver for Quake I and II packed data files
+
+LICENSE=	GPLv2
+
+MAKEFILE=	Makefile.Linux
+MAKE_ARGS=	CC="${CC}"
+
+PLIST_FILES=	bin/${PORTNAME}
+MAN1=		${PORTNAME}.1
+PORTDOCS=	ChangeLog README
+
+OPTIONS_DEFINE=	DOCS
+
+.include <bsd.port.options.mk>
+
+post-patch:
+	@${REINPLACE_CMD} -e 's,-Wall.*-pipe,${CFLAGS}, ; \
+		s,\"Linux,\"${OPSYS},' ${WRKSRC}/${MAKEFILE}
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
+	${INSTALL_MAN} ${WRKSRC}/${MAN1} ${MANPREFIX}/man/man1
+.if ${PORT_OPTIONS:MDOCS}
+	@${MKDIR} ${DOCSDIR}
+	${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}
+.endif
+
+.include <bsd.port.mk>

Added: head/archivers/par/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/par/distinfo	Sun Apr 28 09:25:08 2013	(r316707)
@@ -0,0 +1,2 @@
+SHA256 (par-0.03.01.tar.gz) = e68a3b78586cd762b29f5d5edca8ea9f263fa100423f4d4fee36c7e0a5061122
+SIZE (par-0.03.01.tar.gz) = 21380

Added: head/archivers/par/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/par/pkg-descr	Sun Apr 28 09:25:08 2013	(r316707)
@@ -0,0 +1,4 @@
+This is par, an archiver for Quake I and II packed data files (pakX.pak).
+It supports listing, extraction, and creation of .pak archives.
+
+WWW: http://ibiblio.org/pub/linux/games/quake/


More information about the svn-ports-all mailing list