Commit graph

127978 commits

Author SHA1 Message Date
bjs
951a662426 + Updated x11/libXft to 2.1.13 [bjs 2008-07-13] 2008-07-13 23:41:27 +00:00
bjs
7475541209 Update to libXft-2.1.13. Bump BUILDLINK_ABI_DEPENDS, as the library
version is now 2.1.13 (from 2.1.2).  ChangeLog:

commit 19240d3605b5f1e88ca5509afffd48acdb7e1c5f

    Revert "Drop Requires, use Requires.private instead."

    This reverts commit a1c78ce68c5f2106c38b6cb93a6b22420e1a80ab.

    Unfortunately this doesn't work on old pkg-config, which made
    Requires.private completely useless.  That's fixed in 0.22, but...

commit a1c78ce68c5f2106c38b6cb93a6b22420e1a80ab

    Drop Requires, use Requires.private instead.

    Users of libXft don't need to link with fontconfig, freetype and
    Xrender directly if they don't use them.

commit 541c6194d986e7849ee9541a9fd60b0724647a44

    Bug #14232: Fix XftDrawRect when Render not supported.

commit 8a7f3d450c1f339f429dbce55df523d026c92375

    Register objects used by libXft.

    libXft uses XFT_MAX_GLYPH_MEMORY without first registering with
    fontconfig.

commit 8ae5ea8c75a7850fa0aca0acc3962b6263f55094

    XftFontOpenInfo: Use of uninitialised value of size 8 (bug 11200)

    This is due to XftFontInfoFill using the binary representation of the
    XftFontInfo to generate fi->hash.

    With 64-bit pointers there is padding between .hash and .file in struct
    _XftFontInfo.  This padding is not initialized, and the hash uses these
    bytes.

    This will interfere with finding "a matching previously opened font" in
    XftFontOpenInfo, and XftFontInfoEqual, which uses memcmp, will have
    similar problems.

    This fix makes no assumptions about the sizes and alignment of
    members of struct _XftFontInfo by using memset.  (It also makes
    no assumptions about what FcPatternGet* does to its output parameter
    when it returns FcResultNoMatch.)
2008-07-13 23:41:02 +00:00
bjs
af7c809e10 + Updated x11/libXrandr to 1.2.3 [bjs 2008-07-13] 2008-07-13 23:32:04 +00:00
bjs
8925b1e315 Update to version 1.2.3. ChangeLog:
commit 203fc002b6948c3942f0461a0346dd07b633222d

    Bug #16430: Ignore ConfigureNotify on non-root windows in
    UpdateConfiguration

commit 332eee90c4d00be3b11049e0261323abe89a96dc

    Rename parameters to clarify QueryVersion/QueryExtension.

    These parameters are not treated as input. Rename them to make
    the inner workings slightly more obvious.

    X.Org Bug 14511 <http://bugs.freedesktop.org/show_bug.cgi?id=14511>

commit 824f3d4a3a4669526a5c391c6668df0384b49cdb

    Bug #14388: Remove XRRScreenConfig() and XRRConfig() from Xrandr.h.

    It seems that they were never actually implemented.
    Also remove the corresponding manpage symlinks.

commit 23a47035818390ca197179a9a69a54badb370990

    Hide some private symbols.

    XExtensionInfo, XRRExtensionName, XRRFindDisplay, _XRRHasRates and
    _XRRVersionHandler are internal to libXrandr.  Don't export them.
2008-07-13 23:31:51 +00:00
bjs
25a739e3ff + Updated x11/libXxf86vm to 1.0.2 [bjs 2008-07-13] 2008-07-13 23:18:45 +00:00
bjs
70c414d849 Update to version 1.0.2. In addition to incorporating patch-aa, there's
one more change: zero-length strings are set to NULL instead of null-
terminated.
2008-07-13 23:18:19 +00:00
bjs
4c2c006557 + Updated x11/pixman to 0.11.6 [bjs 2008-07-13] 2008-07-13 23:16:33 +00:00
bjs
96def92427 Update to pixman-0.11.6. ChangeLog:
commit a766b62880108f278478888f5167a5fbf2819a97

    Add configure time options to disable mmx/sse2/vmx

