Commit graph

60325 commits

Author SHA1 Message Date
recht
b41361a72d - clamav-0.70 2004-04-25 21:40:29 +00:00
recht
ea57b19443 Note update of clamav to 0.70. 2004-04-25 21:39:56 +00:00
snj
174bf3edcd Convert to buildlink3. Impossible to test this, since it's been broken
for months.
2004-04-25 21:39:05 +00:00
snj
8e10678c94 Convert to buildlink3. 2004-04-25 21:38:03 +00:00
recht
e0fd17fc88 update to 0.70
0.70
----

The two major changes in this version are new thread manager in clamd
and support for decoding MS Office VBA macros. Both of them have been
implemented by Trog. Besides, there are many improvements and bugfixes
(all listed in ChangeLog), a short summary:

-) clamd
    + new thread manager (with better SMP support)
    + on-access scanning now also available on FreeBSD (with Dazuko 2.0)
    + new directive ArchiveBlockEncrypted
    + new directive ReadTimeout (replaces ThreadTimeout)
    + handle SIGHUP (re-open logfile) and SIGUSR2 (reload database)
    + respect TCPAddr in stream scanner

-) clamav-milter:
    + TCPWrappers support

-) libclamav:
    + support MS Office documents (OLE2) and VBA macro decoding
    + support encrypted archive detection
    + new flags: CL_OLE2, CL_ENCRYPTED (see clamdoc.pdf, Section 6.1)
    + improve virus detection in big files
    + improve support for multipart, bounce and embedded RFC822 messages
    + improve RAR support
    + include backup snprintf implementation

-) clamscan:
    + new option: --block-encrypted

-) freshclam
    + new option: --pid, -p (write pid file if run as daemon)
    + handle SIGHUP (re-open logfile), SIGTERM (terminate with log message),
      SIGALRM and SIGUSR1 (wake up and check mirror)
    + fix bug with -u and -c handling

-) contrib
    + windows clamd client now available with source code

-) documentation:
    + new Polish documentation on ClamAV and Samba integration
    + official documentation updated
