summaryrefslogtreecommitdiff
path: root/archivers/unrar
AgeCommit message (Collapse)AuthorFilesLines
2009-08-15update to 3.9.5christos2-6/+6
2009-06-14Remove @dirrm entries from PLISTsjoerg1-2/+1
2009-05-19Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENTwiz1-12/+12
block). Uncomment some commented out LICENSE lines while here.
2009-05-02No ftp service at rarlab. removed.zafer1-3/+2
2008-10-09Update to 3.8.3, changes unknown.wiz4-50/+14
patch-aa was included upstream.
2008-09-21Remove workaround patch for old compiler problem, snj (who added it)wiz3-103/+3
thinks it's not necessary any longer. Bump PKGREVISION.
2008-09-16Drop NO_BIN_ON_FTP per private correspondence with upstream author,gdt2-9/+17
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-10Set NO_BIN_ON_FTP; not clear if our patches qualify as 'modified'.gdt1-1/+2
2007-11-25Update to 3.7.8, changes unknown.wiz2-6/+6
2007-05-03Update to 3.7.5:wiz2-6/+6
Changes undocumented, probably just bug fixes (diff is small).
2007-03-08Update to 3.7.4:wiz2-6/+6
Changes in \\ handling.
2007-02-05Update to 3.7.3.wiz2-6/+6
Changes: secret, as always. From the diffs it looks like some big-endian fixes and other small changes.
2007-01-15Update to 3.7.2. Changes look like better character encoding support,wiz2-6/+6
but no ChangeLog exists, so who knows...
2006-11-14DESTDIR support.joerg1-5/+5
2006-09-09Rename variable MAKEFILE to MAKE_FILE.obache1-2/+2
2006-08-22Update to 3.6.8:wiz2-6/+6
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-07-17Update to 3.6.7:wiz2-6/+6
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-10Update to 3.6.6:wiz2-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-03Update to 3.6.5, diff to 3.6.4:wiz2-6/+6
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-05-30Update to 3.6.4:wiz2-6/+6
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-17Update to 3.6.3: changes unknown.wiz2-6/+6
2006-04-28Update to 3.6.2, no changelog available.wiz3-19/+16
2006-02-11Fixed pkglint warnings.rillig1-7/+7
2005-10-12Update to 3.5.4.wiz2-6/+6
No changelog available, but probably includes: o fixed two vulnerabilities, which could be exploited with specially crafted ACE and UUE/XXE archives;
2005-09-17Fix compilation on Solaris/i386. From Gilles Dauphin in PR 30902.wiz2-1/+29
2005-09-05Update to 3.5.3.wiz2-6/+6
Diff to previous version is only 215 lines, no change log available.
2005-05-21Update to 3.5.2, changes unknown.wiz4-15/+15
2005-02-23Add RMD160 digests in addition to SHA1 ones.agc1-1/+2
2004-11-04Changes 3.4.3:adam3-13/+12
* bug fixes and improvements
2004-10-27Add ftp master site.wiz1-2/+3
2004-07-31USE_GCC_SHLIB is deprecated.xtraeme1-2/+1
2004-07-28Enable pkgviews installation.minskim1-1/+5
2004-07-03this package doesn't have a configure target.grant1-1/+2
2004-04-18USE_LANGUAGES=c++grant1-1/+2
2004-03-30Fix compilation of the SHA1 code on sparc64 by giving each round itssnj2-1/+104
own function.
2004-03-27indent blockgrant1-3/+3
2004-03-11Add Interix to non-largefile opsystems. Obey CPPFLAGS.tv3-10/+14
2004-02-27Update to 3.3.6:wiz3-13/+13
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-01-20Move WRKSRC definition away from the first paragraph in a Makefile.agc1-2/+3
2004-01-19Update to 3.3.4. Changes not found.wiz2-5/+5
2004-01-02Undo last unwanted commit.seb1-2/+1
2004-01-02Remove info files from PLIST files.seb1-1/+2
2003-10-09Update to unrar-3.2.3. The only change, is that it fixes the build underfredb3-26/+5
gcc-3* a slightly different way than patch-ab did.
2003-10-08Conditionally override ${DEFINES}, which is normally set in the defaultfredb1-1/+11
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-09-12this pkg needs gcc shared libs.grant1-1/+3
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-07-17Fix build when using gcc3.jmmv2-1/+22
2003-05-23Comment out CXXFLAGS so that the value of the environment variable is used.wiz2-4/+4
Requested by Adam Ciarcinski.
2003-05-20Update to 3.2.2, from Juan RP in PR 21629.wiz2-6/+5
Changes: minor bugfixes (complete diff to last version is <40 lines).
2003-05-19Remove sentence about license (in licenses/ dir), and |fmt.wiz1-8/+6