Commit graph

136140 commits

Author SHA1 Message Date
markd
477c125e69 s/wip/print/ 2009-01-10 08:54:01 +00:00
markd
185b4f3947 add py-pycups 2009-01-10 08:36:43 +00:00
markd
93ad1b4b77 Initial import py-pycups 1.9.44
Python bindings for the CUPS API
2009-01-10 08:35:29 +00:00
obache
ff088a4d5c Updated inputmethod/canna-server to 3.6pl4nb4 2009-01-10 05:13:24 +00:00
obache
4c46989492 Need CANNA_SPOOL at configure phase to generate cannaconf.h, it's for ERRDIR.
Add CANNA_ENV to SCRIPTS_ENV for imake.

This is only affect to canna-server, as reported by MOCHIDA Shuji by PR 40349.
Bump PKGREVISION of canna-server package.
2009-01-10 05:13:01 +00:00
obache
ca34402e0d MAKE_JOBS_SAFE=no 2009-01-10 03:06:34 +00:00
markd
1867b25b68 Add eigen2 2009-01-10 01:06:05 +00:00
markd
9e4f0111af add eigen2 2009-01-10 01:04:01 +00:00
markd
e47a540440 Initial import of eigen 2.0beta5
Eigen 2 is a C++ template library for linear algebra: vectors, matrices, and
related algorithms. It is:
* Versatile. Eigen handles, without code duplication, and in a completely
  integrated way:
  o both fixed-size and dynamic-size matrices and vectors.
  o both dense and sparse (the latter is still experimental) matrices and
    vectors.
  o both plain matrices/vectors and abstract expressions.
  o both column-major (the default) and row-major matrix storage.
  o both basic matrix/vector manipulation and many more advanced, specialized
    modules providing algorithms for linear algebra, geometry, quaternions,
    or advanced array manipulation.
* Fast.
  o Expression templates allow to intelligently remove temporaries and enable
    lazy evaluation, when that is appropriate -- Eigen takes care of this
    automatically and handles aliasing too in most cases.
  o Explicit vectorization is performed for the SSE (2 and later) and AltiVec
    instruction sets, with graceful fallback to non-vectorized code.
    Expression templates allow to perform these optimizations globally for
    whole expressions.
  o With fixed-size objects, dynamic memory allocation is avoided, and the
    loops are unrolled when that makes sense.
  o For large matrices, special attention is paid to cache-friendliness.
* Elegant. The API is extremely clean and expressive, thanks to expression
  templates. Implementing an algorithm on top of Eigen feels like just copying
  pseudocode. You can use complex expressions and still rely on Eigen to
  produce optimized code: there is no need for you to manually decompose
  expressions into small steps.
* Compiler-friendy. Eigen has very reasonable compilation times at least with
  GCC, compared to other C++ libraries based on expression templates and heavy
  metaprogramming. Eigen is also standard C++ and supports various compilers.
2009-01-10 01:02:47 +00:00
jnemeth
c63c6f0a9b ancient GCC required for NetBSD 5.0 on upwards 2009-01-10 00:28:57 +00:00
markd
1757cc2ec1 update akonadi 2009-01-09 23:09:42 +00:00
markd
c9b90e0588 Update akonadi to 1.1.0
- Restart agents when their executable changed.
- Buildsystem fixes to find and link boost on all platforms.
- Improvements to the startup to prevent partial startup.
- Include revision number in the version string when building from SVN.
- Shut down when we lost the connection to the D-Bus session bus.
- add some basic handling of command line args.
- Add a D-Bus call to flush the notification queue.
- Automatically fix world-writeable mySQL config files.
- Fix for FreeBSD mysql path.
2009-01-09 23:08:23 +00:00
markd
47dc2ea1fd strigi update. 2009-01-09 22:29:41 +00:00
markd
59282c66c1 Bump BUILDLINK_API_DEPENDS for libstreamanalyzer change 2009-01-09 22:28:02 +00:00
markd
339227e37a Update strigi to 0.6.2
0.6.2
 - Better support for nice IO priorities on Linux (Sebastian Trueg)
 - Compile with development version of CLucene (Ben van Klinken)
 - Explicitly use 'unsigned char' or 'signed char' instead of 'char'
   since 'char' can be either signed or unsigned on different processors.
   E.g. on ARM 'char' means 'unsigned char' and on i386 'char' means
   'signed char'. This changes makes libstreamanalyzer 0.6.2 binary
   incompatible with versions < 0.6.0. (Jos van den OOever)
 - Many CMake cleanups (Alexander Neundorf)
 - 6.5x speedup of C++ comment analyzer (Jakub Stachowski)
 - Various stability fixes (Jos van den Oever, Sebastian Trueg)
 - Support for ePub format (Jakub Stachowski)
 - Handle RIFF file with unspecified size for the RIFF packet. (Jos van
   den Oever)
