Commit graph

80 commits

Author SHA1 Message Date
christos
1803a55512 update to 3.9.5 2009-08-15 15:30:06 +00:00
joerg
e209761d06 Remove @dirrm entries from PLISTs 2009-06-14 17:28:16 +00:00
wiz
60f460ab01 Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT
block). Uncomment some commented out LICENSE lines while here.
2009-05-19 08:59:00 +00:00
zafer
68c6f83546 No ftp service at rarlab. removed. 2009-05-02 12:37:10 +00:00
wiz
19f37065db Update to 3.8.3, changes unknown.
patch-aa was included upstream.
2008-10-09 13:27:35 +00:00
wiz
cd44c019d9 Remove workaround patch for old compiler problem, snj (who added it)
thinks it's not necessary any longer.

Bump PKGREVISION.
2008-09-21 10:45:34 +00:00
gdt
cb06fe749c Drop NO_BIN_ON_FTP per private correspondence with upstream author,
and include permission grant.  Simplify DESCR and add note about the
prohibition on using unrar to develop an rar-compatible archiver.
PKGREVISION++ due to DESCR change.
2008-09-16 11:59:02 +00:00
gdt
43cbc7900c Set NO_BIN_ON_FTP; not clear if our patches qualify as 'modified'. 2008-09-10 00:25:14 +00:00
wiz
645a66e3d2 Update to 3.7.8, changes unknown. 2007-11-25 23:16:14 +00:00
wiz
274fdc1966 Update to 3.7.5:
Changes undocumented, probably just bug fixes (diff is small).
2007-05-03 12:42:52 +00:00
wiz
b0d20dcf88 Update to 3.7.4:
Changes in \\ handling.
2007-03-08 18:25:26 +00:00
wiz
93d94d44e1 Update to 3.7.3.
Changes: secret, as always.
From the diffs it looks like some big-endian fixes and other small changes.
2007-02-05 23:03:50 +00:00
wiz
f05dc35ca8 Update to 3.7.2. Changes look like better character encoding support,
but no ChangeLog exists, so who knows...
2007-01-15 22:36:41 +00:00
joerg
aea9f31ecd DESTDIR support. 2006-11-14 13:50:13 +00:00
obache
e896edb7fe Rename variable MAKEFILE to MAKE_FILE. 2006-09-09 02:41:53 +00:00
wiz
045ef30e65 Update to 3.6.8:
diff -r 3.6.7/version.hpp 3.6.8/version.hpp
3,5c3,5
< #define RARVER_BETA      7
< #define RARVER_DAY      13
< #define RARVER_MONTH     7
---
> #define RARVER_BETA      0
> #define RARVER_DAY       5
> #define RARVER_MONTH     8
2006-08-22 18:23:46 +00:00
wiz
11e7f85fdf Update to 3.6.7:
diff -r 3.6.6/dll.cpp 3.6.7/dll.cpp
56d55
<       delete Data;
57a57
>       delete Data;
62d61
<       delete Data;
63a63
>       delete Data;
diff -r 3.6.6/version.hpp 3.6.7/version.hpp
3,4c3,4
< #define RARVER_BETA      6
< #define RARVER_DAY       3
---
> #define RARVER_BETA      7
> #define RARVER_DAY      13
2006-07-17 17:15:24 +00:00
wiz
350ae37a28 Update to 3.6.6:
diff -r 3.6.5/consio.cpp 3.6.6/consio.cpp
124c124
< #elif defined(_EMX) || defined(_BEOS) || defined(__sparc) || defined(sparc)
---
> #elif defined(_EMX) || defined(_BEOS) || defined(__sparc) || defined(sparc) || defined (__VMS)
diff -r 3.6.5/file.cpp 3.6.6/file.cpp
435c435
< #if defined(_LARGEFILE_SOURCE) && !defined(_OSF_SOURCE)
---
> #if defined(_LARGEFILE_SOURCE) && !defined(_OSF_SOURCE) && !defined(__VMS)
diff -r 3.6.5/filefn.cpp 3.6.6/filefn.cpp
303c303
< #endif
---
> #else
304a305
> #endif
diff -r 3.6.5/list.cpp 3.6.6/list.cpp
67c67,70
<           switch(Arc.GetHeaderType())
---
>           int HeaderType=Arc.GetHeaderType();
>           if (HeaderType==ENDARC_HEAD)
>             break;
>           switch(HeaderType)
diff -r 3.6.5/rar.cpp 3.6.6/rar.cpp
16a17
>
20c21,22
< #ifndef SFX_MODULE
---
>
> #if !defined(_SFX_RTL_) && !defined(_WIN_32)
21a24
> #endif
23,25c26,27
<   #ifdef _EMX
<     EnumConfigPaths(argv[0],-1);
<   #endif
---
> #if !defined(SFX_MODULE) && defined(_EMX)
>   EnumConfigPaths(argv[0],-1);
diff -r 3.6.5/sha1.cpp 3.6.6/sha1.cpp
210c210
<     unsigned char ch='\200';
---
>     unsigned char ch=(unsigned char)'\200';
diff -r 3.6.5/unicode.cpp 3.6.6/unicode.cpp
18c18
<   if (wcstombs(Dest,Src,DestSize)==-1)
---
>   if (wcstombs(Dest,Src,DestSize)==(size_t)-1)
56c56
<   if (mbstowcs(Dest,Src,DestSize)==-1)
---
>   if (mbstowcs(Dest,Src,DestSize)==(size_t)-1)
diff -r 3.6.5/version.hpp 3.6.6/version.hpp
3,5c3,5
< #define RARVER_BETA      5
< #define RARVER_DAY      15
< #define RARVER_MONTH     6
---
> #define RARVER_BETA      6
> #define RARVER_DAY       3
> #define RARVER_MONTH     7
2006-07-10 16:09:59 +00:00
wiz
bbf17ad590 Update to 3.6.5, diff to 3.6.4:
601a602,604
>           else
>           {
>           }
diff -r 3.6.4/extract.cpp unrar/extract.cpp
31,32c31,46
<     while (ExtractArchive(Cmd)==EXTRACT_ARC_REPEAT)
<       ;
---
>     while (true)
>     {
>       char PrevCmdPassword[MAXPASSWORD];
>       strcpy(PrevCmdPassword,Cmd->Password);
>
>       EXTRACT_ARC_CODE Code=ExtractArchive(Cmd);
>
> /*
>       restore Cmd->Password which could be changed in IsArchive() call
>       for next header encrypted archive
> */
>       strcpy(Cmd->Password,PrevCmdPassword);
>
>       if (Code!=EXTRACT_ARC_REPEAT)
>         break;
>     }
143a158
>
diff -r 3.6.4/extract.hpp unrar/extract.hpp
8a9,10
>     EXTRACT_ARC_CODE ExtractArchive(CommandData *Cmd);
>
34d35
<     EXTRACT_ARC_CODE ExtractArchive(CommandData *Cmd);
diff -r 3.6.4/version.hpp unrar/version.hpp
3,5c3,5
< #define RARVER_BETA      4
< #define RARVER_DAY      25
< #define RARVER_MONTH     5
---
> #define RARVER_BETA      5
> #define RARVER_DAY      15
> #define RARVER_MONTH     6
2006-07-03 20:40:48 +00:00
wiz
96ec9e7eab Update to 3.6.4:
diff -r 3.6.3/extract.cpp 3.6.4/extract.cpp
431c431,434
<     if (AbsPaths && DestFileName[1]=='_' && IsPathDiv(DestFileName[2]))
---
>     char DiskLetter=toupper(DestFileName[0]);
>
>     if (AbsPaths && DestFileName[1]=='_' && IsPathDiv(DestFileName[2]) &&
>         DiskLetter>='A' && DiskLetter<='Z')
diff -r 3.6.3/version.hpp 3.6.4/version.hpp
3,4c3,4
< #define RARVER_BETA      3
< #define RARVER_DAY       8
---
> #define RARVER_BETA      4
> #define RARVER_DAY      25
2006-05-30 21:27:07 +00:00
wiz
1680ecb8a0 Update to 3.6.3: changes unknown. 2006-05-17 21:49:30 +00:00
wiz
93ebdaf6d2 Update to 3.6.2, no changelog available. 2006-04-28 16:24:27 +00:00
rillig
a64786e18f Fixed pkglint warnings. 2006-02-11 11:12:05 +00:00
wiz
7711caee49 Update to 3.5.4.
No changelog available, but probably includes:
o fixed two vulnerabilities, which could be exploited with
  specially crafted ACE and UUE/XXE archives;