2004-04-25 21:37:59 +00:00
snj
095aac78d0 This does not need buildlink2. 2004-04-25 21:29:39 +00:00
snj
539e6d4398 Convert to buildlink3. 2004-04-25 21:23:34 +00:00
snj
935e97d500 Convert to buildlink3 and fix build with gcc3. 2004-04-25 21:00:16 +00:00
snj
ae5e9b2a05 No longer used. 2004-04-25 20:50:36 +00:00
snj
463da892e6 Convert to buildlink3. 2004-04-25 20:48:01 +00:00
tv
368b0246a5 Use 0x57000000, not 0x97000000 for NT linker on Interix. 2004-04-25 20:41:27 +00:00
snj
b85ec1e49d Convert to buildlink3. 2004-04-25 20:37:25 +00:00
tv
0fc96ae1c3 Make compile on Interix. No-op change for other platforms, so no PKGREVISION
bump.  (Main MI change:  -soname -> -h, as some GNU ld(1) wants --soname
instead of -soname, but -h works on all GNU ld(1) versions.)
2004-04-25 20:36:11 +00:00
snj
00ef2ade5c Convert to buildlink3 and fix a spelling error in DESCR. 2004-04-25 20:07:04 +00:00
snj
626a266319 Convert to buildlink3. 2004-04-25 20:04:54 +00:00
snj
dd7c4f4e88 Add include/gnome-xml/libxml/*.h to BUILDLINK_FILES, needed to get, e.g.,
net/soup to build.
2004-04-25 19:55:54 +00:00
snj
36e8037acd Convert to buildlink3. 2004-04-25 18:51:10 +00:00
snj
a9c2cdcf20 Finish conversion to buildlink3. 2004-04-25 18:47:55 +00:00
snj
295b4f6e99 Convert to buildlink3. 2004-04-25 18:17:50 +00:00
snj
cd53e64f65 Convert to buildlink3. 2004-04-25 17:42:44 +00:00
snj
b99286f6ba Convert to buildlink3. 2004-04-25 17:12:30 +00:00
snj
0b6d0545c0 Belatedly add a buildlink3.mk. Noted by kristerw@. 2004-04-25 17:10:19 +00:00
recht
da91f11b99 bl3ify 2004-04-25 16:07:34 +00:00
minskim
f5fa431514 Update osh to 040216 and enable pkgviews installation.
This closes PR pkg/25314.

Changes:
	* Made various changes to hopefully improve the clarity.
	  Added COMPATIBILITY, HISTORY, and NOTES sections.
	* Made changes to how the shell handles terminating `\' characters
	  w/ the `-c' and `-t' flags.  This is a simple extension of the
	  same behaviour exhibited when the shell is interactive or when it
	  executes a command file, the only difference being that where a
	  terminating `\' character causes the shell to read the next line
	  of input in an interactive shell or command file, w/ the `-c' and
	  `-t' flags the shell terminates w/o executing the command line.
	* Allow parameter substitution w/ the `-c' and `-t' flags.  This
	  feature is not documented.  For example, invoking the shell as
	  follows allows parameter substitution to take place:
	  % osh -t one two three
	  echo $0 $1 $2 $3
	  -t one two three
	* The shell now ignores SIGINT and SIGQUIT when the `-c' or `-t' flag
	  is used.  Thus, asynchronous commands invoked in this way ignore
	  interrupts as they should.
	* Ignore SIGINT and SIGQUIT for all commands started from asynchronous
	  subshells.  For example, `( sleep 300; some_command ) >outfile&' now
	  ignores `^C' and `^\' as it should.
	* Don't ignore SIGINT and SIGQUIT for asynchronous commands started
	  in command files.  If a command file is terminated by one of these
	  signals, the asynchronous commands should also terminate.
	* Reverted a change made to termination reporting in osh-040216 that
	  was not actually compatible w/ the V6 shell.
	* Always terminate the shell when read(2) fails.
	  This fixes a possible infinite loop.
	* Fixed a bug in the parser that caused syntactically incorrect
	  subshell commands not to be detected as such when preceded by
	  redirection arguments (e.g., `<infile >outfile ( | )').
	  This bug was introduced in osh-040216.
	* Fixed possible buffer overflows in substparm(); added a new error
	  message, "Too many characters", and made other changes necessary to
	  properly deal w/ the new error condition.  This problem had been
	  present since at least osh-020214.
	* Made some changes to how globbing is handled by the shell.
	  Specifically, glob(3) should only be called when an argument contains
	  unquoted occurrences of any of the glob characters `*', `?', or `['.
	  Previously, it was being called for every argument of an external
	  command.  This change improves run-time performance slightly as
	  judged by time(1) and information returned by getrusage(2).
	* The above-mentioned change also allows the following compatibility
	  feature.  Added globbing compatibility when the shell is compiled
	  w/ -DCLONE so that when no matches are found a diagnostic,
	  "No match", is printed.
2004-04-25 15:49:57 +00:00
minskim
043cd3c2c6 Accept /usr/include/db.h as a valid db-1.85 header file only when
"^\#define.*HASHVERSION.*2$" is found.
2004-04-25 15:06:10 +00:00
recht
5e52fae621 bli3fy, remove unused buildlink2.mk 2004-04-25 14:01:01 +00:00
recht
7d9f749533 bl3ify 2004-04-25 13:54:07 +00:00
tv
fbdc237f69 PERL_REQD = 5.8.3nb1. 2004-04-25 13:52:53 +00:00
recht
8ebcec78d1 bl3ify 2004-04-25 13:50:10 +00:00
recht
d582931071 Add buildlink3.mk. 2004-04-25 13:43:35 +00:00
recht
46829e1ea2 bl3ify 2004-04-25 13:36:29 +00:00
tron
fd535f27c2 Backout broken change which also fixes problems with the recorded checksum. 2004-04-25 13:27:06 +00:00
tron
10796b6afd Add missing entries for version 1.6nb1 and 1.6nb2 of the "mozilla" package. 2004-04-25 13:22:36 +00:00
tron
9d78e7d074 Revert previous change. It appears that the revision of this package
shouldn't have bumped at all.
2004-04-25 13:19:56 +00:00
recht
7ba5d1e947 bl3ify, removed unused buildlink2.mk 2004-04-25 13:09:07 +00:00
tron
8123f86d7e Set correct package revision in correct file. This undos the recent
accidental version number downgrade. We are now at version 1.6nb3.
2004-04-25 13:07:19 +00:00
tron
0fc1b0e119 Correct botch in last commit. 2004-04-25 12:52:36 +00:00
tron
a0045b971e Remove "${PKGMANDIR}/" prefix from entries for manual page. This variable
is defined nowhere.
2004-04-25 12:45:58 +00:00
dillo
b7b6103d35 +intercal-0.24 [dillo] 2004-04-25 12:12:39 +00:00
dillo
c25af11fc8 update homepage 2004-04-25 12:11:39 +00:00
dillo
b61f271c51 drop maintainership 2004-04-25 12:07:12 +00:00
wiz
781c43d96f Unused. 2004-04-25 11:50:56 +00:00
wiz
ed85bb3137 Convert to bl3. 2004-04-25 11:50:39 +00:00
wiz
77d703fbd9 Set CPPFLAGs like in bl2. 2004-04-25 11:49:40 +00:00
dillo
81af2e463a use my NetBSD.org email address. 2004-04-25 11:48:31 +00:00
wiz
4bfb873015 Unused. 2004-04-25 11:47:48 +00:00
dillo
c0bc786d20 use my NetBSD.org email address, update homepage 2004-04-25 11:47:41 +00:00
wiz
a3a59bd8b9 Add. 2004-04-25 11:47:08 +00:00
wiz
4e282b0529 Convert to bl3; use bdb/bl3 instead of db/bl2. 2004-04-25 11:46:54 +00:00
dillo
64835f319a use my NetBSD email address, update homepage 2004-04-25 11:44:59 +00:00