aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* - Add bind9-sdb-ldap and bind9-sdb-postgresql to recent BIND DoS.Wesley Shields2009-08-041-0/+6
| | | | | | | Reviewed by: miwi Notes: svn path=/head/; revision=238897
* - Document silc-client and silc-irssi-plugin format string vulnerability.Wesley Shields2009-08-041-0/+27
| | | | | | | Reviewed by: miwi Notes: svn path=/head/; revision=238896
* - Update to 1.1.17Wesley Shields2009-08-042-5/+4
| | | | Notes: svn path=/head/; revision=238895
* - Update to 1.1.8 to address security vulnerabilities and general bug fixes.Wesley Shields2009-08-042-5/+4
| | | | | | | | PR: ports/137421 Submitted by: Marc Lagrange <markocpc@gmail.com> Notes: svn path=/head/; revision=238894
* Add lib/olsrd_watchdog.so.0.1 to pkg-plist.John Hay2009-08-042-0/+2
| | | | | | | | | Bump PORTREVISION. Reported by: pointyhat (erwin) Notes: svn path=/head/; revision=238893
* . update to version 4.3.6;Boris Samorodov2009-08-047-15/+16
| | | | | | | | | | . remove an "A" flag from FETCH_ARGS (SF seems to use a new technology to redirect distfiles, a fetch ends up with the message "Moved Temporarily"); . adjust WWW address to a new one at pkg-descr. Notes: svn path=/head/; revision=238892
* - Update to 0.48Dmitry Marakasov2009-08-042-5/+6
| | | | | | | | PR: 137324 Submitted by: "Metashop Root" <doj@cubic.org> (maintainer) Notes: svn path=/head/; revision=238891
* - Update to 1.3.7Dmitry Marakasov2009-08-042-4/+4
| | | | | | | | PR: 137420 Submitted by: Aldis Berjoza <killasmurf86@gmail.com> (maintainer) Notes: svn path=/head/; revision=238890
* - Update to 2.0.40Dmitry Marakasov2009-08-043-32/+109
| | | | | | | | | | - Pass maintainership to submitter PR: 137422 Submitted by: Ben D <ben@gibbed.org> Notes: svn path=/head/; revision=238889
* - Patch submitted via e-mail by Emanuele Madeo (author of xwota)Diane Bruce2009-08-042-3/+12
| | | | | | | | | | | - Submitted to Emanuele by Lucian Langa cooly@gnome.eu.org - ... likely strcpy (eor, "<EOR>"); will overflow eor because of terminating null byte. Submitted by: e.madeo@fabaris.it Notes: svn path=/head/; revision=238888
* Mark port as MAKE_JOBS_UNSAFEMarkus Brueffer2009-08-041-0/+1
| | | | | | | | | | | | PR: ports/137313 Submitted by: dougb This also fixes: PR: ports/137429 Submitted by: amdmi3 Notes: svn path=/head/; revision=238887
* FLVmeta is a metadata injector for Adobe Flash Video filesDmitry Marakasov2009-08-044-0/+32
| | | | | | | | | | | | | (FLV). It is able to inject all known metadata tags into the onMetaData event, as well as insert an onLastSecond event. WWW: http://code.google.com/p/flvmeta/ PR: 137340 Submitted by: Earl Gay <earl@eeg3.net> Notes: svn path=/head/; revision=238886
* - Fix build after libtool bumpDmitry Marakasov2009-08-046-0/+2
| | | | | | | | | | - While here, remove empty patches PR: 137410 Submitted by: Naram Qashat <cyberbotx@cyberbotx.com> (maintainer) Notes: svn path=/head/; revision=238885
* Update to 20090731.Jun Kuriyama2009-08-042-8/+12
| | | | Notes: svn path=/head/; revision=238884
* - Do not force binding to a single interface in RC script.Wesley Shields2009-08-042-3/+19
| | | | | | | | | PR: ports/137335 Submitted by: Hans Hoppe <hopha@cinis.com> Approved by: Joseph Scott <joseph@randomnetworks.com> (maintainer) Notes: svn path=/head/; revision=238883
* - Add multi cpu support.Hajimu UMEMOTO2009-08-042-66/+192
| | | | | | | | - Though coretemp set dev.cpu.N.temperature in celsius, amdtemp set it in kelvin. Notes: svn path=/head/; revision=238882
* - Pass maintainership to submitter.Felippe de Meirelles Motta2009-08-044-4/+4
| | | | | | | | PR: ports/137409 Submitted by: Jason E. Hale <bsdkaffee@gmail.com> Notes: svn path=/head/; revision=238881
* Reduce diff with ports/135096: USE_PGSQL and set IGNORE_WITH_PGSQLJimmy Olgeni2009-08-042-6/+8
| | | | | | | | | | to 84 (will be supported by slony1 1.2.17). PR: ports/135096 (partial) Approved by: maintainer Notes: svn path=/head/; revision=238880
* - Update to 7.82.Felippe de Meirelles Motta2009-08-046-430/+464
| | | | | | | | PR: ports/137413 Submitted by: Tod McQuillin <devin@spamcop.net> (maintainer) Notes: svn path=/head/; revision=238879
* This module provides a perl interface to the Twitter APIs. It uses theFelippe de Meirelles Motta2009-08-045-0/+51
| | | | | | | | | | | | | | | | same API definitions as Net::Twitter, but without the extra bells and whistles and without the additional dependencies. Same great taste, less filling. This module is related to, but is not part of the "Net::Twitter" distribution. It's API methods and API method documentation are generated from "Net::Twitter"'s internals. It exists for those who cannot, or prefer not to install Moose and its dependencies. WWW: http://search.cpan.org/dist/Net-Twitter-Lite/ Notes: svn path=/head/; revision=238878
* Often in program logic, multiple different steps need to be taken thatFelippe de Meirelles Motta2009-08-044-0/+48
| | | | | | | | | | | | | | | | | | | | | are independent of each other, but their total result is needed before the next step can be taken. In synchonous code, the usual approach is to do them sequentially. An asynchronous or event-based program could do this, but if each step involves some IO idle time, better overall performance can often be gained by running the steps in parallel. A Async::MergePoint object can then be used to wait for all of the steps to complete, before passing the combined result of each step on to the next stage. This module was originally part of the IO::Async distribution, but was removed under the inspiration of Pedro Melo's Async::Hooks distribution, because it doesn't itself contain anything IO-specific. WWW: http://search.cpan.org/dist/Async-MergePoint/ Notes: svn path=/head/; revision=238877
* Add lang/p5-signatures 0.06, a Perl module that brings subroutineAnton Berezin2009-08-045-0/+42
| | | | | | | signatures into the language. Notes: svn path=/head/; revision=238876
* Add devel/p5-B-Hooks-OP-PPAddr 0.03, a Perl module that provides a C apiAnton Berezin2009-08-045-0/+49
| | | | | | | for XS modules to hook into the execution of perl opcodes. Notes: svn path=/head/; revision=238875
* - Update to 1.4Dennis Herrmann2009-08-042-4/+4
| | | | Notes: svn path=/head/; revision=238874
* Update to p5-WWW-Curl-4.08.Peter Pentchev2009-08-044-6/+33
| | | | Notes: svn path=/head/; revision=238873
* Update to 3.4.3Emanuel Haupt2009-08-042-4/+4
| | | | Notes: svn path=/head/; revision=238872
* Update to 1.3.1Emanuel Haupt2009-08-043-15/+14
| | | | Notes: svn path=/head/; revision=238871
* Update to 1.12.Anton Berezin2009-08-043-8/+10
| | | | | | | Changes: http://search.cpan.org/dist/Finance-QuoteHist/Changes Notes: svn path=/head/; revision=238870
* Update to 1.01.Anton Berezin2009-08-042-4/+4
| | | | | | | Changes: http://search.cpan.org/dist/Commands-Guarded/Changes Notes: svn path=/head/; revision=238869
* Update to 1.318Herve Quiroz2009-08-042-5/+5
| | | | Notes: svn path=/head/; revision=238868
* - Use accurate NVVERSION for checking libcuda compat library presenceAlexey Dokuchaev2009-08-042-4/+4
| | | | | | | | - Now that no version of drivers installs nvidia_drv.o, remove the check and clean up pkg-plist Notes: svn path=/head/; revision=238867
* Try to workaround strange build error on i386.Maho Nakata2009-08-041-2/+2
| | | | | | | Spotted by: pav Notes: svn path=/head/; revision=238866
* - Forced commit to note that print/hplip3 was repocopied from print/hplipDmitry Marakasov2009-08-040-0/+0
| | | | | | | | PR: 135702 Repocopy by: marcus Notes: svn path=/head/; revision=238865
* - Update to 1.69Dmitry Marakasov2009-08-043-13/+18
| | | | | | | | | | | | - Some port improvements - Pass maintainership to submitter - Mirror the distfile PR: 137312 Submitted by: Vitaly Magerya <vmagerya@gmail.com> Notes: svn path=/head/; revision=238864
* - Update to 1.3.113Dmitry Marakasov2009-08-043-4/+5
| | | | | | | | PR: 137275 Submitted by: Craig Green <cgreen@sentex.net> (maintainer) Notes: svn path=/head/; revision=238862
* - Update to 0.2.2Dmitry Marakasov2009-08-032-5/+4
| | | | Notes: svn path=/head/; revision=238861
* - Update to 1.0beta2Dmitry Marakasov2009-08-033-7/+23
| | | | Notes: svn path=/head/; revision=238860
* - Add CONFLICTS for graphics/graphviz: both ports install bin/pruneDmitry Marakasov2009-08-031-0/+3
| | | | Notes: svn path=/head/; revision=238859
* Fix the build w/ libtool22. The previous tested in pointyhat-exp doesn'tJeremy Messenger2009-08-033-0/+7
| | | | | | | | | | catch this, because pointyhat-exp was amd64 and this port only limited to i386. Reported by: erwin (ran i386 8-exp) Notes: svn path=/head/; revision=238858
* follow convention and send the ruby- ports to ruby@Philip M. Gollucci2009-08-0314-14/+14
| | | | Notes: svn path=/head/; revision=238857
* Fix entries for tcl84 and tk84 components at 8.x. The bugBoris Samorodov2009-08-031-0/+8
| | | | | | | | | was exposed by a new emulators/linux-systemsim port. Reported by: Portsnap buildbox Notes: svn path=/head/; revision=238856
* - Fix on 6.x -- does not hardcode gcc version in the MakefilePav Lucistnik2009-08-033-28/+28
| | | | | | | Submitted by: maintainer Notes: svn path=/head/; revision=238855
* Deprecate this port, the sheep server is gone, there is no tarball forDoug Barton2009-08-031-0/+3
| | | | | | | new versions, and the project seems to generally be having "issues." Notes: svn path=/head/; revision=238854
* - Update to 1.2.0.Marcelo Araujo2009-08-034-15/+145
| | | | | | | | | | - Pass maintainer to submitter. PR: ports/137320 Submitted by: Sylvio Cesar <scjamorim@bsd.com.br> Notes: svn path=/head/; revision=238853
* Remove support for electricsheep as a screensaver, the project has beenDoug Barton2009-08-034-59/+5
| | | | | | | having "issues" for a long time now. Notes: svn path=/head/; revision=238852
* - Fix the issue when you set a custom PREFIX or LOCALBASE.Marcelo Araujo2009-08-031-2/+14
| | | | | | | | PR: ports/137229 Submitted by: Sylvio Cesar <scjamorim@bsd.com.br> (maintainer) Notes: svn path=/head/; revision=238851
* - Update to 1.4.7.2843Nicola Vitale2009-08-033-12/+710
| | | | | | | | - Add pkg-plist - Use ${COPYTREE_SHARE} to install files Notes: svn path=/head/; revision=238850
* Add a note about emulators/linux-systemsimcell:Boris Samorodov2009-08-031-0/+2
| | | | | | | | | | *Redistribution of pre-compiled binaries is not permitted* PR: ports/131802 Submitted by: Stas Timokhin <stast at bsdportal.ru> Notes: svn path=/head/; revision=238849
* Update portmaster examples for the libtool updateDoug Barton2009-08-031-2/+2
| | | | Notes: svn path=/head/; revision=238848
* A full-system simulation infrastructure and toolsBoris Samorodov2009-08-035-0/+413
| | | | | | | | | | | | | | for the Cell Broadband Engine processor. WWW: http://www.alphaworks.ibm.com/tech/cellsystemsim/ - Stas Timokhin stast@bsdportal.ru PR: ports/131802 Submitted by: Stas Timokhin <stast at bsdportal.ru> Notes: svn path=/head/; revision=238847