2005-10-12 13:59:19 +00:00
wiz
d6c9a62d35 Fix compilation on Solaris/i386. From Gilles Dauphin in PR 30902. 2005-09-17 20:37:29 +00:00
wiz
972a9eb3d6 Update to 3.5.3.
Diff to previous version is only 215 lines, no change log available.
2005-09-05 00:44:49 +00:00
wiz
c03cbe16b3 Update to 3.5.2, changes unknown. 2005-05-21 15:30:06 +00:00
agc
f1a84844c6 Add RMD160 digests in addition to SHA1 ones. 2005-02-23 14:45:22 +00:00
adam
b1a90e71ed Changes 3.4.3:
* bug fixes and improvements
2004-11-04 10:15:57 +00:00
wiz
3f32f93e66 Add ftp master site. 2004-10-27 17:02:00 +00:00
xtraeme
99f8e812b3 USE_GCC_SHLIB is deprecated. 2004-07-31 03:48:30 +00:00
minskim
5a4e75ef0d Enable pkgviews installation. 2004-07-28 02:47:34 +00:00
grant
16b9021dbf this package doesn't have a configure target. 2004-07-03 13:30:29 +00:00
grant
5ce0ba183f USE_LANGUAGES=c++ 2004-04-18 09:21:55 +00:00
snj
3f1741b61c Fix compilation of the SHA1 code on sparc64 by giving each round its
own function.
2004-03-30 23:36:45 +00:00
grant
3ad43a6467 indent block 2004-03-27 14:21:21 +00:00
tv
d5fd979bf8 Add Interix to non-largefile opsystems. Obey CPPFLAGS. 2004-03-11 21:39:17 +00:00
wiz
e4c1da2caf Update to 3.3.6:
Some fixes for the libunrar.so (not installed) and Win32 changes.
Two parts of the diff look like they might be minor bugfixes.
[No changelog available...]
2004-02-27 15:28:20 +00:00
agc
dc52048e01 Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:07:06 +00:00
wiz
2738faa1e1 Update to 3.3.4. Changes not found. 2004-01-19 20:18:02 +00:00
seb
e47e17b61d Undo last unwanted commit. 2004-01-02 16:05:13 +00:00
seb
51b4487a57 Remove info files from PLIST files. 2004-01-02 16:03:11 +00:00
fredb
edd110d687 Update to unrar-3.2.3. The only change, is that it fixes the build under
gcc-3* a slightly different way than patch-ab did.
2003-10-09 00:07:27 +00:00
fredb
8520e945aa Conditionally override ${DEFINES}, which is normally set in the default
makefile, to unset -D_LARGEFILE_SOURCE in the least intrusive way for
supported platforms which don't have ftello() and fseeko() -- currently
only NetBSD-1.5*. Closes PR pkg/23085 by Markus Kurek.
2003-10-08 23:54:07 +00:00
grant
ab50b3bf90 this pkg needs gcc shared libs. 2003-09-12 12:41:47 +00:00
grant
91f00f1cbc s/netbsd.org/NetBSD.org/ 2003-07-17 21:21:03 +00:00
jmmv
cf2e12e813 Fix build when using gcc3. 2003-07-17 20:21:30 +00:00
wiz
83a75a1b15 Comment out CXXFLAGS so that the value of the environment variable is used.
Requested by Adam Ciarcinski.
2003-05-23 09:19:01 +00:00
wiz
9b235397a2 Update to 3.2.2, from Juan RP in PR 21629.
Changes: minor bugfixes (complete diff to last version is <40 lines).
2003-05-20 15:26:47 +00:00
wiz
71ed229463 Remove sentence about license (in licenses/ dir), and |fmt. 2003-05-19 07:37:24 +00:00