summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2005-08-06Update lang/perl5 to 5.8.7. Changes from version 5.8.6 include updatesjlam29-449/+899
for many "core" modules, UTF-8 and Unicode bugfixes, and ithreads bugfixes. The major changes are in the pkgsrc infrastructure to handle Perl and Perl modules. All pkgsrc-installed Perl modules are now installed in "vendor" directories, and the perl interpreter has been modifed to search for libraries in the following order: site, vendor, perl. The Perl library is stored in a directory that is named for the Perl ABI version associated with the Perl release, so any updates of Perl to newer versions can be done "in-place" as long as Perl ABI version remains the same. All Perl scripts and man pages are stored in locations that won't conflict between site, vendor, and perl modules, and a new utility perllink(1) now manages symlinks to those scripts and man pages under the usual ${LOCALBASE}/bin and ${LOCALBASE}/man/man1. PERL5_SITEPREFIX may be set to the prefix where local, site-specific modules will be installed, e.g. PERL5_SITEPREFIX=/usr/local. Note that modules installed here are completely unmanaged by pkgsrc. Update the buildlink and tool dependencies on perl to require perl>=5.8.7 to reflect the new locations for Perl modules and the Perl shared library.
2005-08-06Added mail/etpan-0.6.1xtraeme2-2/+4
2005-08-06Initial import of etpan-0.6.1 from pkgsrc-wip.xtraeme6-0/+113
etPan is a mail client that is based on libEtPan! Features: * IMAP4rev1 / POP3 / NNTP / mbox / mh / maildir * virtual folder tree * multiple folder views and message views * smart multi-threading * PGP signing and encryption (using GnuPG as external command) * S/MIME signing and encryption (using OpenSSL as external command) * SPAM process (using bogofilter as external command) * user interface for configuration edition
2005-08-06Moved the checks that had been done while loading Makefiles into arillig1-24/+29
subroutine checklines_Makefile, which is called by checkfile_package_Makefile and check_category.
2005-08-06+ x11vncxtraeme1-1/+2
2005-08-05Updated emulators/suse91_base to 9.1nb6wiz1-2/+2
2005-08-05Update zlib rpm for two security fixes. Bump PKGREVISION.wiz4-13/+13
2005-08-05Fix typo in ONLY_FOR_PLATFORM.wiz1-2/+2
2005-08-05Addition of btget, a bittorrent client written entirely in 'C'. It usesreinoud2-2/+4
allmost no processor time compared to the python bittorrent. LibBT is a C reimplementation of the BitTorrent core protocols. Our goal for the project is to develop a low overhead library version of the protocols so that BitTorrent transfers can easily be built in to any existing application. A suplied application called `btget' is a full fledged bittorrent application based on this library.
2005-08-05Update opera to 8.02.jdolecek3-18/+19
Changes since 8.01: Security * Solved download dialog spoofing issue described in Secunia Advisory SA15870 * Fixed image dragging issue described in Secunia Advisory SA15756 Miscellaneous * Improved default handling of encodings in spelling checker. * Multiple stability fixes. * When an installed plug-in is available, use as default handler rather than display download dialog. * Improved support for XMLHttpRequest. * Fixed download handling when closing originating page.
2005-08-05LibBT is a C reimplementation of the BitTorrent core protocols. Ourreinoud6-0/+76
goal for the project is to develop a low overhead library version of the protocols so that BitTorrent transfers can easily be built in to any existing application. A suplied application called `btget' is a full fledged bittorrent application based on this library.
2005-08-05libbonobo only needs the perl interpreter, not the libraries.jlam1-3/+2
2005-08-05Don't use buildlink3.mk files when not needing a library dependency.jlam1-7/+3
Bugzilla only want's p5-* modules, and the MySQL dependency is pulled in indirectly because it needs p5-DBD-mysql.
2005-08-05One more hack to make it actually work.. (the configure tests are overlysalo2-6/+18
complex and stupid..).
2005-08-05Linking with libssl requires libcrypto on systems where libssl doesn'tsalo2-4/+4
implicitly add it (e.g., netbsd-2).
2005-08-05* Fix run-time linker flags for libetpan-config and libetpan.xtraeme5-3/+42
* Add pthread.bl3.mk into the buildlink file.
2005-08-05pilotmgr only needs the perl binary, not the perl library.jlam1-2/+2
2005-08-05Hardcode a workaround for perl's DynaLoader.a which is definitely ajlam2-2/+28
PIC code archive, but libtool isn't smart enough to realize it. Munge the name within cmd-sink-libtool into something that will make libtool recognize it as a PIC code archive. We unmunge it in arg-pp-main so non-libtool wrappers see the right thing. This let's us use libtool to link applications with an embedded Perl interpreter. I feel so dirty...
2005-08-05Several changes to the postgresql80-* packages:jlam26-2358/+2790
* Become maintainer for the postgresql80-* packages (ok'd by recht) * Libtoolize postgresql80 build so that the shared libraries and loadable shared modules are built using libtool. This should make PostgreSQL 8.0.x in pkgsrc build correctly on more pkgsrc-supported platforms. This is accomplished with the Makefile.libtool file which replaces the Makefile.shlib file in the PostgreSQL distribution. * Add libltdl modifications from the postgresql74-* packages so that this can work on Interix (untested). * Fix some mismatches between static function declarations and their subsesquent definitions in the src/timezone module. Fixes provided by Georg Schwarz. * Convert PGSQL_USE_HIER into the PKG_OPTION "pgsql-hier-query", and teach both postgresql80-client and postgresql80-server to use it. * Use BUILDLINK_TRANSFORM's "rm" action to remove unwanted compiler flags. * Remove zlib/buildlink3.mk from postgresql80-client/buildlink3.mk as zlib is only used by the pg_dump client. * Convert some files in files/* into patches that can be fed back to the PostgreSQL team. * Install data and documentation files into share/postgresql instead of share/postgresql80 -- it's only possible to install one PostgreSQL version at a time in pkgsrc, and the new paths more closely match the rest of the installation paths. * Add more mirrors to the MASTER_SITES list, and add a new variable POSTGRESQL_MIRRORS_SORT that has the same syntax as MASTER_SORT that can help people pick a nearby mirror. * Nuke references to libpgtcl which is no longer distributed as part of a standard PostgreSQL installation as of version 8.0. * Provide better documentation for Makefile.custom. * Avoid linking in the pthread library in the correct way on NetBSD by setting DLOPEN_REQUIRE_PTHREADS=no. Also, provide better documentation on why we can't enable thread-safety in the PostgreSQL libraries on NetBSD (at least for now). * Preliminary support for installing postgresql80-* into a separate subdirectory under ${LOCALBASE} so possibly allow for multiple installations of PostgreSQL on the same machine. Note that THIS DOES NOT WORK YET. * Update the hierarchical-queries patch to "8.0.3-0.5.5" which fixes a bug which was crashing the backend when PRIOR was used in the target list. The _level_ column is no longer automatically added to target list. This makes it possible to use hierarchical queries as IN subqueries. To get _level_ back you just have to explicitly mention it in target list. Bump the following PKGREVISIONs: postgresql80-client -> 2 postgresql80-server -> 2 postgresql80 -> 1
2005-08-05Updated mail/libetpan to 0.38xtraeme2-3/+4
2005-08-05Update to 0.38.xtraeme4-13/+28
* release 0.37 - Deadwing * fixed SSL * IMAP improvements * SASL * windows port * fixed IMAP implementation (for sylpheed) * release 0.36 - Silver Drop * memory leak * fixed maildir support * release 0.35 - Dimebag Darrell * minor bugfixes. * release 0.34 - edge * general - support for debian systems mbox - ability to disable thread-safe support
2005-08-05update to 4.3.3drochner3-7/+10
changes: -Changes the interface to the recently added set_bt_compare callback to only take two arguments like a normal comparison function. -Fixes a crash in DB.associate when it wanted to raise an exception. cvs: ----------------------------------------------------------------------
2005-08-05PGSQL_USE_HIER is actually undefined or yes.jlam1-4/+4
2005-08-05update to 0.9.3drochner8-180/+8
changes: Option to chroot() when dropping privs Fixes for compiling on nearly every platform, including improved 64bit support Many new testcases Support for sending packets Improved Unicode support Decoders & DLT Changes, Updates and New
2005-08-05update to 0.9.3drochner2-6/+6
changes: Minor bug fixes, compilation failure fixes for windows.
2005-08-05Security fix for CAN-2005-2370salo4-4/+26
"Multiple "memory alignment errors" in libgadu, as used in ekg before 1.6rc2 and other packages, allows remote attackers to cause a denial of service (bus error) on certain architectures such as SPARC via an incoming message." Bump PKGREVISION, patch from Gaim CVS.
2005-08-05backout previous, it's nb2, not rc3.. *sigh*salo1-2/+2
2005-08-05the last security update was for rc3, not rc2. (hi adam!)salo1-2/+2
2005-08-05Updated audio/libopendaap to 0.4.0tonio2-4/+4
Updated audio/tunesbrowser to 0.3.0
2005-08-05add simple patches for gcc-4 supporttonio4-1/+68
approved by cube@
2005-08-05update tunesbrowser to 0.3.0tonio6-70/+26
update the url to www.craz.net patch-aa is no more necessary (SA_NOMASK is no more used) Main changelog entries: - password support. You will be prompted for a password if a server requires a password - playlist support. - Several bug and portablity fixes approved by cube@
2005-08-05Update libopendaap to 0.4.0tonio7-128/+14
changed the url to www.craz.net remove patches that have been integrated upstream or are no more relevant Main changelog entries: - Playlist support now exists - Use a free mdns library, instead of Apple's mDNS library. This means that libopendaap is entirely free now. - You can now connect to servers with passwords - Several bug fixes approved by cube@
2005-08-05Note net/gopher update.salo1-1/+2
2005-08-05Update to version 3.0.9salo7-21/+132
Changes: - use PKG_SYSCONFIG Upstream changelog nonexistent, security fixes for CAN-2005-1853.
2005-08-05Note update of "ipsec-tools" package to version 0.6.1rc1.tron1-1/+2
2005-08-05Update "ipsec-tools" package to version 0.6.1rc1.tron3-8/+22
Changes since version 0.6b2: - NAT-T fixes for situations where NAT-T is not used - OpenSSL 0.9.8 support - keys are not restricted to OpenSSL default size anymore - PKCS7 support - SHA2 support
2005-08-05+ libcddb-1.2.1, turba-2.0.3.wiz1-2/+3
2005-08-05I'll take it.sketch1-2/+2
2005-08-05Fixed evaluation of the PKG_USERS and PKG_GROUPS variables. Noted byrillig1-5/+11
martii on tech-pkg.
2005-08-05Give up maintainership. Anyone want to adopt abcde?snj1-2/+2
2005-08-05Note update of net/tor to 0.1.0.13jschauma1-3052/+2
2005-08-05Update to 0.1.0.13:jschauma2-6/+6
- Fix a critical bug in the security of our crypto handshakes. - Fix a size_t underflow in smartlist_join_strings2() that made it do bad things when you hand it an empty smartlist. - Fix Windows installer to ship Tor license (thanks to Aphex for pointing out this oversight) and put a link to the doc directory in the start menu. - Explicitly set no-unaligned-access for sparc: it turns out the new gcc's let you compile broken code, but that doesn't make it not-broken
2005-08-05Hmm, fix previous entry... I didn't know the format for thisxtraeme1-2/+2
changed.
2005-08-05Added x11/x11vnc-0.7.2xtraeme1-1/+2
2005-08-05Initial import of x11vnc-0.7.2 from pkgsrc-wip, packaged byxtraeme4-0/+34
<obata at lins dot jp>. x11vnc allows one to remotely view and interact with real X displays (i.e. a display corresponding to a physical monitor, keyboard, and mouse) with any VNC viewer. In this way it plays the role for Unix/X11 that WinVNC plays for Windows.
2005-08-04Updated pkgtools/pkgfind to 20050804xtraeme1-1/+2
2005-08-04Bump to 20050804:xtraeme2-4/+8
When using the -M flag, look in Makefile and Makefile.common files. Ok'ed by Peter Postma.
2005-08-04Bugfix for shells that don't allow "for i in ;", that is: an empty list.rillig1-4/+4
2005-08-04Note revision bump for graphics/povray.cube1-1/+2
2005-08-04In order to fix PR#30875, do the following things:cube1-2/+11
o require at least gcc 3.4 on x86_64, as 3.3 gets an ICE. o depends on zlib>=1.2.1, which is povray's requirement, so that the package doesn't try to use its own zlib and libtiff (for some reason configure fails to configure the provided libs properly when gcc 3.4 is used) Bump PKGREVISION.