[csw-devel] SF.net SVN: gar:[7068] csw/mgar/pkg
dmichelsen at users.sourceforge.net
dmichelsen at users.sourceforge.net
Sun Nov 1 23:17:33 CET 2009
Revision: 7068
http://gar.svn.sourceforge.net/gar/?rev=7068&view=rev
Author: dmichelsen
Date: 2009-11-01 22:17:33 +0000 (Sun, 01 Nov 2009)
Log Message:
-----------
unrar: Initial commit
Added Paths:
-----------
csw/mgar/pkg/unrar/
csw/mgar/pkg/unrar/branches/
csw/mgar/pkg/unrar/tags/
csw/mgar/pkg/unrar/trunk/
csw/mgar/pkg/unrar/trunk/Makefile
csw/mgar/pkg/unrar/trunk/checksums
csw/mgar/pkg/unrar/trunk/files/
csw/mgar/pkg/unrar/trunk/files/unrar.1
Property changes on: csw/mgar/pkg/unrar/trunk
___________________________________________________________________
Added: svn:ignore
+ cookies
download
work
Added: svn:externals
+ gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2
Added: csw/mgar/pkg/unrar/trunk/Makefile
===================================================================
--- csw/mgar/pkg/unrar/trunk/Makefile (rev 0)
+++ csw/mgar/pkg/unrar/trunk/Makefile 2009-11-01 22:17:33 UTC (rev 7068)
@@ -0,0 +1,48 @@
+GARNAME = unrar
+GARVERSION = 3.9.6
+CATEGORIES = utils
+
+DESCRIPTION = Brief description
+define BLURB
+ Long description
+endef
+
+MASTER_SITES = http://www.rarlab.com/rar/
+DISTFILES = unrarsrc-$(GARVERSION).tar.gz
+DISTFILES += unrar.1
+
+# We define upstream file regex so we can be notifed of new upstream software release
+UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz
+
+SPKG_SOURCEURL = http://www.rarlab.com/rar_add.htm
+
+LICENSE = license.txt
+
+DISTNAME = unrar
+
+CONFIGURE_SCRIPTS =
+
+OPT_FLAGS_SOS = -fast -erroff=wvarhidemem
+
+#BUILD_SCRIPTS = $(WORKSRC)/makefile.unix
+BUILD_ARGS = -f makefile.unix CXX=$(CXX) CXXFLAGS="$(CXXFLAGS)" DEFINES="-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE" STRIP=strip
+
+TEST_SCRIPTS =
+
+INSTALL_SCRIPTS = custom
+
+#CXXFLAGS=-fast -erroff=wvarhidemem
+#DEFINES=-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
+#STRIP=strip
+#DESTDIR=/usr
+
+include gar/category.mk
+
+install-custom:
+ ginstall -d $(DESTDIR)$(mandir)/man1
+ ginstall $(WORKDIR)/unrar.1 $(DESTDIR)$(mandir)/man1/
+ ginstall -d $(DESTDIR)$(bindir)
+ ginstall $(WORKSRC)/unrar $(DESTDIR)$(bindir)
+ ginstall -d $(DESTDIR)$(docdir)/unrar
+ ginstall $(WORKSRC)/readme.txt $(DESTDIR)$(docdir)/unrar
+ @$(MAKECOOKIE)
Added: csw/mgar/pkg/unrar/trunk/checksums
===================================================================
--- csw/mgar/pkg/unrar/trunk/checksums (rev 0)
+++ csw/mgar/pkg/unrar/trunk/checksums 2009-11-01 22:17:33 UTC (rev 7068)
@@ -0,0 +1,2 @@
+16edfaa469364b9f3dce70ea557f62ea unrar.1
+07d7c5dd3d3b778fc1870a981c43a3d3 unrarsrc-3.9.6.tar.gz
Added: csw/mgar/pkg/unrar/trunk/files/unrar.1
===================================================================
--- csw/mgar/pkg/unrar/trunk/files/unrar.1 (rev 0)
+++ csw/mgar/pkg/unrar/trunk/files/unrar.1 2009-11-01 22:17:33 UTC (rev 7068)
@@ -0,0 +1,98 @@
+.TH UNRAR 1 02.11.1999 "" "RAR archiver"
+.SH NAME
+unrar \- extract files from rar archives
+.SH SYNOPSIS
+.B unrar
+.I "<command> [-<switch 1> -<switch N>] archive [files...] [path\...]"
+.SH "DESCRIPTION"
+This manual page documents briefly the
+.BR unrar
+command.
+.br
+This manual page was written for the Debian GNU/Linux distribution
+because the original program does not have a manual page.
+.br
+Commands and options described here are as of unrar 2.02.
+.SH OPTIONS
+After the program name comes a command and then optional switches with
+dashes before them.
+A summary of commands is included below.
+For a complete description, run
+.BR unrar
+without options.
+.TP
+.B e
+Extract files to current directory.
+.TP
+.B l
+List archive content.
+.TP
+.B p
+Print file to stdout.
+.TP
+.B t
+Test archive files.
+.TP
+.B v
+Verbosely list archive.
+.TP
+.B x
+Extract files with full path.
+.SH SWITCHES
+.BR NOTE:
+Every switch must be separated by a whitespace. You cannot put them
+together.
+.TP
+.B -av-
+Disable Authenticity Verification check.
+.TP
+.B -c-
+Disable comments show.
+.TP
+.B -f
+Freshen files.
+.TP
+.B -kb
+Keep broken extracted files.
+.TP
+.B -ierr
+Send all messages to stderr.
+.TP
+.B -inul
+Disable all messages.
+.TP
+.B -o+
+Overwrite existing files.
+.TP
+.B -o-
+Do not overwrite existing files.
+.TP
+.B -p<password>
+Set password.
+.TP
+.B -p-
+Do not query password.
+.TP
+.B -r
+Recurse subdirectories.
+.TP
+.B -u
+Update files.
+.TP
+.B -v
+List all volumes.
+.TP
+.B -x<file>
+Exclude specified file.
+.TP
+.B -x@<list>
+Exclude files in specified list file.
+.TP
+.B -x@
+Read file names to exclude from stdin.
+.TP
+.B -y
+Assume Yes on all queries.
+.SH AUTHOR
+This manual page was written by Petr Cech <cech at debian.org> according
+to "unrar \-h" for the Debian GNU/Linux system (but may be used by others).
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the devel
mailing list