Commit graph

1116 commits

Author SHA1 Message Date
tv
30bff10267 Give the hack a PKG_HACKS name. 2005-01-24 20:48:35 +00:00
tv
f99a394656 Fix build on Interix (and others with pkgsrc gettext-lib 0.11+).
gettext 0.11+ has renamed internal symbols, and gsharutils is
being a very bad neighbor by using them directly.  To fix, force
use of gettext >= 0.11, and rename the symbol in gsharutils.
2005-01-24 20:15:58 +00:00
tv
1935d32e41 Hopefulyl final Interix fix: make test_filesystem.cpp build. 2005-01-24 17:57:15 +00:00
tv
71df7a37b7 Another Interix fix: Fix nonstatic linking in src/testing subdir. 2005-01-24 17:51:57 +00:00
tv
707a9c500e Fix build on Interix. (Changes submitted to author.) 2005-01-24 16:58:06 +00:00
tv
27336adf1c Also include <sys/types.h> in case neither <stdint.h> nor <inttypes.h> exist.
Fixes build on Interix.
2005-01-24 16:22:51 +00:00
tv
151680c59e Move GCC_REQD-for-Interix check into a hacks.mk; suggested by jlam. 2005-01-21 21:48:32 +00:00
wiz
c2e5845c49 Due to popular demand, move distfile to MASTER_SITE_LOCAL. 2005-01-21 21:13:22 +00:00
tv
46ca5a81b9 Add GCC_REQD for Interix to prevent use of the base system gcc, which is
missing "long long" support in iostream.
2005-01-21 20:57:54 +00:00
wiz
2190f786de Add two patches from RedHat, fixing CAN-2004-0947 and CAN-2004-1027.
Bump PKGREVISION.
2005-01-21 14:42:10 +00:00
wiz
7038b3baad regen with correct offsets 2005-01-21 14:41:16 +00:00
wiz
9a58371972 Add Makefile, since distfiles comes without one. 2005-01-21 14:30:32 +00:00
wiz
ded2e0bf4a Update to 2.65. (Documented) changes:
UNARJ 2.65 - Fixed table boundaries per suggestion of
     UNARJ 2.63 - Added additional header data checks.
     UNARJ 2.61 - Added chapter and encryption information.
2005-01-21 14:30:05 +00:00
tv
f863e28c0d Fix install on non-NetBSD (don't put a trailing / on a dir name to
${INSTALL_*_DIR}).
2005-01-21 02:50:35 +00:00
tv
2103c3d3ec Don't do the Makefile.dep dance; that's not needed in pkgsrc and breaks in
some bizarre way on Interix.  This also makes the build more friendly to
non-gcc compilers.
2005-01-21 02:48:21 +00:00
tv
53e15ad81c Use PTHREAD_AUTO_VARS to get the correct compile options; fixes Interix. 2005-01-21 02:39:23 +00:00
tv
ec0bcae0d8 Mark as not for Interix. 2005-01-21 02:33:47 +00:00
tv
a1397aab8f Need --enable-os-bits for Interix. 2005-01-21 02:29:33 +00:00
tv
a0d80c958b Compile fix for Interix. 2005-01-19 17:39:13 +00:00
tv
0c81501f41 nb4: Add missing dependency on gettext-lib for platforms that need it. 2005-01-19 17:35:48 +00:00
tv
691d3550c7 Build fix for Interix: strerror() is your friend. 2005-01-19 17:08:09 +00:00
tv
867a283ed5 Use new libiberty/application.mk include. 2005-01-18 22:01:52 +00:00
tv
bb1dc3ebe7 Add makedev->mkdev fix for Interix, adapted from gtar-base. 2005-01-18 16:04:39 +00:00
tv
8804a27191 The make rule worked and then didn't work, so make this work again on
NetBSD et al by putting the dynamic PLIST component in post-install.
2005-01-16 22:28:40 +00:00
tv
eae1157537 Make build on Interix. 2005-01-16 16:57:12 +00:00
tv
416028dc9d MAke build on Interix. 2005-01-16 16:39:08 +00:00
tv
ef32158eb7 Make this build on Interix. (Apparently the sysexits.h override operation
in configure.ac was a little backwards....)
2005-01-16 04:44:50 +00:00
wiz
e959dbc77c Fix build on 1.6.2 by respecting LDFLAGS (and CXXFLAGS, while I am here). 2005-01-14 13:08:51 +00:00
wiz
3256f0ec6e Add and enable pbzip2. 2005-01-12 13:46:42 +00:00
wiz
9e66c6f247 Initial import of pbzip2:
The pbzip2 program is a parallel version of bzip2 for use on shared
memory machines.  It provides near-linear speedup when used on true
multi-processor machines and 5-10% speedup on Hyperthreaded machines.
The output is fully compatible with the regular bzip2 data so any
files created with pbzip2 can be uncompressed by bzip2 and vice-versa.
2005-01-12 13:45:27 +00:00
recht
17d722c669 update to gtar 1.15.1
changes:
- enable installation of grmt

changes in gtar:
version 1.15.1 - Sergey Poznyakoff, 2004-12-21

This version fixes a bug introduced in 1.15 which caused
tar to refuse to extract files from standard input.

version 1.15 - Sergey Poznyakoff, 2004-12-20

* Compressed archives are recognised automatically, it is no longer
necessary to specify -Z, -z, or -j options to read them. Thus, you can
now run `tar tf archive.tar.gz'.

* When restoring incremental dumps, --one-file-system option
prevents directory hierarchies residing on different devices
from being purged.

With the previous versions of tar it was dangerous to create
incremental dumps with --one-file-system option, since they
would recursively remove mount points when restoring from the
back up. This change fixes the bug.

* Renamed --strip-path to --strip-components for consistency with
the GNU convention.

* Skipping archive members is sped up if the archive media supports
seeks.

* Restore script starts restoring only if it is given --all (-a) option,
or some patterns. This is to prevent accidental restores.

* `tar --verify' prints a warning if during archive creation some of
the file names had their prefixes stripped off.

* New option --exclude-caches instructs tar to exclude cache directories
automatically on archive creation. Cache directories are those
containing a standardized tag file, as specified at:

	http://www.brynosaurus.com/cachedir/spec.html

* New configure option --with-rmt allows to specify full path name to
the `rmt' utility. This supercedes DEFAULT_RMT_COMMAND variable
introduced in version 1.14

* New configure variable DEFAULT_RMT_DIR allows to specify the directory
where to install `rmt' utility. This is necessary since modifying
--libexecdir as was suggested for version 1.14 produced a side effect: it
also modified installation prefix for backup scripts (if
--enable-backup-scripts was given).

