in the RIPEMD128 implementation.
Turns out, the problem was fixed a few months ago by the TRF author in CVS.
This commit adds a patch and bumps portrevision.
Although the same problem existed in the TRF's RIPEMD160 implementation,
it did not affect this port, because it uses the OpenSSL's (or -lmd's)
implementations of all digests -- except those, which are considered
obsolete and no longer shipped. Like rmd128.
Thanks to: Denis Shaposhnikov
plugin is actually a port of the xmms OSS sound ouput plugin to JACK, using
libjackasyn.
WWW: http://gige.xdv.org/libjackasyn/xmms.php
PR: ports/94292
Submitted by: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
sound API with the JACK audio server (jackit.sf.net). libjackasyn is a library
that can be used for two purposes.
First it can be loaded via the LD_PRELOAD variable, turning OSS applications
automatically into JACK-aware applications.
Second, it can be used to link against the program during build time, making it
trivial to turn an OSS aware sound application into a JACK aware sound
application in a short time.
libjackasyn got its name from the asynchronous manner in which it communicates
with the JACK server, which means by using libjackasyn you will introduce an
additional delay exactly the size of one JACK audiobuffer (1024 samples or 44
ms with the JACK default settings). This delay can be reduced by reducing the
JACK buffersize. It should not matter for sound generating applications, but
it might introduce phasing effects when doing sound processing.
WWW: http://gige.xdv.org/libjackasyn/
PR: ports/94290
Submitted by: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
An RBTree is a fast, balanced efficient data structure with the
following properties:
get O(log n)
set O(log n)
delete O(log n)
min O(log n)
max O(log n)
contains O(log n)
Because the worst case timing is minimal across the range of standard
dict and ordered data operations it makes sense to use this when you
have volatile/dynamic sorted data.
In common usage its nearly as fast as the Python dict impl but has a
slightly more expensive usage of the compare function as the keys are
ordered and not hashed.
WWW: http://www.python.org/pypi/RBTree/
sites on the web.
It is a collaborative surfing tool for browsing, reviewing and sharing
great sites with like-minded people. This helps you find interesting
webpages you wouldn't think to search for.
PR: ports/96771
Submitted by: Lapo Luchini <lapo@lapo.it>
Approved by: krion (mentor)
- Don't install docs (they are copies of the manpage)
- Add support for deb archives
- Depend on rpm-3 instead of rpm4
PR: ports/96577
Submitted by: sat
Approved by: krion (mentor)
Approved by: Mark Kane <mark@mkproductions.org> (maintainer)
conversion tool for web writers.
Markdown allows you to write using an easy-to-read, easy-to-write
plain text format, then convert it to structurally valid XHTML (or
HTML).
WWW: http://www.deveiate.org/projects/BlueCloth
PR: ports/96651
Submitted by: Alastair Rankine <arsptr@optusnet.com.au>
Diff to the old one:
- INSTALL rewording
- Makefile is gone (autogenerated)
- xmlwrapp-config is gone, it uses only configure.pl
- xmlwrapp.pc is gone (wasn't installed anyway)
Also patch configure.pl for the right path to perl.
PR: ports/96634
Submitted by: Ion-Mihai "IOnut" Tetcu <itetcu@people.tecnik93.com> (me)
Approved by: lawrance (mentor)
This build uses an unthreaded RTS, please see the GHC mailing lists for
details and report any problems you observe (eg. non-termination/segfaults in
compiled binaries).
Approved by: cabal