commit 02268903e4311709744c11e495f9b17f171ec5e9

    pixman-sse.c: silence pointer-cast compiler warnings.

    Cast pointers to words of the same size, not 32-bits.

commit eb2d95de98683a387153f010077ad9c3c3b1b01d

    Fix implicit declaration of function 'free'.

    Otherwise pointer will be truncated on 64bit arch and
    your programs will crash.

commit 29d144712e558aaeb49f4384028dd669d76a410b

    Fix memory leak by freeing boxes{16,32}.

    After calling pixman_region_init_rects() or
    pixman_region32_init_rects(), boxes{16,32} were not freed before
    returning. Fixes bug 16312.

commit 5d32519316b40b35113c6df9e15d955a16709ba2

    Use pixman_malloc_ab instead of plain malloc for the
    fbStore64_generic scratch buffer.

commit b1c70c4e6435d7f15751111828c381feb1d139cf

    Move PIXMAN_FORMAT_16BPC to pixman-private.h

commit 7fa966df0ee781fa486715710f389b148c11d36e

    Decide based on the image formats whether we need wide compositing.

commit 7cb735c9c0fa55ae1f4d8d13da9f33e3da2ae8fe

    Take the source format into account in pixman_expand.

    Extract the original bits of the source image for each
    component and then replicate up to 16 bits to fill the wide
    components.  Make sure to hard-code the alpha value to 1 if
    the source format didn't have alpha.

commit c0d98e96605c6d03f4b02f337f2f5827165bb092

    Make expansion and contraction loops clearer.

commit fc0b28bf6af81428b7ac045614eea97fbf9c4a70

    Add wide source picture, external alpha, and transformed
    image routines.  The wide external alpha path should work
    correctly with wide formats.  The wide transformed fetch code for
    now just does a 32-bit fetch and then expands, which will lose
    precision.  Source pictures, for now, are evaluated at depth 32
    and then are expanded to depth 64.  We could get higher precision
    by evaluating them directly at depth 64, but this should be good
    enough for now.

commit 42a3a2d6fc8d3e521c6914ff8fb89f1fbc673e28

    Add wide fetch/store functions.

    Use the narrow ones and expand/contract where necessary.  Still
    need wide paths for fancy pictures, but this gets the
    basic stuff working.

commit 7591d3f1d7e0884f9362018edf720724095cf380

    Add expand and contract functions to convert between ARGB8
    and ARGB16.  The expansion function isn't quite correct,
    but gives reasonable results.
2008-07-13 23:16:02 +00:00
smb
75a384e9f1 Note update to package 2008-07-13 23:07:57 +00:00
smb
5f39521968 Fix distinfo.... 2008-07-13 22:56:08 +00:00
smb
1474a3dbe6 Updated claws-mail and its plugins to 3.5 2008-07-13 22:51:45 +00:00
smb
aba4950046 Added option to permit use of ssl with the package. By default, it's
disabled because of a (perceived?) conflict between the openssl license
and the GPL.
2008-07-13 22:46:48 +00:00
smb
762ae73f59 Add claws-mail archive plug-in; delete pdf viewer plug-in 2008-07-13 22:36:57 +00:00
smb
87c52598af Package deleted upstream due to GPL license version conflict 2008-07-13 22:35:51 +00:00
smb
053b341cb2 Update to 3.5.0:
# IMAP with STARTTLS
The certificate port on TLS was fixed, however this will trigger
one wrong 'New certificate' warning on the first connection.

New in this release:


# Added an option, "Use secure file deletion if possible", which
enables shredding of temporary files and messages instead of
just removing them. This is available on the Other preferences
page.

# Added an option, "Select the HTML part of multipart/alternative
messages". This is available on the Message View/Text Options
preferences page.

# Added an option to the 'Create new folder' dialogue which enables
new folders to inherit the properties of their parent folders
during folder creation.

# Added a hidden option, "two_line_vertical", which toggles the
2-line view in the message list when using the 3-column layout.
Defaults to '1', show 2 lines.