* Bugfixes:
** Fixed flow in recognizing files to be included in incremental dumps.
** Correctly recognize sparse archive members when used with -T option.
** GNU multivolume headers cannot store filenames longer than 100 characters.
Do not allow multivolume archives to begin with such filenames.
** If a member with link count > 2 was stored in the archive twice,
previous versions of tar were not able to extract it, since they
were trying to link the file to itself, which always failed and
lead to removing the already extracted copy. Preserve the first
extracted copy in such cases.
** Restore script was passing improper argument to tar --listed option (which
didn't affect the functionality, but was logically incorrect).
** Fixed verification of created archives.
** Fixed unquoting of file names containing backslash escapes (previous
versions failed to recognize \a and \v).
** When attempting to delete a non-existing member from the archive, previous
versions of tar used to overwrite last archive block with zeroes.
2005-01-09 22:52:13 +00:00
tv
049d18c583 Don't "cp -p" for *source* files. Builds are usually done as an unprivileged
user, so it's not nice to try to use an option that will try to chown if
the repository isn't owned by the builder.

(Some OS's do in fact cause an error when the chown in "cp -p" fails.)
2005-01-06 05:32:29 +00:00
wiz
f472d1ec5e Bump PKGREVISION because of curl dependency bump. 2005-01-03 15:59:12 +00:00
kristerw
0ec433499a Correct a buffer overflow, using a patch provided by Richard Rauch
in PR pkg/23954.

Bump PKGREVISION.
2005-01-01 11:43:27 +00:00
minskim
2de413a16e Add and enable pdbar. 2004-12-30 13:06:30 +00:00
minskim
6ba9a9dced Import pdbar-0.5.1.
The Palm database archiver (pdbar) creates and manipulates PalmOS
database (.pdb) and resource (.prc) files.  Pdbar is designed to be a
Swiss army knife for managing these files.  It's a command line tool,
and not for the faint of heart, but it's very handy and replaces a
bunch of little utilities that you might otherwise use.
2004-12-30 13:04:56 +00:00
minskim
62a21550ca Add missing dependency on zlib. 2004-12-27 17:19:51 +00:00
wiz
43ab0a0cba Update to 4.13:
- new port of 7za from the source of 7za 4.13Beta for Windows

  - From Windows version of 7-zip 4.13 :
    - Switch "--" stops switches parsing
    - Some bugs were fixed
    - User's manual updated (DOCS/MANUAL/index.htm)

  - makefile.netbsd_x86 added [Bug #1069055].

  - new method to install 7z and its plugins (the "link" method do no work)

  - installer added (install.sh).

  - makefile.macosx_with_fink becomes makefile.macosx
    and makefile.macosx uses c++ instead of CC
    (on some MacOSX, CC is a link to gcc instead of g++)

  - new flag "-utf16" to enable "utf16" conversion [Bug #1075229].

  - new logic to automatically enable or disable "utf16" conversion :
    no locale, locale=="C" or locale=="POSIX" implies utf16=off
    else  utf16=on
    uses "-utf16" or "-no-utf16" to change this behaviour.
    [Bug #1075229]

  - 7z (compiled with -O2) works now on Sparc Solaris.
2004-12-26 02:43:38 +00:00
grant
908e765695 since perl is now built with threads on most platforms, the perl archlib
module directory has changed (eg. "darwin-2level" vs.
"darwin-thread-multi-2level").

binary packages of perl modules need to be distinguishable between
being built against threaded perl and unthreaded perl, so bump the
PKGREVISION of all perl module packages and introduce
BUILDLINK_RECOMMENDED for perl as perl>=5.8.5nb5 so the correct
dependencies are registered and the binary packages are distinct.

addresses PR pkg/28619 from H. Todd Fujinaka.
2004-12-20 11:30:55 +00:00
wiz
ab975ec8af Update to 2.3nb3: Add patch from Mandrake against CAN-2004-1010. 2004-12-17 22:41:15 +00:00
minskim
cf7851e387 gnome.h declares gettext functions when ENABLE_NLS is not defined.
This conflicts with declarations in libintl.h on glibc systems when
compiled with g++>=3.2.  Add a workaround borrowed from Debian to
build this package on Linux.
2004-12-17 20:49:40 +00:00
minskim
86bf22fb0d Override libtool. 2004-12-17 20:44:58 +00:00
minskim
2f604b8038 This package is written in C and C++. Add "USE_LANGUAGES=c c++". 2004-12-17 20:44:35 +00:00
grant
495ab8cee9 update config.{sub,guess} for various bootstrap tools. fixes build on
newer platforms such as DragonFly.

fixes PR pkg/28579 from Todd Willey.
2004-12-12 00:46:28 +00:00
jlam
8edbd4e6b1 Prevent libz from being seen using "the buildlink way" instead of passing
environment variables to the configure script.
2004-12-09 18:56:53 +00:00
he
505500329b Update p5-Compress-Bzip2 from version 1.01 to 1.02.
No change log available.
2004-12-05 16:29:15 +00:00
minskim
186c06d6ec Add and enable unalz. 2004-12-03 17:18:33 +00:00
minskim
9004d39a55 Import unalz, packaged by Lee Jae-Hong (pyrasis at chol dot com) and
modified by me.

unalz is a multi platform open-source ALZ extractor.  It is a console
version of tzip (http://www.kipple.pe.kr/win/tzip/), and extracts .alz
files.  Unalz supports alz, bzip2, and raw formats, multiple volume
archives (alz, a00, a01, ...), large files (over 2GB).  Currently, it
does not support password-protected archives and CRC checking.
2004-12-03 17:17:10 +00:00
wiz
6e02d7ee41 Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs.
Suggested by Roland Illig, ok'd by various.
2004-12-03 15:14:50 +00:00
he
2115380d7d Update p5-Archivers-Tar from version 1.21 to 1.22.
Change log:

* important changes in version 1.22 21/11/2004:

This release holds only bugfixes.
-   Make list_files() also return full_path() rather than name(),
    as that would ignore the prefix field. This was found to break
    PPM (bug #8537)
2004-11-29 14:12:47 +00:00
tv
3928d3abcc Update to 2.0.3. Changelog:
2004/10/11  ***** v2.0.3 shipped *****

2004/09/25  fadden
    - Fixed: attempting to add files after deleting *all* entries in an
      archive would fail.
    - Removed use of a "ushort" from NufxLib.h.

2004/09/20  fadden
    - Corrected behavior after flush when original archive can't be
      deleted.

2004/09/09  fadden
    - Added header offset and junk offset to NuGetAttr.

2004/08/22  fadden
    - Fixed obscure bug when recompressing a GSHK-added zero-length file
      when "fake threads" is enabled.

2004/03/10  ***** v2.0.2 shipped *****

2004/03/09  fadden
    - Set access permissions based on umask when extracting a "locked"
      file.  My thanks to Matthew Fischer for sending a patch.
    - Reject archives with a MasterEOF == 48, not <= 48.  There are
      some otherwise valid archives created by an old version of ShrinkIt
      that have MasterEOF==0.

2003/10/16  ***** v2.0.1 shipped *****

2003/10/16  fadden
    - Added workaround for bad HFS option lists created by GSHK.
    - Added junk-skipping feature.  Up to 1024 bytes of crud (e.g.
      MacBinary headers or HTTP remnants) will be searched for evidence
      of an archive.

2003/06/19  sheppy
    - Added support for resource forks and file and aux types when built
      for Mac OS X.
2004-11-29 04:50:34 +00:00
skrll
87bfefcba4 Update jamjar to 0.7.1.
Changes are unknown.
2004-11-27 07:19:49 +00:00
jdolecek
cfa8a028db add php-zip distinfo (it's fetched from PECL) 2004-11-25 20:12:58 +00:00
wiz
4b6538fcdf Update to 4.12:
Version 4.12
============
  - new port of 7za from the source of 7za 4.12Beta for Windows

  - From Windows version of 7-zip 4.11 and 4.12 :
    - 7-Zip now supports Zip64 extension of ZIP format. So now it's
      possible to compress files bigger than 4 GB to ZIP archives.
    - Some bugs were fixed

  - fix "7za a archive.7z file" that added all the files and directories
    with filename "file", "FILE", "File" ...

  - p7zip now displays the locale (ex : en_US.UTF-8) in the banner.

  - new flag "-no-utf16" to avoid lossly conversion in filenames.
    CAUTION : use this flag when you do not plan to export your archive.

  - support creation of self extracting archive.

  - better support of symbolic link (now, an invalid symbolic link
    do not stop archiving but displays a warning).

  - better support of files that the user cannot read.
    (now this kind of file is not added to the archive, and p7zip displays a warning).

  - return of 7z and its plugins.

  - support of listing/testing/extracting files from a splitted archive (only with 7z).

  - support of MacOX X 10.X.

  - creation of Gzip/Tar archives didn't work on Linux Alpha.

  - see "contrib/VirtualFileSystemForMidnightCommander/readme" to use 7za with "mc".

Version 4.10
============
  - new port of 7za from the source of 7za 4.10Beta for Windows
    => p7zip now work on big endian CPU.

  - 7z for Unix is not maintain anymore (because as the source of unrar plugin for 7z
    is not available, 7z is unless on Unix).

Version 0.91
============
  - add support for FreeBSD 5.2.1
    In Windows/Time.h add "#include <time.h>"
    and prototype change for FileTimeToUnixTime()

  - bug 990684 Corrected : support of filesystem
    that support case sensitive filenames.
    Example, since version 0.91 :
    "7z a glibc -r glibc-2.3.2"
    does not terminate with error :
      Duplicate filename:
      glibc-2.3.2\sysdeps\m88k\m88100\add_n.S
      glibc-2.3.2\sysdeps\m88k\m88100\add_n.s

Version 0.90
============
  - build of 7z.exe and its DLL.
  7z.exe support more archive formats than 7za.exe
  thanks to DLL in Formats and Codecs directories
  - "#pragma once" is now in comments
  - mainly For OpenBSD :
    - add #include <wchar.h> in include_windows/winnt.h
    - remove stuff for GUID_SECTION and GUID_SECT in include_windows/basetyps.h
      and include_windows/initguid.h
    - some changes in 7zip/Crypto/aesopt.h because of endian.h

Version 0.81
============
  - add a copy of the help of 7-zip (see html directory)
  - "7z a -r tmp.7z directory" works as expected.
    no more need for commands like : 7z a -r tmp.7z "directory/*"
  - 7z restores the date of each files (but not directories)
  - 7z supports UNICODE filenames (version 0.80 supports only ASCII/Latin1 filenames)
  - support of gcc 2.95
  - support of gcc 3.4
  - 7z needs no more libgen.h (dirname() and basename())
  - less "Internal Error #7" during arguments parsing
  - minor change in class CThread
2004-11-23 14:57:52 +00:00
tv
2ea17ce1c7 Make build on Interix by slurping in libiberty for asprintf(3). 2004-11-23 06:43:01 +00:00
tv
8ed46e50ae Now be a good little autoconfiscated program and obey LDFLAGS to pick up
rpath settings (among others).
2004-11-23 06:42:22 +00:00
tv
78f53c0b59 nb1: This has been depending on bzip2 all along, but UsE_BUILDLINK3 was
never set, so the dependency wasn't seen.  bl3ify and add bl3 include.
2004-11-23 06:13:12 +00:00
tv
eac17aff3a nb1: Turn on encryption by default for same reasons as was done to
archivers/zip way back in 2000.  Add modern termios support to make the
encryption code build on more platforms.
2004-11-23 02:42:10 +00:00
tv
595dc8646a Make the non-encrypted version build on Interix. (ZIP_ENCRYPTION turns on
some funky oldsk00l TTY code that needs an overhaul....)
2004-11-22 21:01:37 +00:00
wiz
5678b56788 Remove dead MASTER_SITE. 2004-11-22 19:36:17 +00:00
wiz
8aa9e36518 Remove dead MASTER_SITES, add current one. 2004-11-22 19:36:10 +00:00
seb
99b79d0cf1 Fix test suite. 2004-11-13 21:11:18 +00:00
seb
9490555857 Update to version 1.14.
While here add HOMEPAGE.
Changes unknown since last packaged version (1.12).
2004-11-13 15:59:24 +00:00
seb
9bb1d96455 Update to version 1.21.
While here add HOMEPAGE.

Changes since last packaged version (1.10)

* important changes in version 1.21 9/11/2004:
This release holds only bugfixes.
-   Make the size of symlinks be 0 in tar headers, so the next entry
    is not interpreted as contents of the symlink (bug #7937)
-   Strip high bits from the mode of the file, as they are stored
    differently in the tar header
-   Make Archive::Tar be kinder to archives that contain garbage,
    proceeding anyway as long as that's possible.

* important changes in version 1.20 8/11/2004:
This release holds mostly bugfixes, in the form of a rewrite of
the handling of the 'prefix' header field.
-   Rewrote 02_methods.t to be more independant
-   Rewrote the way 'prefix' headers are dealt with
-   Require IO::String now to do archive stringification
-   Add new method 'full_path' to A::T::Item objects
    - this is used to fix bug 6938
-   A::T->new now accepts both a class and an object to be friendlier
    to users
-   On tar read errors, binary chunks are no longer dumped to STDOUT,
    but instead the error offset is reported
2004-11-13 13:42:29 +00:00
adam
06435bccc5 Changes 2.1.5:
- added protection code against bad_alloc exception
- new configure option to bypass libdl test
- removed expected exception list in deci, limitint, real_infinint
  and storage modules to improve global robustness
- remove the #pragma implementation/interface directives
  which tend today to become obsolete, and seems to be the
  cause of compilation problem on (recent) Linux kernel 2.6.7
  for example.
- added protection code to report bug conditions
- code simplification for filesystem reading (while performing
  backup)
- fixed bug #29 (crash when saving hard link without read
  permission)
- fixed code syntax to support gcc-3.4.x
2004-11-09 13:02:39 +00:00
adam
a9ca050048 Changes 1.13:
* Added support for .svgz files at advdef
* Fixed the 8-bit colour reduction on 32-bit PNG files
2004-11-09 11:52:42 +00:00
wiz
b629f4d9f6 Update to 3.4.1. Changes:
Version 3.41

   1. When adding new files to already existing RAR solid archive,
      RAR 3.40 compression ratio was lower than in RAR 3.30.
      Corrected in this version.

   2. If archived Unicode name is invalid, RAR 'l' and 'v' commands
      display ASCII file name instead of corrupt Unicode.


   Version 3.40

   1. "Fastest" (-m1) RAR compression method has been modified
      to provide much higher compression speed and lower ratio.
      It may be useful for tasks requiring the high speed like
      regular backups.

      You may increase "Fastest" speed even more selecting 64KB
      compression dictionary instead of default 4MB.

   2. Starting from this version, RAR volumes contain the volume number
      field. Volume number is displayed by 'L' and 'V' commands
      in the line with the total volume information.

      This feature may be useful if original volume names are lost
      and you need to rename them to correct names.

   3. Commands 'L' and 'V' display NTFS "Compressed" attribute
      in archive listing.

   4. Switch -ag may include an optional text enclosed in '{' and '}'
      characters. This text is inserted into archive name.
      For example: -agHH{hours}MM{minutes}

   5. Removed the erroneous "CRC error" message when unpacking symlinks
      from archive created with -hp<pwd> switch. In fact, such symlinks
      were unpacked correctly.

   6. RAR displays the operation progress while repairing
      an archive containing the recovery record.
2004-11-08 13:42:17 +00:00
wiz
73d5f8ec38 Set NO_BUILDLINK, since this does not build anything,
and remove dead master site.
2004-11-08 13:38:17 +00:00
jdolecek
4a24972c71 php4-zip was replaced by php-zip, which can be used with both PHP4 and PHP5.
The PECL extension is preferred even for PHP4 (which has zip extension
bundled), since further maintenance is likely to be more active there.
2004-11-06 18:32:19 +00:00
jdolecek
9766cb6338 Add php zip PECL extension package version 1.0 - PHP extension for ZIP archive
handling. This replaces php4-only php4-zip.
2004-11-06 18:28:32 +00:00
jdolecek
d7a6086867 it safe to include "../../lang/php/ext.mk" after extension CONFIGURE_ARGS
setting now, do so for aesthetic reasons
2004-11-05 21:44:44 +00:00
jdolecek
4fdb70ce2b now that PHP 5.x Makefile.common doesn't pollute CONFIGURE_ARGS, it safe
to include "../../lang/php/ext.mk" after extension CONFIGURE_ARGS
setting; successful build confirmed with both PHP 4.x and PHP 5.x
2004-11-05 17:11:39 +00:00
adam
b1a90e71ed Changes 3.4.3:
* bug fixes and improvements
2004-11-04 10:15:57 +00:00
jdolecek
d3c56462a3 adjust for rename of most php4-* packages to php-* 2004-10-31 21:46:40 +00:00
jdolecek
ac09227971 convert to use lang/php/ext.mk, tho these packages are PHP4-only
(moved to PECL or replaced by different extensions in 5.x)
2004-10-31 21:28:51 +00:00
jdolecek
ec3c63fd71 remove php4-* extension packages, replaced by php-* packages, which support
PHP5 too
2004-10-31 21:20:08 +00:00
jdolecek
49e9ef7f78 extension modules must be able to override CONFIGURE_ARGS, so include
lang/php/ext.mk before setting CONFIGURE_ARGS
2004-10-31 21:07:13 +00:00
jdolecek
52c1980501 new PHP extension module framework, which makes it possible to build
individual PHP extension packages with either PHP 4.x or PHP 5.x

convert existing php4-* packages to this framework and import as php-*
2004-10-31 19:30:29 +00:00
tv
d5ec323ef3 HOMEPAGE no longer ends in '.php3' -- it's now just '.php'. 2004-10-29 14:32:38 +00:00
tv
a56e231e91 Make build on Interix (and possibly AIX). mempcpy() is not actually used
anywhere, yet configure.ac declared an AC_REPLACE_FUNCS() for it.  Rip out
the offending code from configure until it is rebuilt at the source.

(Patch to remove the AC_REPLACE_FUNCS submitted to author.)
2004-10-29 14:31:27 +00:00
jmmv
f37965037e Update to 2.8.3:
version 2.8.3
-------------
	* Fixed extraction without folders recreation.

version 2.8.2
-------------
	* Avoid opening remote files in nautilus.

version 2.8.1
-------------
	* Fixed bug #153837: Internal viewer vs. other application question is
          asked for files that internal viewer can't even handle.
	* Do not ask whether to use the internal viewer when there is a
	  registered application for the file type.
	* Fixed bug #151113: crash trying to open zip file for extraction
	* Fixed bug #152900: Multiple file/folder drag and drop needs to be
          improved.
2004-10-28 19:09:13 +00:00
wiz
431d835435 Update to 1.1:
* A security vulnerability has been fixed. If the files within a
    cabinet file include "../" in their filenames, this will be
    changed to "xx/", so cabinets cannot access the parent directory
    of where you want to extract them.
  * cabextract should now compile cleanly on AIX and Cygwin.
2004-10-28 10:35:56 +00:00
wiz
3f32f93e66 Add ftp master site. 2004-10-27 17:02:00 +00:00
wiz
09efe94435 Update homepage and master site (even though master site only has newer version). 2004-10-27 16:48:56 +00:00
wiz
cc250cae43 Master site vanished. Get distfile from a different site; tarball has
3 byte diff to previous one (in the tar header), so set DIST_SUBDIR.
cmp -l output (old - new):
     5 164 206
     6 312 226
     7 246 247
2004-10-27 16:45:49 +00:00
tv
c22d2cbccb Use INSTALL_LIB. (No functional change.) 2004-10-13 17:51:32 +00:00
tv
15e280fa49 Update gzip to 1.2.4b, fixing a filename buffer overflow. 2004-10-12 18:28:28 +00:00
tv
6bac155031 Currently this is completely hosed on big-endian platforms; add appropriate
NOT_FOR_PLATFORMs reflecting it.
2004-10-08 15:57:51 +00:00
tv
c487cb967a Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10
in the process.  (More information on tech-pkg.)

Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and
installing .la files.

Bump PKGREVISION (only) of all packages depending directly on the above
via a buildlink3 include.
2004-10-03 00:12:51 +00:00
recht
3180c40de8 Add dependency on gettext-lib to fix the build on Darwin. 2004-10-02 22:40:24 +00:00
danw
ee725594af remove a really really crufty darwin patch noticed by wiz. (the
package doesn't currently build on darwin with or without the patch,
but darwin has gtar in the base OS anyway.)
2004-10-02 14:52:08 +00:00
grant
eaa75b4082 there will not be a NetBSD-1.[7-9] but will be a NetBSD-[2-9].*
adjust patterns used in ONLY_FOR_PLATFORM/NOT_FOR_PLATFORM to reflect
this.
2004-10-01 10:37:32 +00:00
tv
d174613286 "poxbox.com". How typo-rific. Switch to tv@duh.org, anyway. 2004-09-28 22:05:57 +00:00
wiz
bf6eb384e0 Update gtar packages to 1.14:
XXX: man page not updated (didn't find new version of suse
gtar man page which we're using in the package)

version 1.14 - Sergey Poznyakoff, 2004-05-11

* Added support for POSIX.1-2001 and ustar archive formats.
* New option --format allows to select the output archive format
* The default output format can be selected at configuration time
  by presetting the environment variable DEFAULT_ARCHIVE_FORMAT.
  Allowed values are GNU, V7, OLDGNU and POSIX.
* New option --strip-path allows to cut off a given number of
  path elements from the name of the file being extracted.

* New options --index-file, --no-overwrite-dir.  The --overwrite-dir
  option is now the default; use --no-overwrite-dir if you prefer
  the previous default behavior.

* The semantics of -o option is changed. When extracting, it
  does the same as --no-same-owner GNU tar option. This is compatible
  with UNIX98 tar. Otherwise, its effect is the same as that of
  --old-archive option. This latter is deprecated and will be removed
  in future.

* New option --check-links prints a message if not all links are dumped
  for a file being archived. This corresponds to the UNIX98 -l option.
  The current semantics of the -l option is retained for compatibility
  with previous releases, however such usage is strongly deprecated as
  the option will change to its UNIX98 semantics in the future releases.

* New option --occurrence[=N] can be used in conjunction with one of
  the subcommands --delete, --diff, --extract or --list when a list of
  files is given either on the command line or via -T option. This
  option instructs tar to process only the Nth occurrence of each named
  file. N defaults to 1, so `tar -x -f archive --occurrence filename'
  extracts the first occurrence of `filename' from `archive'
  and terminates without scanning to the end of the archive.

* New option --pax-option allows to control the handling of POSIX
  keywords in `pax' extended headers. It is equivalent to `pax'
  -o option.

* --incremental and --listed-incremental options work correctly on
  individual files, as well as on directories.

* New scripts: backup (replaces old level-0 and level-1) and restore.
The scripts are compiled and installed if --enable-backup-scripts
option is given to configure.

* By default tar searches "rmt" utility in "$prefix/libexec/rmt",
which is consistent with the location where the version of "rmt"
included in the package is installed. Previous versions of tar
used "/etc/rmt". To install "rmt" to its traditional location,
run configure with option --libexecdir=/etc. Otherwise, if you
already have rmt installed and wish to use it, instead of the
shipped in version, set the variable DEFAULT_RMT_COMMAND to
the full path name of the utility, e.g. ./configure
DEFAULT_RMT_COMMAND=/etc/rmt.

Notice also that the full path name of the "rmt" utility to
use can be set at runtime, by giving option --rmt-command to
tar.

* Removed obsolete command line options:
** --absolute-paths superseded by --absolute-names
** --block-compress is not needed any longer
** --block-size superseded by --blocking-factor
** --modification-time superseded by --touch
** --read-full-blocks superseded by --read-full-records
** --record-number superseded by --block-number
** --version-control superseded by --backup

* New message translations fi (Finnish), gl (Galician), hr (Croatian),
  hu (Hungarian), ms (Malaysian), nb (Norwegian), ro (Romanian), sk
  (Slovak), zh_CN (Chinese simplified), zh_TW (Chinese traditional).
  The code 'no' for Norwegian (Bokmål) has been withdrawn; use 'nb' instead.
2004-09-27 16:12:04 +00:00
tv
f45e9deb0f Remove commented-out USE_LIBTOOL define. 2004-09-27 14:56:19 +00:00
jlam
1a280185e1 Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.
All library names listed by *.la files no longer need to be listed
in the PLIST, e.g., instead of:

	lib/libfoo.a
	lib/libfoo.la
	lib/libfoo.so
	lib/libfoo.so.0
	lib/libfoo.so.0.1

one simply needs:

	lib/libfoo.la

and bsd.pkg.mk will automatically ensure that the additional library
names are listed in the installed package +CONTENTS file.

Also make LIBTOOLIZE_PLIST default to "yes".
2004-09-22 08:09:14 +00:00
jmmv
d6f986dffb Update to 2.8.0. This version corresponds to GNOME 2.8.0.
version 2.8.0
-------------
	* Updated translations.

version 2.7.5
-------------
	* Fixed bug #151427: Compilation error.
	* Fixed bug #150672: Back button is broken
	* Fixed bug #150329: File roller creates predictable /tmp directories
	* Fixed bug #150327: Adding a directory to archive hangs file roller
	* Fixed BUG #150328: avoid crashing while DND of 'Home' icon into
 	  file-roller.
	* Updated the recent-files sources from libegg.

version 2.7.4
-------------
	* Updated the recent-files sources from libegg.
	* Added more mime types to the desktop file.

version 2.7.3
-------------
	* Added the supported mime types to file-roller.desktop

version 2.7.2
-------------
	* Fixed bug #144041: [Solaris] gtar will not be in path
	* Do not display the "operation stopped" dialog (bug #144171).
	* Fixed a leak and the display of the error message (bug #145440).

version 2.7.1
-------------
	* Fixed bug #144455: Make file-roller session aware even when no
	  archive is opened.
	* Fixed bug #144079 (iso is not listed as a archive in open dialog)
	* Hide the main window when in batch mode.
	* Allow to extract all the files, not only the selected files, from
	  an ISO image.

version 2.7.0
-------------
	* Added read/extract support for ISO files. (bug #142316)
	* Split the add dialog into two dialogs, one used to add files and the
	  other one used to add folders.
	* Ask the distination folder after pasting a selection, this allows
          the user to create new folders in the archive.
	* Added content size and compression ratio in the properties dialog.
	* Extract selection without creating the whole path. (bug #140971)
2004-09-21 17:09:48 +00:00
kristerw
c35e9b969b Make previous commit do what was intended (by including bsd.prefs.mk,
and removing some extra " characters).
2004-09-18 20:14:18 +00:00
uebayasi
2d996a798b If we're lucky, x86_64 will build with i386's configuration. Let's
see...
2004-09-18 14:01:53 +00:00
recht
5dbe6a6873 Add and enable rzip. 2004-08-29 15:32:01 +00:00
recht
82c13e3027 initial import of rzip-2.0
package provided by Miles Nordin in PR 26774

rzip is a compression program, similar in functionality to gzip or
bzip2, but able to take advantage long distance redundencies in files,
which can sometimes allow rzip to produce much better compression
ratios than other programs.
2004-08-29 15:29:04 +00:00
jlam
683567c435 Fix the version number of the package in the configure script, and modify
the Makefiles so that they can be built by really basic make programs.
2004-08-21 06:33:39 +00:00
jlam
6985e27f27 Check for a few more system headers after the update to pax-20040804. 2004-08-21 05:06:41 +00:00
jlam
3f57bcbb36 Mirror change in archivers/mtree by <heinz> on 2004/04/16:
Introduce HAVE_FILE_FLAGS if the system declares UF_SETTABLE and SF_SETTABLE
in addition to member 'st_flags' of struct stat. Use HAVE_FILE_FLAGS instead
of HAVE_STRUCT_STAT_ST_FLAGS.
This avoids confusion on UnixWare which has 'st_flags' but does _not_ support
file flags.
2004-08-21 04:20:50 +00:00
jlam
ff44898db4 Update archivers/pax to 20040802 (latest version on src HEAD). Changes
from previous include:

  - include a pax2nbcompat script to ease importing from src HEAD
    into pkgsrc.

  * for copy mode, show more meaningful information on SIGINFO.
2004-08-21 03:28:49 +00:00
minskim
fed181f436 Make this package build on Linux.
- Include time.h to use struct tm.
  - Define LINUX_NAMLEN on Linux to avoid using d_namlen in struct dirent.
2004-08-18 18:40:36 +00:00
jlam
896e92919d If LIBNBCOMPAT_STYLE is set to "inplace", then build and use a local
version of libnbcompat instead of requiring libnbcompat to be installed.
This simplifies testing of bootstrap packages without root privileges
on a system that has already been bootstrapped.
2004-08-14 02:33:32 +00:00
jlam
169328c7d5 Check for all system headers needed in the sources. 2004-08-13 14:52:11 +00:00
ben
51e64f6ef4 Add bzip2 dependency so this will build in Linux. 2004-08-11 16:31:49 +00:00
jlam
40648000d4 This packages doesn't use the compiler. 2004-08-02 21:33:47 +00:00
jlam
326cfdc611 Update archivers/p5-Archive-Tar to 1.10. Changes from version 1.02
include:

-  Make new() comply with the documentation and return undef on
   a read() failure.
-  Re-adds bin/ptar, which disappeared from this distribution after
   0.22 (sorry about that).
-  Fix a file renaming bug that forgot to carry over path info
-  Fix a bug where adding dirs on win32 gave 'permission denied'
-  Add extra tests explicilty for Archive::Tar::File
-  Move completely from FileHandle to IO::File
-  Quell some annoying warnings about binmode on unopened filehandles
-  Add tests for binary files included in a tarball
-  The chown() code somehow didn't make it into the 1.05 release
-  Patch _get_handle() to treat all IO::File handles as binary.
   This should make win32 users happy
-  A method called 'contains_file' that will tell you if a certain file
   is already in the archive.
-  Add a global variable $CHOWN that controls whether Archive::Tar
   should attempt to chown() files or not when it can.
-  NULL-byte padding was done also on files that had no real content,
   like symlinks, thus ending up with a number of bytes not dividable
   by 512.
-  Always do a readlink on the full path, never just the file
-  Make Archive::Tar write proper headers when dealing with symlinks
   For this $Archive::Tar::FOLLOW_SYMLINKS is introduced
2004-08-02 21:31:36 +00:00
jlam
8df26f89e0 Rewrite test to make it easier to maintain. 2004-08-01 20:00:29 +00:00
xtraeme
99f8e812b3 USE_GCC_SHLIB is deprecated. 2004-07-31 03:48:30 +00:00
minskim
de9ae82e3c Enable pkgviews installation. 2004-07-30 14:53:43 +00:00
wiz
2ebc04dd8b On NetBSD>=2.0, set TAR_INODE_INTERNAL to make this build again.
Suggested by der Mouse.
2004-07-29 21:47:09 +00:00
minskim
5a4e75ef0d Enable pkgviews installation. 2004-07-28 02:47:34 +00:00
minskim
b85cc0437e This package needs C++ compiler. 2004-07-28 02:45:06 +00:00
minskim
5ddd406e32 Enable pkgviews installation. 2004-07-28 01:02:08 +00:00
minskim
b1e44f9151 Enable pkgviews installation. 2004-07-28 00:08:20 +00:00
minskim
b5bfeadc88 Add a missing file to PLIST. Bump PKGREIVISION. 2004-07-28 00:03:15 +00:00
minskim
a851ed0092 Enable pkgviews installation. 2004-07-27 22:18:26 +00:00
minskim
4fa376188e Enable pkgviews installation. 2004-07-27 22:09:43 +00:00
minskim
ecc15f761b Use CONF_FILES to handle a configuration file.
Bump PKGREVISION.
2004-07-27 22:07:19 +00:00
wiz
f44073a32e Update to 3.10.21, and fix build on current (statvfs lossage).
Changes since 3.10.20:
        *  arj_arcv.c, arj_file.c, arj_proc.c, arj_user.c, arjtypes.c,
           environ.c, externs.c, externs.h, makefile:
           Merged with the remaining part of TCO fixes to make up for 3.10.21
        *  defines.h, encode.c, environ.c, environ.h, fmemcmp.asm, misc.c,
           rearj.c: Resync with TCO to close any outstanding bugs
        *  arj.c: Rudimentary Borland code caused the filenames in argv[] to
           be mishandled under Win32
        *  register.c: REGISTER might fail due to _fput_* changes
2004-07-27 13:03:39 +00:00
wiz
d7b0672e4b Use versioned distfile instead of unversioned one (hi tv!). 2004-07-19 12:50:58 +00:00
seb
7615552d56 Update to version 1.12.
Too many bug fixes and additions since last packaged version (0.11).
Please see the `Changes' file enclosed in the source distribution.
2004-07-16 12:45:23 +00:00
salo
38aab826dd Use GNU ld specific script only when GNU ld is used.
Fixes build on Solaris with native linker.
2004-07-10 17:39:50 +00:00
salo
3570e576e2 Fix the Solaris check. SunPro doesn't define neither sun, nor __svr4__.
Fixes compilation on Solaris with SunPro compiler.
2004-07-10 15:35:52 +00:00
xtraeme
e01692b1ea Added gzrecover-0.2. 2004-07-06 14:41:45 +00:00
xtraeme
0728638b9b Initial import of gzrecover-0.2 from pkgsrc-wip, packaged by pancake.
So you thought you had your files backed up onto that jaz cartridge -
until it came time to restore. Then you found out that you had bad
sectors and you've lost almost everything because gzip craps out 10%
of the way through your archive. The gzip Recovery Toolkit has a program
- gzrecover - that attempts to skip over bad data in a gzip archive and
to GNU tar that enables that program to skip over bad data and extract
whatever files might be there.
2004-07-06 14:39:15 +00:00
minskim
42e6228a97 Enable pkgviews installation. 2004-07-05 14:44:22 +00:00
minskim
509e1a5cf8 Include endian.h instead of sys/endian.h on Linux. 2004-07-05 14:41:31 +00:00
grant
846e17f5b4 this package only uses a c++ compiler. 2004-07-04 08:10:23 +00:00
grant
16b9021dbf this package doesn't have a configure target. 2004-07-03 13:30:29 +00:00
grant
e399158ba6 bump to 20040703. 2004-07-03 02:50:32 +00:00
grant
c8c0ca8a03 sync with src:
Salvage the `create parent directories and try again' path which is
removed by the previous commit.
2004-07-03 02:50:21 +00:00
minskim
1a9c0a3c25 Enable pkgviews installation. 2004-07-02 21:06:35 +00:00
minskim
3ddba4ca1a Define NO_BUILDLINK because this is a meta package. 2004-07-02 21:02:49 +00:00
xtraeme
29ea253f83 Update MASTER_SITES. 2004-06-28 21:45:42 +00:00
kristerw
897a488b8b Require gcc 3.0 or newer, since it contains c++ constructs that
gcc 2.95 does not understand.

DTRT with threading for platforms without native threads.
2004-06-27 20:28:53 +00:00
grant
5123eb9e1b bump to 20040626. 2004-06-26 13:31:47 +00:00
grant
e24d57c28d sync with src:
break out of the loop and avoid the infinite loop if attempts to
create, unlink and create all fail.
2004-06-26 13:30:59 +00:00
grant
663b3eaa47 sync with src:
don't attempt to remove the current directory.
2004-06-26 12:42:02 +00:00
wiz
b761a7e8c8 Add and enable p7zip. 2004-06-25 13:56:56 +00:00
wiz
0e4d11b4d3 Initial import of p7zip.
p7zip is a port of the Windows program 7za.exe.

7za.exe is a file archiver with the highest compression ratio.
2004-06-25 13:56:12 +00:00
ben
834e7c9b02 Add new package lcab. 2004-06-24 23:32:21 +00:00
ben
23c669969a Initial import of lcab-1.0b10, a Microsoft cabinet (.CAB) file creator. 2004-06-24 23:31:48 +00:00
grant
64c34cde46 bump to 20040620. 2004-06-20 10:11:56 +00:00
grant
fd78a9be8e sync pax with src/ from 20040620, includes many bug fixes including
properly handling broken archives.
2004-06-20 10:11:02 +00:00
minskim
b23abaaf3f Do not use "-DBSD" and "-lcompat" on Linux. 2004-06-18 17:41:10 +00:00
minskim
d247ea385b CFLAGS needs "-DSYSV" on Linux. Patch provided by Roland Illig on
tech-pkg@.
2004-06-18 02:42:09 +00:00
minskim
33de6dfc73 Bump PKGREVISION due to LDFLAGS changes. Noted by grant@. 2004-06-15 05:28:11 +00:00
minskim
dc53b55924 Make this package build on Linux.
- Include time.h to use struct tm.
  - Remove hardcoded /usr/include/varargs.h from makefile dependency.
2004-06-15 04:24:30 +00:00
minskim
8ff390a333 Honor CC and LDFLAGS to create correctly linked binaries when pkgsrc
bzip2 library is used instead of native one.
2004-06-15 04:11:15 +00:00
jmmv
0f33bafab8 Revert my previous change; minskim@ already fixed curl detection by
bypassing the check in configure (we can assume it's there).
Ew, working with non-up-to-date copies of directories...
2004-06-11 08:15:06 +00:00
jmmv
2f7ce5e2ee Fix detection of curl: the configure script was trying to locate a
deprecated (?) function.  Even though, the module seems to build
correctly with the current version of curl in pkgsrc, so change the
check to look for an existent function.

This fixes the build of the curl module, thus solving the problem
exposed in latest kristerw@'s bulk build in NetBSD 2.0_BETA/i386.
Not bumping PKGREVISION because this was not packaged in the first
place.
2004-06-10 21:39:00 +00:00
minskim
54f7e6d0d2 Bypass curl library checking. Otherwise it fails because the test in
configure uses curl_formparse(), which is not available in
curl-7.12.0.  Since curl_formparse() is never used in libcompress and
curl is always available through buidlink, it is safe to skip the
test.
2004-06-09 16:49:00 +00:00
minskim
5417b95249 Make this package build on Linux.
- Use lseek(2) instead of tell() on Linux.
  - Use "${RM} -f" instead of "rm" in @unexec.
2004-06-09 16:17:47 +00:00
minskim
e51efa0cbb Enable pkgviews installation. 2004-06-06 21:35:09 +00:00
minskim
3403ceeb80 Update gcpio to 2.5. Based on patches submitted by reed@ in PR pkg/20799
and sketch@ in PR pkg/22851.

Also apply a patch from Debian Linux to fix the ustar problem (Debian
bug #238177).  Reported by Christian Weisgerber on tech-pkg@.

Changes:
  * bug fixes from Debian, Red Hat, and SuSE GNU/Linux Distribution patches
  * --rsh-command option
2004-06-06 21:29:33 +00:00
recht
3e840f5255 Fix a compiler warning: main() should return int
patch provided by Richard Rauch in PR 25786

bump PKGREVISION to 2
2004-06-05 23:31:38 +00:00
heinz
69353161bb Add TEST_TARGET 2004-06-02 23:20:55 +00:00
reed
e95bc533e3 Add a real DESCRiption instead of pointing to file in source. 2004-06-02 17:11:21 +00:00
minskim
a5cf67a34e Update unzip to 5.51, based on patch provided by Bruce J.A. Nourish in
PR pkg/25768.

New features:
5.51a (09 Mar 02):
 - no new features

5.51b (11 Jan 03):
 - TANDEM: new -r option to suppress extension merging [Dave Smith]
 - WinCE, new port in addition to pUnZip (GUI): command line tool usable for
    "batch" processes (not quite finished, needs "makefile" cleanup, tests,
    and refinements) [Simon Roberts, SPC]
 - SET_DIR_ATTRIB feature code revised and reorganized to allow seamless
    adaption to different OS environments; added support for restoring
    directory timestamps to the WIN32 port [Kai-Uwe-Rommel, SPC]

5.51c (13 May 03):
 - WinCE command line tool integration is (almost) finished: project file is
    cleaned up and works with VC-embedded 3.0; port needs testing... [SPC]

5.51d (27 Feb 04):
 - Cygwin is recognized as a target in the Unix port
    [Charles Wilson, Cosmin Truta, SPC]
 - remove support for quoting characters from all ports; this feature was a
    security hole [SPC]

5.51e (01 Mar 04):
 - Win32 port (list.c, unzpriv.h, win32.c, w32cfg.h): the date in (non-ZipInfo)
    listings is displayed using the separator given by the system's locale,
    when available [Cosmin Truta]

See History.551 in distfile for complete bug fix history.
2004-06-01 04:31:40 +00:00
minskim
101b04ee11 Enable pkgviews installation. Patches provided by Joachim Kuebart on
tech-pkg@.
2004-05-31 16:47:47 +00:00
minskim
deb599e379 Install a man page with INSTALL_MAN, not with INSTALL_DATA. 2004-05-30 07:06:26 +00:00
minskim
b2521fa513 - NO_CONFIGURE=yes
- Enable pkgviews installation.
2004-05-30 07:04:26 +00:00
minskim
dfd23df133 Enable pkgviews installation. 2004-05-30 03:16:09 +00:00
minskim
bed4958450 Enable pkgviews installation. 2004-05-29 18:16:15 +00:00
minskim
24ab63ca63 Remove superfluous SED/MV. 2004-05-29 18:07:38 +00:00
minskim
b39d739359 - NO_CONFIGURE=yes
- Enable pkgviews installation.
2004-05-29 12:00:28 +00:00
wiz
adc1bb3c9d Unused. 2004-05-22 10:04:21 +00:00
adam
3248aaf5a3 Don't force optimisation any more 2004-05-21 20:28:10 +00:00
recht
acf63b6eee Enable pkgviews installation. 2004-05-18 11:58:04 +00:00
minskim
fd6c6ff43e USE_LANGUAGES= c c++
USE_LIBTOOL=   yes
2004-05-16 16:37:02 +00:00
xtraeme
09d0793cc1 Added advancecomp-1.10. 2004-05-16 01:33:45 +00:00
xtraeme
24eafc7dc4 Initial import of advancecomp-1.10.
AdvanceCOMP is a collection of recompression utilities for your .ZIP archives,
.PNG snapshots, .MNG video clips and .GZ files.

It's mainly intended for recompressing your rom, snapshot and clip collection
of emulated games.

The main features are:

    * Recompress ZIP, GZ, PNG and MNG files using the Deflate 7-Zip
      implementation.
    * Recompress MNG files using Delta and Move optimization.
2004-05-16 01:32:10 +00:00
jmmv
839d0f1b5b Update to 2.6.1:
* Fixed reading of filenames with spaces in tar archives.
* Fixed bug #138154 (File-Roller Crash when dropping a file dragged
  from archive).
* Remove a file from the recent file list if the file could not be loaded.
* Added RPM and Suffit to the recent file list mime types.
* Fixed popup menu sensitivity.
2004-05-15 14:08:08 +00:00
taca
bb5daad379 Fix security problem of lha package applying patches by David Ahmad
< da at securityfocus dot com > on bugtraq mailing list.

Bump pacakge revision to nb2.
2004-05-13 11:42:43 +00:00
grant
0872fa7055 s/netbsd.org/NetBSD.org/i 2004-05-12 21:56:52 +00:00
minskim
549de26a2c Explicitly disable upx. 2004-05-12 05:31:28 +00:00
minskim
8228ef8c67 Enable pkgviews installation. 2004-05-10 18:05:49 +00:00
minskim
ae65ee4d9e Do not modify the magic file for file(1). Instead, show what should
be done using MESSAGE.
2004-05-10 18:04:02 +00:00
minskim
4d4e9b4a47 Enable pkgviews installation. 2004-05-10 17:04:41 +00:00
reed
44dde738f3 Install the gzip.info file to ${PREFIX}/${INFO_DIR} instead of
${PREFIX}/info.
2004-05-07 21:56:02 +00:00
reed
667cdb3bee This previously didn't patch to stop installing the gzip.info file
because it was just removed after.

But now use a patch to disable the install and disable the
creation of the ${PREFIX}/info directory.
(${PREFIX}/info is wrong; pkgsrc uses ${PREFIX}/${INFO_DIR}.)

(The patch also includes the BSD_INSTALL_SCRIPT change
which was previously done in the Makefile using sed.)
2004-05-07 21:41:43 +00:00
cjep
69597c4377 Add RCS tag 2004-05-07 11:19:21 +00:00
xtraeme
8d2bb7dcb6 Drop maintainership; I don't have the enough free time to maintain
all these packages.
2004-05-07 01:14:46 +00:00
itojun
a23f14686f add HOMEPAGE 2004-05-06 08:15:08 +00:00
cjep
a9466af654 Add in more compat options that are required. From "BSD For Ever" on
the pkgsrc-bugs list.
2004-05-05 13:11:09 +00:00
reed
31a505a7e4 Install to ${PREFIX}/${INFO_DIR} instead of ${PREFIX}/info. 2004-05-03 21:32:28 +00:00
danw
302942d548 pass --disable-builddir to the configure script because the builddir
support is useless in pkgsrc anyway, and it breaks the build on several
platforms because of confusion over what the build dir is to be
called. (possibly because of CONFIG_SUB_OVERRIDE?)
2004-05-02 22:28:52 +00:00
danw
9df166da01 fix install user/group on darwin 2004-05-02 22:26:12 +00:00
danw
aa1ee845d9 patch in a fake malloc.h so this builds on darwin (and freebsd) 2004-05-02 22:25:18 +00:00
danw
b00508c540 remove some really awful non-portable stdio assumtions so this builds on
darwin
2004-05-02 22:24:48 +00:00
danw
1079cce9fa make this build on darwin 2004-05-02 22:23:58 +00:00
tv
eff762a8fa nb1: Make work on Interix; check for -ldl in configure.in automagically;
install without stripping binaries (so that "arj" works properly)
2004-04-27 17:16:28 +00:00
tv
eba08f9aa0 Don't build on Interix. 2004-04-25 23:16:22 +00:00
dillo
81af2e463a use my NetBSD.org email address. 2004-04-25 11:48:31 +00:00
xtraeme
b149dc31c2 Remove USE_BUILTIN.zlib, which was a local modification :) 2004-04-25 11:38:19 +00:00
tv
db2f738b89 Missed this in commit of patch-ac (thanks wiz). 2004-04-24 23:19:27 +00:00
wiz
70dec49d6d Unused. 2004-04-24 23:15:43 +00:00
xtraeme
5af4c4c395 bl3ify 2004-04-24 23:13:57 +00:00
tv
a2cec08ff7 Make work on Interix. It has a mkdev() but not a makedev(), so define
makedev() in terms of mkdev() in that case.
2004-04-24 23:07:53 +00:00
minskim
ad4503fd08 Enable pkgviews installation. 2004-04-22 23:22:26 +00:00
minskim
234516a9b1 - Use buildlink framework.
- Enable pkgviews installation.
2004-04-22 20:48:42 +00:00
dillo
d272fc3de1 update to 3.10.20 (improvements and bug fixes) 2004-04-22 20:16:58 +00:00
tv
507e99d00c Obey CPPFLAGS. 2004-04-22 04:02:24 +00:00
drochner
adcbc19ebd +szip 2004-04-20 18:06:56 +00:00
drochner
0bf2754c78 import szip-1.1, a (lossless) compression library for scientific sample
data
2004-04-20 18:03:29 +00:00
grant
5ce0ba183f USE_LANGUAGES=c++ 2004-04-18 09:21:55 +00:00
ben
6c1749c10b Make ppmd build and run in Linux. 2004-04-17 23:47:36 +00:00
grant
192cd01bf3 only make the gcc target if we're using gcc. 2004-04-17 19:24:37 +00:00
jmmv
bedae6c90c Make use of the new USE_DIRS variable, instead of directly depending on the
*-dirs packages.
2004-04-14 16:15:20 +00:00
ben
edb1ec09f3 Add USE_LANGUAGES=c c++ to note that this package uses C and C++. 2004-04-14 14:57:02 +00:00
ben
bf72ffa70d Add USE_LANGUAGES=c++ to note that this package uses c++. 2004-04-14 14:56:09 +00:00
ben
1fa44e6102 Add USE_LANGUAGES=c++ to note use of c++. Also change name of shell
variable from 'file' to 'f' to silence a pkglint warning.
2004-04-14 14:54:48 +00:00
heinz
376f91082d pax does not support tape drives on Unixware at the moment. 2004-04-12 12:34:16 +00:00
minskim
a75e443d46 - Update afio to 2.5.
- Use buildlink framework.
- NO_CONFIGURE=yes
- Enable pkgviews installation.

Changes in 2.5:

  - In afio.h ulo and ull macros, added L and LL letters in constants.
  - Documented `long long' issues in PORTING file.  Removed ifdeffed
    typedef ulonglong porting hacks from the afio.h file.
  - Changed mknod() call to mkfifo() call when creating named pipe from
    archive.  Freebsd cannot make named pipes with mknod.
  - Added some extra defines to suppress some warnings on sun platform.
    Also added some stuff around awk invocations in makefile and regtest
    to make things easier on sun -- the sun platform I tried it on had a
    default awk that was too ancient to understand things like gsub.
  - Added some discussion of sun and freebsd to PORTING file.
  - Fix to regression test: no longer complains if two compared directory
    inodes have a size difference.  Bases on bug report by vasudeva.
  - Changed sanity check on the stdin at the start of executing -o mode:
    now the check only happens if stdin is a tty.  This allows scripts to
    make empty archives, and is needed for compatibility with tob.  Based
    on problem report by Dirk Eddelbuettel.
  - Changed read() to readall() in outdata().
  - Updated SCRIPTS file.
2004-04-11 23:04:50 +00:00
snj
cb593c7126 No longer used. 2004-04-11 07:30:26 +00:00
minskim
edd2aa69c6 - Use buildlink framework.
- NO_CONFIGURE=yes
- Enable pkgviews installation.
2004-04-11 03:24:36 +00:00
snj
c9723460bc This defines NO_BUILD, so USE_BUILDLINK2 is not necessary. 2004-04-11 03:00:55 +00:00
snj
37fd93920a Sort. 2004-04-11 02:56:04 +00:00
minskim
539fd7b9ca Enable pkgviews installation. 2004-04-10 23:51:35 +00:00
minskim
ab56bdc82c Make this package build on Linux. Patch provided by Georg Schwarz in
PR pkg/25043.
2004-04-10 23:31:27 +00:00
ben
7240956d7f Make xmill build and run in Linux by adding zlib and bzip2 dependencies. 2004-04-10 19:05:36 +00:00
reinoud
79dcaeb984 Comment out a most likely allready redundant compilation time check that
made it bomb out during compilation. Propably Linux paranoia/ignorance?

The problem occured on NetBSD/shark 1.5ZG and with the patch compiles
without any warnings.
2004-04-09 21:40:14 +00:00
tron
afc588f9f6 Fix dependence on "gtar-base" package, bump package revision. 2004-04-07 18:59:00 +00:00
reed
5922427d0c If GNU_PROGRAM_PREFIX is not "g" or not set, then still install
with "g" prefix.  Allow this to be optionally forced by defining
GTAR_PROGRAM_PREFIX.  If GTAR_PROGRAM_PREFIX is set to nothing,
then conflict with pax, because both install a "tar".

So now the default is to install as "gtar" even if GNU_PROGRAM_PREFIX
is set to "".

Bump package revision for this.

This is for part of my PR #22693.
2004-04-05 18:38:43 +00:00
xtraeme
2ba1d718e4 This needs gmake to build under OpenBSD; pointed out by pancake. 2004-04-05 14:06:00 +00:00
jmmv
5882ec7dc8 Update to 2.6.0. Changes since previous stable branch (2.4.x):
version 2.6.0
-------------
	* Updated translations.

version 2.5.7
-------------
	* Fixed bug #137183 (Crash when opening tar-file when using 24 hour
	  time.
  	  format).
	* Updated manual.
	* Added localized manuals for de, es, fr, it, ja, ko, sv,
	  zh_TW, zh_HK, zh_CN.

version 2.5.6
-------------
	* Use a better logic to parse the tar output.
	* Updated to work with the new filechooser api.

version 2.5.5
-------------
	* Use gtar if present, otherwise use tar.
        * Fix the "Zip Objects" command.
	* Remove C++ style comments.
	* Fix bug #133998 (schemas file must not be removed during distclean).
        * Updated manual.
	* Fix the password protected detection code.
	* Handle the delete_event event for the progress dialog.
	* Add a filter for the "save archive" and "new archive" dialogs,
	  simplify the filter for the "open archive" dialog.

version 2.5.4
-------------
	* Fix bug #105739 (Can't open tar.gz files on Solaris).
	* Fix bug #133358 (Small HIG fix for column header).
	* Allow to extract more archives at once with the "Extract Here"
	  command.
	* Use GType instead of guint.  Fixes segfaults on 64-bit architectures.
	* Do not show the new window until we are sure that the archive
          has been opened with success.

version 2.5.3
-------------
	* Simplify the "Load Options" and "Save Options" commands in the
	  Add dialog.
	* Make the path column visible only if the list mode is set to flat.
	* Fix the "Save as" dialog.
	* Updated the recent-files stuff from libegg.
        * Changed Nautilus context menu item to "Zip Objects" and simplied
	  the dialog.
	* Always use a close button in the error dialogs.

version 2.5.2
-------------
	* Replace GtkFileSelection with GtkFileChooser everywhere.
	* Use gnome_url_show instead of calling nautilus explicitly.
	* Do not use mkdtemp which does not exist on Solaris9.
	* Do not destroy the file selector is the archive was not created
          successfully.
	* Do not add the password argument if the password is an empty string.
	* Use the stock system for the commands Add, Extract and View.
        * Updated the egg_recent stuff.
	* Changed name to "Zip Creator" and category to System Utility.
        * The preferences dialog has been removed.
        * The add dialog has been simplyfied.
        * The extract dialog is a GtkFileChooser in folder mode now.

version 2.5.1
-------------
	* Fix crash upon LZH file opening (#129794).

version 2.5.0
-------------
        * Added unstuff and RPM support.
	* Added ability to rename files and folders.
	* Added Cut/Copy/Paste operations.
 	* Add files and folders to the current directory.
	* Added ability to go back and forward in location history.
        * Open the archive in a new window if the current window already has
          an archive opened.
	* Exit closes only the current window instead of closing all the
          windows.
	* Zip archives: ask to enter a password if the archive is password
          protected.
	* Remember extraction dialog options.
        * Substitute "Extract To.." with "Extract Here" in the Nautilus
          context menu.
2004-04-01 18:56:04 +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
jlam
ca32f73cc6 bl3ify 2004-03-30 21:41:32 +00:00
minskim
a79d55c39f Make this package use buildlink3 framework, and add dependencies on
bzip2 and zlib.  Bump PKGREVISION.
2004-03-30 18:56:50 +00:00
minskim
431a32821c Disable mcrypt library detection by configure explicitly, because it
is not used.  Otherwise this package doesn't build when non-pkgsrc
mcrypt library is detected.
2004-03-30 18:27:32 +00:00
uebayasi
dde52045b8 * PKGNAME_NOREV for WRKSRC.
* Remove useless use of subshell.
2004-03-30 06:44:53 +00:00
tv
7930f44e66 +par2 2004-03-29 19:36:29 +00:00
tv
1f9b98ce5e par2cmdline is a PAR 2.0 compatible file verification and repair tool.
See http://parchive.sourceforge.net for details of PAR 2.0 specification
and discussion of all things PAR.

WHAT EXACTLY IS PAR2CMDLINE?

par2cmdline is a program for creating and using PAR2 files to detect
damage in data files and repair them if necessary. It can be used with
any kind of file.
2004-03-29 19:36:07 +00:00
jlam
6d92080aa2 Match the template builtin.mk file in bsd.builtin.mk, and make the two
packages that use builtin.mk files (graphics/xpm and pkgtools/x11-links)
use the new format correctly.
2004-03-29 05:43:28 +00:00
ben
0ccc55bb27 Correction to PLIST, xmill is now named xcmill. 2004-03-29 05:14:27 +00:00
ben
dfee3135e4 Update xmill to v0.9.1 and remove unnecessary patches. Notable changes:
* portability fixes for makefiles and for newer C++ compilers
* configuration options to build xmill without included zlib/bzlib
* will work with libbz2 as well as libbz
2004-03-29 05:12:00 +00:00
tv
d18750f524 Oops, forgot to bump PKGREVISION. 2004-03-29 01:19:28 +00:00
tv
95b881c6a7 Obey CFLAGS/CPPFLAGS. Link the binaries with the .o's, not the .lo's
(libtool assumes that .lo means PIC, which is wrong for an end binary;
breaks on Interix where PIC in an end binary is broken)
2004-03-29 01:18:41 +00:00
wiz
4bdb31383e Update distfile name, MASTER_SITES and HOMEPAGE.
Distfile contents and checksum didn't change.
Closes PR 24946 by Steven M. Bellovin.
2004-03-28 13:29:31 +00:00
grant
3ad43a6467 indent block 2004-03-27 14:21:21 +00:00
wiz
a661ce60c0 PKGREVISION bump after openssl-security-fix-update to 0.9.6m.
Buildlink files: RECOMMENDED version changed to current version.
2004-03-26 02:27:34 +00:00
jlam
326169077a USE_BUILDLINK3 must be set to "yes" or "no", not defined/undefined. 2004-03-23 04:40:59 +00:00
kristerw
1ec44d55ec Let ONLY_FOR_PLATFORM recognize NetBSD 2.0 and future versions. 2004-03-22 03:58:00 +00:00
snj
b0a38731b6 Spelling fix. 2004-03-20 00:10:10 +00:00
jlam
7db11b582a Fix serious bug where BUILDLINK_PACKAGES wasn't being ordered properly
by moving the inclusion of buildlink3.mk files outside of the protected
region.  This bug would be seen by users that have set PREFER_PKGSRC
or PREFER_NATIVE to non-default values.

BUILDLINK_PACKAGES should be ordered so that for any package in the
list, that package doesn't depend on any packages to the left of it
in the list.  This ordering property is used to check for builtin
packages in the correct order.  The problem was that including a
buildlink3.mk file for <pkg> correctly ensured that <pkg> was removed
from BUILDLINK_PACKAGES and appended to the end.  However, since the
inclusion of any other buildlink3.mk files within that buildlink3.mk
was in a region that was protected against multiple inclusion, those
dependencies weren't also moved to the end of BUILDLINK_PACKAGES.
2004-03-18 09:12:08 +00:00