summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2004-04-25Unused.wiz3-61/+0
2004-04-25Convert to bl3.wiz1-5/+5
2004-04-25Don't build on Interix.tv1-1/+3
2004-04-25Add conflict with gkrellm-share>=2.0, since they bothwiz1-1/+3
install share/locale/*/LC_MESSAGES/gkrellm.mo.
2004-04-25GNU tar 1.11.2 as seen in NetBSD 1.6.2 does not grok -T with -C likeseb1-2/+2
NetBSD pax-as-tar. So avoid using both...
2004-04-25No longer used.snj1-88/+0
2004-04-25Convert to buildlink3.snj1-5/+5
2004-04-25Unused.wiz1-21/+0
2004-04-25Replace papaya bl inclusion with BUILD_DEPENDS on it; the bl file waswiz1-2/+3
only adding a build dependency, and papaya has no libraries/headers to buildlink. Additionally, the texi2html inclusion in its bl file is bogus, since texi2html is only a build dependency for papaya.
2004-04-25Convert to buildlink3.snj1-4/+4
2004-04-25Make sure PKGDIRMODE is always set in bsd.prefs.mk so it can be checkedtv3-7/+7
in lang/perl58/Makefile. (It had been set previously only in bsd.pkg.mk.)
2004-04-25Unused.wiz2-55/+0
2004-04-25Blind conversion to bl3, since the Makefile.common included bywiz1-3/+3
this package already has USE_BUILDLINK3 set.
2004-04-25- clamav-0.70recht1-2/+1
2004-04-25Note update of clamav to 0.70.recht1-1/+2
2004-04-25Convert to buildlink3. Impossible to test this, since it's been brokensnj1-5/+5
for months.
2004-04-25Convert to buildlink3.snj2-26/+19
2004-04-25update to 0.70recht9-97/+35
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-25This does not need buildlink2.snj1-2/+2
2004-04-25Convert to buildlink3.snj5-14/+33
2004-04-25Convert to buildlink3 and fix build with gcc3.snj3-4/+36
2004-04-25No longer used.snj1-29/+0
2004-04-25Convert to buildlink3.snj2-8/+32
2004-04-25Use 0x57000000, not 0x97000000 for NT linker on Interix.tv2-4/+4
2004-04-25Convert to buildlink3.snj3-25/+51
2004-04-25Make compile on Interix. No-op change for other platforms, so no PKGREVISIONtv4-13/+36
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-25Convert to buildlink3 and fix a spelling error in DESCR.snj2-4/+4
2004-04-25Convert to buildlink3.snj4-13/+62
2004-04-25Add include/gnome-xml/libxml/*.h to BUILDLINK_FILES, needed to get, e.g.,snj1-1/+2
net/soup to build.
2004-04-25Convert to buildlink3.snj1-5/+5
2004-04-25Finish conversion to buildlink3.snj1-2/+2
2004-04-25Convert to buildlink3.snj2-8/+8
2004-04-25Convert to buildlink3.snj4-19/+20
2004-04-25Convert to buildlink3.snj3-4/+22
2004-04-25Belatedly add a buildlink3.mk. Noted by kristerw@.snj1-0/+18
2004-04-25bl3ifyrecht1-4/+4
2004-04-25Update osh to 040216 and enable pkgviews installation.minskim3-6/+9
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-25Accept /usr/include/db.h as a valid db-1.85 header file only whenminskim1-3/+11
"^\#define.*HASHVERSION.*2$" is found.
2004-04-25bli3fy, remove unused buildlink2.mkrecht2-29/+3
2004-04-25bl3ifyrecht1-4/+4
2004-04-25PERL_REQD = 5.8.3nb1.tv1-2/+2
2004-04-25bl3ifyrecht1-3/+3
2004-04-25Add buildlink3.mk.recht1-0/+18
2004-04-25bl3ifyrecht1-4/+4
2004-04-25Backout broken change which also fixes problems with the recorded checksum.tron1-2/+2
2004-04-25Add missing entries for version 1.6nb1 and 1.6nb2 of the "mozilla" package.tron1-1/+3
2004-04-25Revert previous change. It appears that the revision of this packagetron1-2/+2
shouldn't have bumped at all.
2004-04-25bl3ify, removed unused buildlink2.mkrecht2-28/+4
2004-04-25Set correct package revision in correct file. This undos the recenttron2-4/+3
accidental version number downgrade. We are now at version 1.6nb3.
2004-04-25Correct botch in last commit.tron1-3/+3