0.5.11
 - Fix a bug that can cause a crash on an executable zip file.
 - Fix parsing of empty headers when CRLFCRLF is followed by a space. In
   other words, fix parsing of emails that have a space as the first
   character in the body.
 - Fix two broken (by design) throughanalyzers by replacing the with one
   eventanalyzer.
 - Updated xesam ontology to include proper ranges. This is necessary for
   the Nepomuk backend but does not change anything for clucene (were all
   is string anyway)
 - Make sure the app can handle environments where HOME is not defined.
 - Make the zip analyzer check more often if it should stop analyzing.
 - Fix wrong comparison when checking if we are finished yet.
 - Make the analyzer respect a configuration that only wants part of the
   stream to be analyzed.
 - Add an analyzer for Windows self-extracting zip archives.
 - Ask the analyzerconfiguration if we should continue and put a cap on
   the maximum length of stream we read
 - Log parse errors in the analysisresult.
2009-01-09 22:22:04 +00:00
he
4f764d3465 Note two subsequent updates to the same package:
Updated sysutils/dbus to 1.2.4.2nb1
Updated sysutils/dbus to 1.2.4.2nb2
2009-01-09 22:09:56 +00:00
he
70f591c364 Update from version 1.2.4.2nb1 to 1.2.4.2nb2.
Pkgsrc changes:
 o Add BUILDLINK_TRANSFORM settings which deactivate -fPIE and -pie
   in the compiler invocation.  The configure script of this package
   checks to see if gcc accepts those options, and uses them if it
   does.  However, apparently that does not mean that we universally
   will be able to run the resulting executables -- on NetBSD/4.0
   macppc the run-time linker says
     "Unsupported relocation type 6 in non-PLT relocations"

Tested that the dbus-daemon executable remains runnable on both i386
and that it is so now on macppc.

Thanks to jmcneill@ and joerg@ for hints leading to this fix.
2009-01-09 21:54:15 +00:00
he
89137f46cf Update from version 1.2.4.2 to version 1.2.4.2nb1.
Pkgsrc changes:
 o Modify one of the patches with a patch reported as part of
   PR#40347 to make this package build on NetBSD 4.0 and probably
   earlier versions as well.  Many thanks to Hasso Tepper for the
   patch.
2009-01-09 21:47:32 +00:00
shattered
7a4bd622e1 Updated audio/xmp to 2.5.1. 2009-01-09 20:44:38 +00:00
shattered
5f67b9ba3f Update to 2.5.1, from PR 38499. May also solve PR 38712.
6 years passed since 2.0.4, too much changes happened to list here.
Most of them seem to fix various playback accuracy issues.
Many patches were merged upstream.  Major change -- X11 frontend (xxmp)
is missing, there's nothing in change log about that.

pkgsrc change: pulseaudio support (default on).

OK by wiz@.
2009-01-09 20:43:53 +00:00
minskim
7ee946450c silgraphite uses C99 features. 2009-01-09 20:32:19 +00:00
rillig
19abf88cc9 Fixed pkglint warnings about sorting SUBDIR. 2009-01-09 19:34:44 +00:00
plunky
599fdcb462 update to 1.4.10
minor bug fix, improves compatibility with Nokia 6131 phone
2009-01-09 17:47:41 +00:00
drochner
ca0d68f1e1 pull in a patch from upstream CVS, to adapt to an API change in recent
x264 libs, see Gnome bugzilla#555238
should fix PR pkg/40351 by Robert Elz
2009-01-09 16:43:42 +00:00
shattered
b4918b5784 Updated net/jwhois to 4.0. 2009-01-09 16:21:47 +00:00
shattered
9f7008b601 Update to 4.0, from PR 38500. Changes:
* Many WHOIS data updates and translation updates; 4 new translations
* Reset euid and egid to uid and gid before calling the user specified browser
* Added support for libidn
* Added patch to support conversion of whois server output to local charset.
* Changed to GNU GPL v3

Local change: WHOIS servers for some geographical subdomains in .ru and .su TLDs.

OK by wiz@.
2009-01-09 16:20:20 +00:00
wiz
2c264fe2fb + ROMBuild-2.12, awesome-3.1.1, awstats-6.9, silc-toolkit-2.1.9,
xf86-input-keyboard-1.3.2, xf86-video-intel-2.5.99.2.

- mjpegtools-1.9.0, scmgit-base-1.6.1,
  subversion-1.5.5, subversion-base-1.5.5.
2009-01-09 14:57:59 +00:00
gdt
bfafac3c11 Updated devel/subversion-base to 1.5.5 2009-01-09 14:50:56 +00:00
tonnerre
3b6ff797f9 Updated www/gitweb to 1.6.0.6 2009-01-09 13:56:43 +00:00
tonnerre
99f9a793f1 Update gitweb to version 1.6.0.6, fixing a privilege escalation vulnerability.
(Old version was so ancient there were serious problems reading modern
git repositories.)

