summaryrefslogtreecommitdiff
path: root/security (unfollow)
Commit message (Collapse)AuthorFilesLines
2003-12-15Update to 0.4.1.Akinori MUSHA2-2/+2
Notes: svn path=/head/; revision=95839
2003-12-14- Fix dependency on slib-guilePav Lucistnik1-1/+1
Pointy hat to: pav Notes: svn path=/head/; revision=95818
2003-12-14- Chase new slib-guile infrastructurePav Lucistnik1-1/+1
Notes: svn path=/head/; revision=95813
2003-12-12- Add /var/log/security to the default list of input filesSergei Kolobov2-1/+11
- Bump PORTREVISION PR: 56578 Submitted by: KIMURA Yasuhiro <yasu@utahime.org> Notes: svn path=/head/; revision=95691
2003-12-12remove extra directories, respect NOPORTDOCSYen-Ming Lee2-2/+7
Notes: svn path=/head/; revision=95670
2003-12-11- Update to 20031211Dirk Meyer2-2/+2
clamd: UseProcesses: use processes instead of threads (initial version) clamav-milter: Added --quarantine-dir clamd: new directive ArchiveMaxCompressionRatio Various fixes PR: 60137 Submitted by: rob@debank.tv Notes: svn path=/head/; revision=95616
2003-12-11- fix path for freshclamDirk Meyer1-1/+1
Notes: svn path=/head/; revision=95615
2003-12-11- Fix COMMENT formatKirill Ponomarev1-1/+1
PR: 60148 Submitted by: Ports Fury Notes: svn path=/head/; revision=95610
2003-12-11- Fix COMMENT formatKirill Ponomarev1-1/+1
PR: 60147 Submitted by: Ports Fury Notes: svn path=/head/; revision=95609
2003-12-11Update to 1.8.1, mostly minor bugfixes. See docs/Changelog for details.Mark Linimon2-2/+2
PR: ports/59935 Submitted by: David Thiel <lx@redundancy.redundancy.org> (maintainer) Notes: svn path=/head/; revision=95589
2003-12-10Update to DAT 4308James E. Housley2-2/+2
Notes: svn path=/head/; revision=95567
2003-12-10- H+BEDV GmbH released a new tarball shipping an updated anti-virus engineAlexander Leidinger4-9/+35
(6.22.0.1 -> 6.23.0.1), a current virus definition file (6.23.0.1) and and updated antivir.conf adding new options for the new features in the current AV engine. If you are using the auto-update facility you should already have the updated AV engine and VDF. The new options available in antivir.conf are only relevant if you are using the update daemon mechanism (i.e. you are using `antivir --update-daemon` instead of running antivirupdater via cron(8)) or you own a true commercial license (i.e. no private license) and want to catch "unwanted files" e.g. dialers in addition to worms and viruses. - Be consistent in how PREFIX gets inserted in the avq script compared to the other patched files. The old way previously saved a patch which is no longer true. No change in the installed script. Submitted by: Marius Strobl <marius@alchemy.franken.de> Notes: svn path=/head/; revision=95553
2003-12-10Update to version 2.33.Dmitry Sivachenko2-2/+5
Approved by: maintainer Notes: svn path=/head/; revision=95542
2003-12-10Maintenance update of OpenSC to 0.8.1. USB token support is not yet enabledBruce M Simpson7-120/+158
for FreeBSD; patches for this will be graciously accepted. Sponsored by: Weyland-Yutani Corporation Notes: svn path=/head/; revision=95534
2003-12-09Fix some bugs in the previous commit...Alexander Leidinger2-4/+5
- correct typo in the name of the socket variable (used to remove a stale socket) - install the startup script with the correct name (important if you use clamav-milter too) Submitted by: Marius Strobl <marius@alchemy.franken.de> Approved by: maintainer (implizit, this is a bugfix for the previous version) Notes: svn path=/head/; revision=95480
2003-12-08BEWARE: As rcoder(8) isn't present on FreeBSD 4 but clamd must beAlexander Leidinger13-69/+214
be started before clamav-milter the startup-script for clamd must alphabetically arranged before the startup-script for clamav-milter. It was decided to use the clamd statup-scrtipt from security/clamav-devel (clamav-clamd.sh), so users running an older version of security/clamav have to change 'clamd_enable="YES"' to 'clamav_clamd_enable="YES"' in /etc/rc.conf. On the other hand this changes makes it easier to switch between security/clamav and security/clamav-devel. - Respect PTHREAD_CFLAGS. - Use USE_LIBTOOL_VER=14 as the libtool shipping with clamav 0.65 erroneously links against libc _and_ libc_r on FreeBSD 4. - Don't link against libcipher on FreeBSD < 501100, clamav doesn't depend on it. The linker warnings suggesting that it is required were triggered by linking against both, libc and libc_r. - Unconditionally depend on math/libgmp4. Otherwise, if libgmp4 is already installed on a FreeBSD 4-STABLE system compilation of security/clamav fails, as the headers of libgmp4 are used but the base libgmp is used for linking. - Fix generation of clamav-milter.8 when building with WITH_MILTER (part of new files/patch-clamav-milter::Makefile.in). - Don't USE_GETOPT_LONG when compiling with WITH_MILTER, clamav uses its own getopt_long() regardless if a devel/libgnugetopt is installed or the version in the base of FreeBSD 5 is present. - Allow compilation of WITH_MILTER with mail/sendmail. - Install a startup-script (taken from security/clamav-devel with some fixes in comments) for clamav-milter when compiled with WITH_MILTER. - In pkg-descr remove the note that clamav-milter doesn't build on FreeBSD 4 with base gcc, it builds fine there. Mention that clamav-milter can be optionally used (taken from pkg-descr of security/clamav-devel). - Fix compilation when an older version of security/clamav is installed. If there's an older version of libclamav installed clamav 0.65 will link against it instead of the newly built one. This is not a problem if the installed version is compatible with the new one as libclamav gets linked dynamically and the installed version will be replaced with the new one. However, if the older version is incompatible linking of clamav 0.65 fails. This problem was discovered by Jan-Peter Koopmann Jan-Peter.Koopmann@seceidos.de and the fix (most of the new patches in the files directory) confirmed working. - In clamav-milter replace the path to the used sendmail executable with the location of the mailwrapper(8) (/usr/sbin/sendmail). Obtained from security/clamav-devel. PR: 59948 Submitted by: Marius Strobl <marius@alchemy.franken.de> Approved by: maintainer Notes: svn path=/head/; revision=95378
2003-12-08Update to 2.07Erwin Lansing2-2/+5
Notes: svn path=/head/; revision=95354
2003-12-08Updated to 1.05Sergey Skvortsov3-4/+6
Pointed by: erwin Notes: svn path=/head/; revision=95353
2003-12-08- Update to 0.20Kirill Ponomarev2-2/+2
PR: 60040 Submitted by: maintainer Notes: svn path=/head/; revision=95334
2003-12-06- Add new MASTER_SITESKirill Ponomarev2-2/+3
- Developers updated their virus definition table and rerolled the tarball Submitted by: maintainer Notes: svn path=/head/; revision=95201
2003-12-05Add xca 0.4.5, graphical certification authority.Sergei Kolobov5-0/+66
Graphical certification authority is an interface for managing RSA keys and certificates, and the creation and signing of PKCS#10 requests. It uses the OpenSSL library and a Berkeley DB for key and certificate storage. It supports importing and exporting keys and PEM DER PKCS8 certificates, signing and revoking of PEM DER PKCS12, and selection of x509v3 extensions. A tree view of certificates is presented. Author: Christian Hohnstaedt <christian@hohnstaedt.de> WWW: http://www.hohnstaedt.de/xca.html PR: 58378 Submitted by: Valentin Zahariev <curly@e-card.bg> Notes: svn path=/head/; revision=95171
2003-12-05- Update to 1.24Sergei Kolobov3-16/+20
While I'm here: - Rearrange MASTER_SITES: PacketStorm mirros do not seem to carry versions later than 1.22 - Install examples to EXAMPLESDIR PR: 59800 Submitted by: Robin Breathe <robin@isometry.net> Approved by: maintainer Notes: svn path=/head/; revision=95130
2003-12-05- Update to version 0.0.10Kirill Ponomarev4-21/+164
PR: 59758 Submitted by: Ports Fury Notes: svn path=/head/; revision=95129
2003-12-05- Update to version 4.3.1Kirill Ponomarev2-2/+2
PR: 59949 Submitted by: maintainer Notes: svn path=/head/; revision=95114
2003-12-04- Reset maintainership to ports@FreeBSD.orgSergei Kolobov1-1/+1
Requested by: Mark Hannon <markhannon@optusnet.com.au> (maintainer) in follow-up to ports/58613 Notes: svn path=/head/; revision=95058
2003-12-04Update to 1.5Tilman Keskinoz2-2/+2
PR: 59901 Submitted by: Colin Percival <cperciva@daemonology.net> Notes: svn path=/head/; revision=95031
2003-12-04- Change maintainer emailKirill Ponomarev1-1/+1
Submitted by: den Notes: svn path=/head/; revision=95008
2003-12-04Update to DAT 4307James E. Housley2-2/+2
Notes: svn path=/head/; revision=94999
2003-12-04- Update to 2.0.9Sergei Kolobov9-8/+61
PR: 59020 Submitted by: maintainer Notes: svn path=/head/; revision=94998
2003-12-04- Update to 2.0.9Sergei Kolobov9-8/+61
PR: 59019 Submitted by: maintainer Notes: svn path=/head/; revision=94997
2003-12-04- Update to 1.1.3Sergei Kolobov2-6/+7
- Add MASTER_SITES While I'm here: - Re-arrange Makefile variables - Shorten COMMENT to fit the limit - Remove unnecessary WRKSRC (default value) PR: 59798 Submitted by: maintainer Notes: svn path=/head/; revision=94996
2003-12-04Update to 1.3Mathieu Arnold2-2/+2
Notes: svn path=/head/; revision=94989
2003-12-04Update to 2.1.17.Hajimu UMEMOTO6-67/+83
Notes: svn path=/head/; revision=94902
2003-12-04add WITH_ALWAYSTRUE option.Hajimu UMEMOTO1-0/+4
Requested by: Ted Cabeen <secabeen@pobox.com> Notes: svn path=/head/; revision=94874
2003-12-04Per distfile survey, remove dead mastersite.Mark Linimon1-2/+1
Approved by: Justin Stanford <jus@zion.4dds.co.za> (maintainer) Notes: svn path=/head/; revision=94869
2003-12-04- fix UsageDirk Meyer3-6/+6
Notes: svn path=/head/; revision=94863
2003-11-30Correct the OSVERSION check for the libgmp depedency; libgmp was removedMike Silbersack1-1/+2
waaaay earlier than I had previously thought. Also bump portrevision since this is an important change for 5.x users. Approved by: portmgr (marcus) Notes: svn path=/head/; revision=94827
2003-11-28Clamav 0.65 uses libgmp for digital signature calculations;Mike Silbersack1-0/+6
as libgmp no longer exists in 5.x, add the needed dependency to this Makefile. (Note that stale gmp.h and libgmp files sitting around may still cause problems, anyone with an "old" 5.x system that sees oddities in the build should make sure that those old files are purged from /usr/lib and /usr/include.) Notes: svn path=/head/; revision=94816
2003-11-28*** Security Update (not fix, only workaround) ***Jun Kuriyama6-2/+124
Disable the ability to create signatures using the ElGamal sign+encrypt (type 20) keys as well as to remove the option to create such keys. Reported by: se References: http://lists.gnupg.org/pipermail/gnupg-devel/2003-November/020570.html http://lists.gnupg.org/pipermail/gnupg-devel/2003-November/020569.html Approved by portmgr (will) Notes: svn path=/head/; revision=94812
2003-11-25- AMD64 has no APMTilman Keskinoz2-6/+6
- Revert logic, i386 seems to be the only ARCH with APM Submitted by: Adriaan de Groot Approved by: portmgr (marcus) Notes: svn path=/head/; revision=94785
2003-11-25Supersedes ports/59442 and previous hasty-fix, and fixes the following:Bruce M Simpson4-26/+122
- Build with __FreeBSD_version > 501114 (see bms commit) - Build with new route.h (no RTF_PRCLONING) - Don't use hardware assistance on framentation when DF is set. - Allow pftcpdump -w to be used with pfsync. Found-by: bento / Pyun YongHyeon Submitted by: Max Laier PR: ports/59548 Notes: svn path=/head/; revision=94775
2003-11-24Fix build on -CURRENT.Joe Marcus Clarke1-0/+11
Reported by: bento via kris Approved by: portmgr (implicit) Notes: svn path=/head/; revision=94769
2003-11-23Fix crypto-publish extract.Cy Schubert4-80/+4
Notes: svn path=/head/; revision=94748
2003-11-23Upgrade to 0.8.2 (and unbreak, as the old distfile is long gone)Dag-Erling Smørgrav3-4/+7
Approved by: portmgr (marcus) Notes: svn path=/head/; revision=94745
2003-11-22- Update to version 0.75Kirill Ponomarev2-2/+2
PR: 59572 Submitted by: Jim Shewmaker <jims@bluenotch.com> Approved by: maintainer Notes: svn path=/head/; revision=94701
2003-11-22Update f-prot to 4.3.0.James E. Housley2-3/+2
PR: 59562 Submitted by: MAINTAINER Notes: svn path=/head/; revision=94692
2003-11-21Update to 2.0.5 [1]Sergey A. Osokin3-68/+68
Use %%DOCSDIR%% and %%DATADIR%% macros [2] Submitted by: Linh Pham <question@closedsrc.org> [1], osa [2] PR: 59510 Notes: svn path=/head/; revision=94663
2003-11-21Fix incorrect argument order for kill(2) [1]Sergey A. Osokin2-11/+7
Use USE_REINPLACE instead of one-line patch-stentry.c. Bump PORTREVISION. Bug found and original patch: Valentin Nechayev <netch@lucky.net> [1] Approved by: maintainer (timeout) PR: 59510 Notes: svn path=/head/; revision=94653
2003-11-21Fix build on alphaTilman Keskinoz1-0/+14
Notes: svn path=/head/; revision=94646
2003-11-21- Support for TCP as the tunnel transport was addedKirill Ponomarev9-12/+42
- Change maintainer email PR: 59543 Submitted by: maintainer Notes: svn path=/head/; revision=94635