# Added a hidden option, "outgoing_fallback_to_ascii", which allows
the user to specify an outgoing charset/encoding, but still fall
back to 7bit US-ASCII when possible.
Defaults to '1', fallback when possible.

# Added support for the Avant Window Navgator (Awn) information
bubble. This is automatically enabled if dbus is available.

# Face and X-Face headers can now be added globally and per-account
from configuration files under ~/.claws-mail/autofaces/. Further
information is provided in the manual.

# The SHA1 fingerprint is now shown on the SSL certificate dialogue
and the labels are now selectable.

# Several GUI improvements have been made, (Address book, filtering
dialogue, Actions dialogue, and Account preferences).

# New icons have been added for 'Reply to list' and 'Cancel'. The
'Insert file' and 'Close' icons have been improved, as have the
tray icons.

# Added the Trash and Delete icons to the Custom Toolbars options.

# SMTP-only accounts are now not shown in the Receive menus and
Account lists in filtering/processing, as they are irrelevant here.

# tools/csv2addressbook.pl
Support for a gmail exported csv address book was added.

# Updated English, French, and Spanish manuals.

# Updated translations: Brazilian Portuguese, Finnish, French,
German, and Spanish.

# Removed unmaintained translations: Bulgarian, Croatian, Czech,
Dutch, Greek, Hebrew, Japanese, Korean, Norwegian, Russian,
Swedish, and Taiwanese. (New maintainers are very welcome,
contact paul@claws-mail.org)
2008-07-13 22:34:19 +00:00
smb
94ee55f522 Finish update to 3.5.0 2008-07-13 22:32:05 +00:00
tron
c0f10ff92a Note update of the "libsmi" package to version 0.4.8. 2008-07-13 22:26:41 +00:00
tron
70db6d654e Update "libsmi" package to version 0.4.8. Changes since version 0.4.5:
- test/*: updated a couple of checks.
- tools/*: fixed a couple of minor compiler warnings.
- mibs/ietf/PKTC-IETF-SIG-MIB: added (RFC 5098).
- mibs/ietf/MIDCOM-MIB: added (RFC 5190).
- tools/Makefile.am: added missing files to the distribution.
- mibs/ietf/URI-TC-MIB: added (RFC 5017).
- mibs/ietf/PIM-STD-MIB: added (RFC 5060).
- mibs/ietf/IF-CAP-STACK-MIB,EFM-CU-MIB: added (RFC 5066).
- mibs/ietf/UDPLITE-MIB: added (RFC 5097).
- mibs/ietf/LANGTAG-TC-MIB: added (RFC 5131).
- mibs/ietf/IPMCAST-MIB: added (RFC 5132).
- updated IANA MIBs.
- mibs/ietf/T11-FC-RSCN-MIB: added (RFC 4983).
- mibs/ietf/T11-FC-FABRIC-CONFIG-SERVER-MIB: added (RFC 4935).
- mibs/ietf/T11-FC-FABRIC-LOCK-MIB,T11-FC-ZONE-SERVER-MIB: added
  (RFC 4936).
- mibs/ietf/ISNS-MIB: added (RFC 4939).
- mibs/ietf/DOT3-EPON-MIB: added (RFC 4837).
- mibs/ietf/DOT3-OAM-MIB: added (RFC 4878).
- mibs/ietf/TCP-ESTATS-MIB: added (RFC 4898).
- mibs/ietf/SIP-{UA,TC,COMMON,SERVER}-MIB: added (RFC 4780).
- mibs/ietf/MAU-MIB: updated (RFC 4836).
- mibs/ietf/DS1-MIB: updated (RFC 4805).
- mibs/ietf/IPSEC-SPD-MIB: added (RFC 4807).
- mibs/iana/IANA-GMPLS-TC-MIB,IANA-IPPM-METRICS-REGISTRY-MIB,
  IANA-ITU-ALARM-TC-MIB,IANA-MAU-MIB: added.
- mibs/iana/IANA-CHARSET-MIB,IANA-ADDRESS-FAMILY-NUMBERS-MIB,
  IANAifType-MIB: added.
- mibs/ietf/GMPLS-TC-STD-MIB (RFC 4801): added.
- mibs/ietf/GMPLS-TE-STD-MIB (RFC 4802): added.
- mibs/ietf/GMPLS-LSR-STD-MIB,GMPLS-LABEL-STD-MIB (RFC 4803): added.
- mibs/ietf/MSDP-MIB: added (RFC 4624).
- mibs/ietf/PKTC-IETF-MTA-MIB: added (RFC 4682).
- mibs/ietf/ADSL2-LINE-MIB,ADSL2-LINE-TC-MIB: added (RFC 4706).
- mibs/ietf/RAQMON-MIB: added (RFC 4711).
- mibs/ietf/T11-FC-VIRTUAL-FABRIC-MIB: added (RFC 4747).
- mibs/ietf/DOCS-CABLE-DEVICE-MIB: updated (RFC 4639).
- mibs/ietf/OSPF-MIB,OSPF-TRAP-MIB: updated (RFC 4750).
- lib/scanner-smi.l: accept also \r as end-of-line.
- mibs/ietf/T11-FC-ROUTE-MIB: added (RFC 4625).
- mibs/ietf/T11-FC-FSPF-MIB: added (RFC 4626).
- mibs/ietf/LMP-MIB: updated (RFC 4631).
- mibs/ietf/RADIUS-DYNAUTH-CLIENT-MIB: added (RFC 4672).
- mibs/ietf/RADIUS-DYNAUTH-SERVER-MIB: added (RFC 4673).
- autogen.sh: Use glibtool instead of libtool on Darwin.
- mibs/ietf/RADIUS-AUTH-CLIENT-MIB: updated (RFC 4668).
- mibs/ietf/RADIUS-AUTH-SERVER-MIB: updated (RFC 4669).
- mibs/ietf/RADIUS-ACC-CLIENT-MIB: updated (RFC 4670).
- mibs/ietf/RADIUS-ACC-SERVER-MIB: updated (RFC 4671).
- mibs/ietf/DOCS-IF-MIB: updated (RFC 4546).
- mibs/ietf/DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB: added (RFC 4547).
- mibs/ietf/DISMAN-NSLOOKUP-MIB,DISMAN-PING-MIB,DISMAN-TRACEROUTE-MIB:
  updated (RFC 4560).
- mibs/ietf/ISCSI-MIB: added (RFC 4544).
- mibs/ietf/IPS-AUTH-MIB: added (RFC 4545).
- mibs/ietf/SNMP-USM-AES-MIB: updated (RFC 3826).
2008-07-13 22:26:13 +00:00
tron
b240cf606a Note update of the "rsync" package to version 3.0.3. 2008-07-13 22:18:40 +00:00
tron
b1338ec4b6 Update "rsync" package to version 3.0.3 Changes since 3.0.2:
Bug Fixes:
- Fixed a wildcard matching problem in the daemon when a module has
  "use chroot" enabled.
- Fixed a crash bug in the hard-link code.
- Fixed the sending of xattr directory information when the code finds a
  --link-dest or --copy-dest directory with unchanged xattrs -- the
  destination directory now gets these unchanged xattrs properly applied.
- Fixed an xattr-sending glitch that could cause an "Internal abbrev"
  error.
- Fixed the combination of --xattrs and --backup.
- The generator no longer allows a '.' dir to be excluded by a daemon-
  exclude rule.
- Fixed deletion handling when copying a single, empty directory (with no
  files) to a differently named, non-existent directory.
- Fixed the conversion of spaces into dashes in the %M log escape.
- Fixed several places in the code that were not returning the right
  errno when a function failed.
- Fixed the backing up of a device or special file into a backup dir.
- Moved the setting of the socket options prior to the connect().
- If rsync exits in the middle of a --progress output, it now outputs a
  newline to help prevent the progress line from being overwritten.
- Fixed a problem with how a destination path with a trailing slash or
  a trailing dot-dir was compared against the daemon excludes.
- Fixed the sending of large (size > 16GB) files when talking to an older
  rsync (protocols < 30):  we now use a compatible block size limit.
- If a file's length is so huge that we overflow a checksum buffer count
  (i.e. several hundred TB), warn the user and avoid sending an invalid
  checksum struct over the wire.
- If a source arg is excluded, --relative no longer adds the excluded
  arg's implied dirs to the transfer.  This fix also made the exclude
  check happen in the better place in the sending code.
- Use the overflow_exit() function for overflows, not out_of_memory().
- Improved the code to better handle a system that has only 32-bit file
  offsets.
Enhancements:
- The rsyncd.conf manpage now consistently refers to the parameters in
  the daemon config file as "parameters".
- The description of the --inplace option was improved.
2008-07-13 22:18:23 +00:00
tonnerre
1f5d8d4a5e Updated time/wyrd to 1.4.1nb1. 2008-07-13 20:58:23 +00:00
tonnerre
f3ef634c5b Add patches for wyrd privilege escalation (CVE-2008-0806). Thanks, agc! 2008-07-13 20:57:50 +00:00
tonnerre
27a7a5a3c8 modular-xorg-server patch-an has a broken path. 2008-07-13 20:41:46 +00:00
tonnerre
4c706813e0 Updated www/wml to 2.0.9nb3. 2008-07-13 20:36:51 +00:00
tonnerre
b2cec6ec67 Add patches for wml privilege escalation (CVE-2008-0665 and CVE-2008-0666). 2008-07-13 20:35:46 +00:00
tonnerre
6233ffa98c Updated net/openafs to 1.4.6. 2008-07-13 19:12:44 +00:00
tonnerre
3d1f9265d2 Update OpenAFS to version 1.4.6, fixing CVE-2007-6599 (and nothing else). 2008-07-13 19:10:41 +00:00
dholland
052e8b46c9 Note update of emacs21-nox11 to 21.4anb13 2008-07-13 18:40:16 +00:00
dholland
79cad67994 Bump PKGREVISION from 0 to 13, to match emacs21 since we share all the
patch files. This makefile should probably be rearranged to work the
same way as the emacs22 nox11 package (or the nox11 packages should be
finally dropped), but not until after Q2 is branched.
2008-07-13 18:36:22 +00:00
tonnerre
adf2d43c3b Updated shells/zsh to 4.2.6nb1.
Updated shells/zsh-current to 4.3.4nb2.
2008-07-13 18:28:53 +00:00
tonnerre
5a509a438f Fix an insecure temp file creation vulnerability in zsh-current's difflog.pl
(CVE-2007-6209).
2008-07-13 18:26:24 +00:00
dholland
ecadafecce +perl 2008-07-13 18:22:59 +00:00
tonnerre
31a3e0d33e Fix an insecure temp file creation vulnerability in zsh's difflog.pl
(CVE-2007-6209).
2008-07-13 18:22:01 +00:00
dholland
8ced111013 Note update of emacs21 to 21.4anb13. 2008-07-13 18:06:47 +00:00
dholland
90dfb3b671 Add patch for CVE-2008-1694 (insecure temp files in SCCS vc handling)
PKGREVISION -> 13.
2008-07-13 18:03:01 +00:00
tonnerre
ad7e986218 Updated databases/pear-MDB2 to 2.4.1nb1.
Updated databases/pear-MDB2_Driver_pgsql to 1.4.1nb1.
Updated databases/pear-MDB2_Driver_mysql to 1.4.1nb1.
2008-07-13 17:58:06 +00:00
tonnerre
50b2e0711b Add patch for pear-MDB2 arbitrary file reading vulnerability (CVE-2007-5934). 2008-07-13 17:55:38 +00:00
dholland
2dba49aaaa Note update of emacs20 to 20.7nb11 2008-07-13 17:31:14 +00:00
dholland
cd87ba8ae0 Add patches for CVE-2008-1694 and CVE-2008-2142.
PKGREVISION -> 11.
2008-07-13 17:28:33 +00:00
tonnerre
584aa012e6 Updated mail/perdition to 1.17nb8. 2008-07-13 16:27:12 +00:00
tonnerre
e5a5e9ce2e Add patch for IMAP tag arbitrary code execution in the perdition IMAP server
(CVE-2007-5740).
2008-07-13 16:26:17 +00:00
dholland
44adbf98a2 Add missing descriptions for sane and dbus, used by wine. 2008-07-13 16:15:04 +00:00
tonnerre
7fbd967af5 Updated sysutils/vobcopy to 1.1.1. 2008-07-13 16:14:54 +00:00
tonnerre
deb41c2ecc Update vobcopy to a version which is less than 3 years old. This fixes
CVE-2007-5718, some crashes, and introduces and fixes largefile issues.

Changes since vobcopy-0.5.14:
 - Fixed operation on GNU libcized BSD variants.
 - Fixed compilation under MacOS 10.
 - Fixed CVE-2007-5718 (insecure temporary file creation).
 - Fixed segfault in the logging routine.
 - Fixed Makefile for gcc versions not equal to 3.4.
 - Choose the right dvd device from fstab.
 - Read only as many blocks as there are actually left.
 - Partial fix for detection of full nfs files.
 - Fixed double space detection on MacOSX, hopefully...
 - sprintf fixes.
 - -D_FORTIFY_SOURCE=2 is strange, 3 bytes won't fit into a char[4] then.
   Well, they fit into char[8]...
 - The configure.sh script now also detects if the system is an ia64/AMD64
   and uses the lib64 directory accordingly.
 - Added checks for return values from library calls.
 - Added some code to make -n and -m mutually exclusive.
 - The size-checking code with -m was broken. Fixed hopefully.
 - Typo in the manpage.
 - With -m, if files exist you now have the option to [s]kip the files
   already present.
 - Some dvd's show files ending in ";?", they should now work.
2008-07-13 16:14:00 +00:00
dholland
aeebc0c7d0 Update MASTER_SITES (now sourceforge; bitchx.org no longer works),
from Zafer Aydogan in followup to PR pkg/35117.
2008-07-13 16:07:13 +00:00
rhaen
0e960e23be updated graphics/p5-RRDTool-OO 2008-07-13 16:05:26 +00:00
rhaen
01da59536a - updated to 0.22
- added DEPENDs for devel/p5-Log-Log4perl fixes PR pkg/39128

ChangeLog:
0.22 (05/20/2008)
    (ms) Added aberrant behavior detection (hwpredict) with documentation
         and test cases.

0.21 (01/23/2008)
    (ms) Provided backwards compatibility to rrdtool-1.0 for
         draw/type=stack, which now translates to an area with the
         :STACK option.

0.20 (01/22/2008)
    (ms) Bas van der Veen reported that the rrdtool download link
         changed to http://oss.oetiker.ch/rrdtool/pub/rrdtool.tar.gz,
         adapted Makefile.PL.
    (ms) No longer expecting 'Permission denied' to support localized
         OSes.

0.19 (05/12/2007)
    (ms) Added 'strict' mode (defaults to true).
    (ms) Added latest graph parameters from the latest rrdtool release.

0.18 (05/12/2007)
    (ms) Added 'dry mode' patch by Jacquelin Charbonnel.

0.17 (09/10/2006)
    (ms) Changed build command in Makefile.PL to adapt to new
         rrdtool-1.2 directory hierarchy, as suggested by Zac Israel.

0.16 (08/23/2006)
    (ms) Added 'base' option to graph method, as suggested by
         Anton Shevchenko.

0.15 (07/23/2006)
    (ms) Fixed bug with multiple comment lines, of which only the first
         one was printed in the graph. It was introduced in 0.14.
         Thanks to Steve van der Burg for reporting and a patch.
2008-07-13 16:04:03 +00:00
tonnerre
765e6cfaa4 Updated sysutils/bacula to 2.2.4nb4.
Updated sysutils/bacula-doc to 2.0.2nb1.
2008-07-13 15:27:45 +00:00
tonnerre
d842237cd2 Add patches "solving" the issue of bacula exposing passwords et cetera
through the command line parameters of various tools (CVE-2007-5626).
2008-07-13 15:26:36 +00:00
rhaen
8f4e2f70db - part of the fix for PR pkg/39128
DESCR of the package:

Log::Log4perl lets you remote-control and fine-tune the logging
behaviour of your system from the outside. It implements the widely
popular (Java-based) Log4j logging package in pure Perl.
2008-07-13 15:23:10 +00:00