Changes are too various to be enumerated here.
2009-01-09 13:56:24 +00:00
tonnerre
8693a55689 Updated devel/scmgit-base to 1.6.0.6.
Updated devel/scmgit-docs to 1.6.0.6.
Updated devel/scmgit to 1.6.0.6.
2009-01-09 13:49:42 +00:00
tonnerre
ef756e22cf Upgrade devel/scmgit to version 1.6.0.6 (from 1.6.0.2), in order to fix
security issues and to prepare for the outstanding upgrade of gitweb.

Changes since git 1.6.0.2:
 - Fix output line format for zip archive generation.
 - Fix continuation of git rebase -i in case of modified files (conflict).
 - Honor the pre-rebase hook for git rebase -i.
 - Fix inconsistent behavior of git diff --quiet and diff --exit-code.
 - Use multiple element hunk headers from git diff correctly.
 - Portability fix for the git diff hunk header regexps.
 - Fix git index-pack inside .git/objects/pack directory.
 - Fix git index-pack in thin-pack mode.
 - Some git stash apply fixes.
 - Fixed format string vulnerabilities (e.g. in git remote).
 - Fix behavior of git checkout -b <existingbranch>.
 - Make git checkout -q actually quiet.
 - In quiet remote operation, we don't need the remote side to send along
   all the statistics we discard.
 - Don't do cross-directory renames when creating packs.
 - git prune now also removes stale temp files under .git/objects/pack.
 - Have git merge prune empty directories.
 - Have git merge allocate enough memory for the structure itself when
   enumerating the parents of the resulting commit.
 - Stop git blame -C -C from segfaulting if it encounters a submodule
   reference.
 - If only file times were changed, don't have git rm claim local
   modifications.
 - If set-tree fails, don't let git svn output Perl compile errors.
 - Fix various NULL pointer crashes (e.g. in apply, reset, update-index).
 - Remove bash completion support for various non-space tools.
 - Don't have git add -p claim no changes if binary files have been
   modified.
 - Fix git archive in bare repositories.
 - Have git diff display the number of new or deleted files for the case
   where there have been too many of them to allow rename detection.
 - Fix git push --mirror to not try to send the stash.
 - If the remote end is up to date, still update the tracking reference upon
   git push.
 - Make git pull $there $branch:$current_branch work on unborn branches.
 - Have git reset --hard remove new paths after giving up resolving a
   conflicting merge.
 - Fix git send-email fd leak in directory scanning.
 - Make submodule directories appear as tracked in git status.
 - Have git svn invoke "git command" rather than "git-command".
 - Have git update-ref -d honor --no-deref.
 - Fix various memory leaks.
 - Fix git checkout segfault when HEAD points to a deleted branch.
 - Allow switching out of the current branch with git checkout on an
   un-checked-out state.
 - Have git fast-export export all tags.
 - Make git ls-files --with-tree=<tree> work with options other than -c.
 - If the first object in git pack-objects exceeds --max-pack-size, don't
   stuff even more objects in.
 - Stop git-p4 from replacing multilike keywords. (They don't exist.)
 - Make git tag complain about mutually incompatible options.
 - Fix performance for git internal diff on large files with repeating
   chunks.
 - Don't let git repack grab objects out of packs marked with .keep into
   new packs.
 - Fix git fsck deep recursion.
 - Fix git fast-export and fast-import on old style annotated tags without
   tagger information.
 - Have git mergetool honor the "--".
 - Fix segfault of git show <tag> where <tag> points at a nonexistent object.
 - Fix handling of lists of mail addresses for git send-email.
 - Fix branch ancestry logic in git svn if the history fetching process
   was interrupted.
2009-01-09 13:42:15 +00:00
gdt
a8a2dab8fc Take maintainership, per private discussion with previous MAINTAINER.
Update to 1.5.5.  Tested with subversion-base, and I will keep an eye
on the rest.  (If this practice upsets you and you'd like to volunteer
to be MAINTAINER, email me - no one else responded to the call for
volunteers, so I'll be maintaining this but only really worrying about
and testing the parts I care about.  Bug reports are of course
welcome.)


Version 1.5.5
(22 Dec 2008, from /branches/1.5.x)
http://svn.collab.net/repos/svn/tags/1.5.5

 User-visible changes:
  * allow prop commits on dirs with modified children (r34487, -92, -94)
  * make Cyrus auth implementation always prefer EXTERNAL to ANONYMOUS (r33866)
  * do not create mergeinfo for wc-wc moves or copies (r34184, -585)
  * do not autoupgrade old BDB filesystems to 1.5 or 1.4 format (r34653, -6)
  * return mergeinfo to prior state during reverse merges (r30257, r33024, -6)
  * remove mergeinfo deleted by merge (issue #3323)
  * make proxy slaves pass through txn GET and PROPFIND requests (issue #3275)
  * merge can now use targets with inconsistent newlines (issue #3262)
  * don't allow empty-string changelists (issue #3344)
  * remove false positive ra_neon mergeinfo errors (r34822)
  * improve performance of 'svn merge --reintegrate' (r34091, -4, and others)
  * fixed: foreign merges keep UUID of foreign repository (r34050, -1, -3)
  * fixed: properly encode diff headers used in conflict resolution (r34171)
  * fixed: segfault in 'svn cp --parents' (r31311, -4)
  * fixed: mergeinfo for '...' maps to empty revision range (issue #3312)
  * fixed: segfault in BDB backend node-origins cache (r34506)
  * fixed: broken merge if target's history includes resurrections (r34385, -93\
)
  * fixed: invalid mergeinfo created on a subtree during merge (r34560, -2)

 Developer-visible changes:
  * fixed: svn_repos_get_logs() chokes on some revision arguments (r33873, -4)
2009-01-09 13:39:43 +00:00
obache
652b67231c Updated www/webalizer to 2.20.3 2009-01-09 13:17:22 +00:00
obache
fdb64cebbf Update Webalizer to 2.20.3.
Pkgsrc changes:
 * Change HOMEPAGE to redirected one.
 * Add DESTDIR support (should be since 2.20.1)
 * Change to use --sysconfdir (should be since 2.20.1)
 * Add bzip2 support.
 * GeoIP support was added since 2.20.1, no need extra pach files anymore.
   Fixes PR 40344.
 * Changed to use db4 APIs since 2.20.1, dns support back again.
 * gettext and freetype2 are not used directly, remove dependency.
 * zlib is used directly, add dependency.
 * Honor PKGMANDIR.
 * Change complex PLIST handlings for docs to simply.
 * Change not to use prefix '_' in package specific variables.

Upstream changes:
 This fixes a missing memory dealocation call in the DNS lookup code, a kludge
 to handle largefile support in the current zlib compression code on some
 platforms, and some minor configure script corrections.
2009-01-09 13:17:04 +00:00
wiz
dc5e217466 Updated net/clive to 2.1.3 2009-01-09 13:09:22 +00:00
wiz
782f15c03a Update to 2.1.3:
Version 2.1.3
(January 9, 2009)

  * Documented missing "%t" (--filename-format) in manual page
  * Tweaked "localfile_length == remotefile_length" message
  * Renamed CLIVE_CONFIGDIR environment variable to CLIVE_HOME
2009-01-09 13:09:12 +00:00
abs
a182ea1f66 Updated devel/cpuflags to 1.32 2009-01-09 12:54:33 +00:00
abs
9f246fab8b Updated devel/cpuflags to 1.32
Intel appear to have re-used cpu branding strings between Northwood
and Prescott pentium4s. Thats just... special.

Handle this by explicitly testing for SSE3 support to distinguish between
'-march=prescott' and '-march=pentium4'
2009-01-09 12:54:15 +00:00
joerg
cb1ac20e13 Further refine AIX support. From Jens Rehsack. 2009-01-09 11:46:34 +00:00
wiz
f7825324fa Updated textproc/hunspell-de to 20090107 2009-01-09 11:35:18 +00:00
wiz
12ca686d73 Remove unneeded patch. 2009-01-09 11:35:07 +00:00
wiz
c7542f6c48 Update to 20090107:
- fix build on the less GNUish systems where wc -l outputs leading whitespace
- some words added
2009-01-09 11:34:42 +00:00
rillig
c2270d9371 Fixed MAINTAINER address. 2009-01-09 11:11:40 +00:00
rillig
f4f0105892 regen 2009-01-09 11:04:27 +00:00
rillig
faa9b7da02 htdocs/share/mk/web.site.mk assumes that sed(1) lives in /usr/bin, which
is not true on Ubuntu Linux 8.10.
2009-01-09 10:58:47 +00:00
tron
ee54baa5ce Fix build problem with latest version of the Curl library using the patch
from MediaTomb's bug tracker on SourceForge.
2009-01-09 10:17:35 +00:00
dbj
09a8763fee fixes to compile and run on darwin.
. modify configure.in to look for libpcap.dylib
 . set INSTALL_UNSTRIPPED=yes
2009-01-09 08:53:26 +00:00
uebayasi
e9c5f6feff Add options: curses, x11. 2009-01-09 03:32:08 +00:00
shattered
ffe5c47564 These packages don't use imlib any more: eboard uses gtk2 (and gdk_pixbuf),
freeciv dropped gtk1 support before 2.0.9.
2009-01-08 22:51:52 +00:00