aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* - update to 4.5.5Florian Smeets2011-09-203-9/+15
| | | | | | | - drop FreeBSD 6.x support Notes: svn path=/head/; revision=282072
* update to 1.8.2Florian Smeets2011-09-202-3/+3
| | | | | | | | | PR: ports/160756 Submitted by: Barbara <barbara.xxx1975@libero.it> Approved by: maintainer Notes: svn path=/head/; revision=282071
* Reconnect xvattr to build.Mark Linimon2011-09-201-0/+1
| | | | | | | Forgotten by: stas Notes: svn path=/head/; revision=282070
* Mark job unsafe.Baptiste Daroussin2011-09-201-2/+1
| | | | | | | | | | | The build system already determine dynamically the number of jobs to run, if marked jobs_safe both the ports and the build system parallelise the build, which leads to a huge number of cc1plus processes and consume tons of memory. Reported by: flo Notes: svn path=/head/; revision=282069
* Remove OpenOffice.org 2.x, it is unsupported upstream and vulnerable[1]Baptiste Daroussin2011-09-2032-5582/+1
| | | | | | | | | | | Please use editors/openoffice.org-3 or editors/libreoffice Reported by: dougb[1] Approved by: maho With hat: office Notes: svn path=/head/; revision=282068
* Fix compilation with SSL.Vasil Dimov2011-09-201-1/+1
| | | | | | | Submitted by: Sture Åhlin <sture.ahlin@telia.com> Notes: svn path=/head/; revision=282067
* Fix dependencies [1]Baptiste Daroussin2011-09-201-3/+7
| | | | | | | | | while here fix licenses Reported by: Geraud CONTINSOUZAS <geraud@gcu.info> (irc) [1] Notes: svn path=/head/; revision=282066
* - Update to 0.20Frederic Culot2011-09-202-3/+3
| | | | | | | Changes: http://search.cpan.org/dist/WebService-Google-Reader/Changes Notes: svn path=/head/; revision=282065
* Role::HasMessage is an extremely simple role. A class that includesBaptiste Daroussin2011-09-205-0/+49
| | | | | | | | | | | | | Role::HasMessage is promising to provide a message method that returns a string summarizing the message or event represented by the object. It does not provide any actual behavior. WWW: http://search.cpan.org/dist/Role-HasMessage/ Submitted by: Geraud CONTINSOUZAS <geraud@gcu.info> (by private mail) Notes: svn path=/head/; revision=282064
* Log::Dispatchouli is a thin layer above Log::Dispatch and meant toBaptiste Daroussin2011-09-205-0/+52
| | | | | | | | | | | | | | | make it dead simple to add logging to a program without having to think much about categories, facilities, levels, or things like that. It is meant to make logging just configurable enough that you can find the logs you want and just easy enough that you will actually log things. WWW: http://search.cpan.org/dist/Log-Dispatchouli/ Submitted by: Geraud CONTINSOUZAS <geraud@gcu.info> (by private mail) Notes: svn path=/head/; revision=282063
* - Update to 0.70Sunpoet Po-Chuan Hsieh2011-09-204-19/+6
| | | | | | | | | Changes: http://search.cpan.org/dist/Hailo/Changes PR: ports/160840 Submitted by: milki <milki@rescomp.berkeley.edu> (maintainer) Notes: svn path=/head/; revision=282062
* String::Errf provides errf, a simple string formatter that worksBaptiste Daroussin2011-09-205-0/+41
| | | | | | | | | | | something like sprintf. WWW: http://search.cpan.org/dist/String-Errf/ Submitted by: Geraud CONTINSOUZAS <geraud@gcu.info> (by private mail) Notes: svn path=/head/; revision=282061
* Remove temporary filesBaptiste Daroussin2011-09-201-31/+0
| | | | Notes: svn path=/head/; revision=282060
* CPAN::Uploader - upload things to the CPANBaptiste Daroussin2011-09-206-0/+74
| | | | | | | | | WWW: http://search.cpan.org/dist/CPAN-Uploader/ Submitted by: Geraud CONTINSOUZAS <geraud@gcu.info> (by private mail) Notes: svn path=/head/; revision=282059
* Config::MVP::Reader::INI reads .ini files containing MVP-styleBaptiste Daroussin2011-09-205-0/+44
| | | | | | | | | | | configuration. WWW: http://search.cpan.org/dist/Config-MVP-Reader-INI/ Submitted by: Geraud CONTINSOUZAS <geraud@gcu.info> (by private mail) Notes: svn path=/head/; revision=282058
* Perl extension for KyotoCabinet.Baptiste Daroussin2011-09-205-0/+40
| | | | | | | | | WWW: http://fallabs.com/kyotocabinet/ Submitted by: Geraud CONTINSOUZAS <geraud@gcu.info> (by private mail) Notes: svn path=/head/; revision=282057
* This provides a Log::Dispatch log output system that appends loggedBaptiste Daroussin2011-09-205-0/+43
| | | | | | | | | | | | events to an array reference. This is probably only useful for testing the logging of your code. WWW: http://search.cpan.org/dist/Log-Dispatch-Array/ Submitted by: Geraud CONTINSOUZAS <geraud@gcu.info> (by private mail) Notes: svn path=/head/; revision=282056
* The Perl::PrereqScanner scanner will extract loosely your distributionBaptiste Daroussin2011-09-205-0/+62
| | | | | | | | | | | prerequisites from your files. WWW: http://search.cpan.org/dist/Perl-PrereqScanner/ Submitted by: Geraud CONTINSOUZAS <geraud@gcu.info> (by private mail) Notes: svn path=/head/; revision=282055
* Update to 4.3.2Ganael LAPLANCHE2011-09-204-22/+12
| | | | Notes: svn path=/head/; revision=282054
* - Add p5-Tree-RedBlack 0.5Sunpoet Po-Chuan Hsieh2011-09-205-0/+44
| | | | | | | | | | | | | | | | | Tree::RedBlack is a perl implementation of the Red/Black tree algorithm found in the book "Algorithms", by Cormen, Leiserson & Rivest (more commonly known as "CLR" or "The White Book"). A Red/Black tree is a binary tree which remains "balanced"- that is, the longest length from root to a node is at most one more than the shortest such length. It is fairly efficient; no operation takes more than O(lg(n)) time. A Tree::RedBlack object supports the following methods: new(), root(), cmp(&), insert($, $), delete($), find($), node($), min() and max(). WWW: http://search.cpan.org/dist/Tree-RedBlack/ Notes: svn path=/head/; revision=282053
* - Add p5-Carp-Always-Color 0.05Sunpoet Po-Chuan Hsieh2011-09-205-0/+57
| | | | | | | | | | | | | | Stack traces are hard to read when the messages wrap, because it's hard to tell when one message ends and the next message starts. Carp::Always::Color just colors the first line of each stacktrace, based on whether it's a warning or an error. If messages are being sent to a terminal, it colors them with terminal escape codes, otherwise it colors them with HTML (ideas for more intelligent behavior here are welcome). WWW: http://search.cpan.org/dist/Carp-Always-Color/ Notes: svn path=/head/; revision=282052
* - Update to 0.26Sunpoet Po-Chuan Hsieh2011-09-204-84/+119
| | | | | | | | | - Sort MAN3 and PLIST Changes: http://search.cpan.org/dist/Math-GSL/Changes Notes: svn path=/head/; revision=282051
* - Update to 1.003014Sunpoet Po-Chuan Hsieh2011-09-203-14/+19
| | | | | | | | | | | - Add TEST_DEPENDS - Sort MAN3 and PLIST - Take maintainership Changes: http://search.cpan.org/dist/Parse-Method-Signatures/Changes Notes: svn path=/head/; revision=282050
* Role::Identifiable::HasIdent is an incredibly simple role. It addsBaptiste Daroussin2011-09-205-0/+47
| | | | | | | | | | | | | | | a required ident attribute that stores a simple string, meant to identify exceptions. Role::Identifiable::HasTags adds the ability for your class and its composed parts (roles, superclasses) as well as instances of it to contribute to a pool of tags describing each instance. WWW: http://search.cpan.org/dist/Role-Identifiable/ Submitted by: Geraud CONTINSOUZAS <geraud@gcu.info> (by private mail) Notes: svn path=/head/; revision=282049
* String::Formatter is a tool for building sprintf-like formattingBaptiste Daroussin2011-09-205-0/+45
| | | | | | | | | | | | | routines. It supports named or positional formatting, custom conversions, fixed string interpolation, and simple width-matching out of the box. WWW: http://search.cpan.org/dist/String-Formatter/ Submitted by: Geraud CONTINSOUZAS <geraud@gcu.info> (by private mail) Notes: svn path=/head/; revision=282048
* Sub::Exporter::GlobExporter - export shared globs with Sub::Exporter collectorsBaptiste Daroussin2011-09-205-0/+40
| | | | | | | | | WWW: http://search.cpan.org/dist/Sub-Exporter-GlobExporter/ Submitted by: Geraud CONTINSOUZAS <geraud@gcu.info> (by private mail) Notes: svn path=/head/; revision=282047
* MooseX::OneArgNew lets your constructor take a single argument,Baptiste Daroussin2011-09-205-0/+41
| | | | | | | | | | | which will be translated into the value for a one-entry hashref. WWW: http://search.cpan.org/dist/MooseX-OneArgNew/ Submitted by: Geraud CONTINSOUZAS <geraud@gcu.info> (by private mail) Notes: svn path=/head/; revision=282046
* Change license from X11 to MIT we do not have x11 in the database and x11 is ↵Baptiste Daroussin2011-09-2025-25/+25
| | | | | | | | | a MIT license: MIT license / X11 license (from bsd.license.db.mk) Notes: svn path=/head/; revision=282045
* - Add agedu 9251Sunpoet Po-Chuan Hsieh2011-09-204-0/+48
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Unix provides the standard du utility, which scans your disk and tells you which directories contain the largest amounts of data. That can help you narrow your search to the things most worth deleting. However, that only tells you what's big. What you really want to know is what's too big. By itself, du won't let you distinguish between data that's big because you're doing something that needs it to be big, and data that's big because you unpacked it once and forgot about it. Most Unix file systems, in their default mode, helpfully record when a file was last accessed. Not just when it was written or modified, but when it was even read. So if you generated a large amount of data years ago, forgot to clean it up, and have never used it since, then it ought in principle to be possible to use those last-access time stamps to tell the difference between that and a large amount of data you're still using regularly. agedu is a program which does this. It does basically the same sort of disk scan as du, but it also records the last-access times of everything it scans. Then it builds an index that lets it efficiently generate reports giving a summary of the results for each subdirectory, and then it produces those reports on demand. WWW: http://www.chiark.greenend.org.uk/~sgtatham/agedu/ Notes: svn path=/head/; revision=282044
* Upgrade ftp/wget from 1.12 to 1.13.4Vasil Dimov2011-09-2013-184/+5
| | | | Notes: svn path=/head/; revision=282043
* Update 3.1.5 --> 3.2.1.Cy Schubert2011-09-206-464/+474
| | | | | | | | PR: 160355 (3.2.0) Submitted by: Wojtek Kochanowski <wojciech.kochanowski@nnv.pl> Notes: svn path=/head/; revision=282042
* - update iceauth to 1.0.5Eitan Adler2011-09-2056-89/+146
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - update libXcursor to 1.1.12 - update libXdmcp to 1.1.0 - update libxkbfile to 1.0.7 - update rstart to 1.0.4 - update smproxy to 1.0.5 - update viewres to 1.0.3 - update x11perf to 1.5.4 - update xauth to 1.0.6 - update xbacklight to 1.1.2 - update xbitmaps to 1.1.1 - update xclipboard to 1.1.1 - update xcmsdb to 1.0.3 - update xcursor-themes to 1.0.3 - update xcursorgen to 1.0.4 - update xditview to 1.0.2 - update xdpyinfo to 1.2.0 - update xgc to 1.0.3 - update xkbevd to 1.1.2 - update xkbprint to 1.1.2 - update xkbutils to 1.0.3 - update xload to 1.0.2 - update xlogo to 1.0.3 - update xlsclients to 1.1.2 - update xmodmap to 1.0.5 - update xstdcmap to 1.0.2 - update xtrans to 1.2.6 - update xwd to 1.0.4 - add licenses to ports where it is known - remove outdated conflicts line - fix comment in xlogo Approved by: sahil (mentor) Obtained from: xorg-devel repo Notes: svn path=/head/; revision=282041
* Update to 20110920. This fixes build on 9-CURRENT after r225617.Hiroki Sato2011-09-202-4/+4
| | | | | | | PR: ports/160769 Notes: svn path=/head/; revision=282040
* - Update to 0.55Sunpoet Po-Chuan Hsieh2011-09-202-4/+6
| | | | | | | Changes: http://search.cpan.org/dist/Catalyst-Model-DBIC-Schema/Changes Notes: svn path=/head/; revision=282039
* - Update to 0.30Sunpoet Po-Chuan Hsieh2011-09-202-3/+3
| | | | | | | Changes: http://search.cpan.org/dist/MooseX-Types/Changes Notes: svn path=/head/; revision=282038
* - Update to 0.1724Sunpoet Po-Chuan Hsieh2011-09-202-3/+3
| | | | | | | Changes: http://search.cpan.org/dist/DBIx-Custom/Changes Notes: svn path=/head/; revision=282037
* - Add build depends to avoid build warningSteve Wills2011-09-201-1/+2
| | | | | | | | | PR: ports/159891 Submitted by: swills (me) Approved by: maintainer timeout (>4 weeks) Notes: svn path=/head/; revision=282036
* - Update WWWSunpoet Po-Chuan Hsieh2011-09-201-1/+1
| | | | Notes: svn path=/head/; revision=282035
* add a few mirrors and mark MAKE_JOBS_UNSAFE [1]Brendan Fabeny2011-09-201-0/+5
| | | | | | | | PR: 160814 [1] Submitted by: amdmi3 [1] Notes: svn path=/head/; revision=282034
* - Add build depends to avoid warningSteve Wills2011-09-201-1/+2
| | | | | | | | | PR: ports/159890 Submitted by: swills (me) Approved by: maintainer timeout (>5 weeks) Notes: svn path=/head/; revision=282033
* Apache Axis2 is a Web Services / SOAP / WSDL engine, the successor to theEitan Adler2011-09-205-0/+284
| | | | | | | | | | | | | | | widely used Apache Axis SOAP stack. There are two implementations of the Apache Axis2 Web services engine - Apache Axis2/Java and Apache Axis2/C WWW: http://axis.apache.org/axis2/java/core/ PR: ports/159269 Reviewed by: glewis Submitted by: Jason Helfman <jhelfman@e-e.com> Approved by: bapt (mentor) Notes: svn path=/head/; revision=282032
* - Add build depends to avoid build warningSteve Wills2011-09-201-1/+2
| | | | | | | | | PR: ports/159849 Submitted by: swills (me) Approved by: maintainer timeout (>5 weeks) Notes: svn path=/head/; revision=282031
* - Add build depends to avoid warningSteve Wills2011-09-201-1/+2
| | | | | | | | | PR: ports/159826 Submitted by: swills (me) Approved by: maintainer timeout (>5 weeks) Notes: svn path=/head/; revision=282030
* Add XInput2 (aka x11/libXi aka xi.6) as an explicit dependency.Gerald Pfeifer2011-09-192-4/+6
| | | | | | | | Suggested by: Alex Kozlov <spam@rm-rf.kiev.ua>, David Naylor <naylor.b.david@gmail.com> Notes: svn path=/head/; revision=282028
* - Add missing run_depends.Stephen Montgomery-Smith2011-09-191-0/+4
| | | | | | | - Bump portrevision. Notes: svn path=/head/; revision=282027
* - Add 'test' target.Stanislav Sedov2011-09-193-0/+9
| | | | | | | | PR: ports/160835 Submitted by: Dmitry Marakasov <amdmi3@amdmi3.ru> Notes: svn path=/head/; revision=282026
* Although the default remains 8.5, this changes allows compiling againstMikhail Teterin2011-09-193-1/+10
| | | | | | | | Tk-8.6 as well. Also set MAKE_JOBS_SAFE to "yes" -- we rely on bsd.lib.mk, which has been parallel-safe for ever. Notes: svn path=/head/; revision=282025
* - Update COMMENT and package descriptionPawel Pekala2011-09-192-3/+9
| | | | | | | | | | | - Add LICENSE PR: ports/160813 Submitted by: Pedro Giffuni <giffunip@tutopia.com> Approved by: maintainer, miwi, wen (mentors implicit) Notes: svn path=/head/; revision=282024
* Actually do take over maintainership. Bump PORTREVISION.Mikhail Teterin2011-09-191-2/+2
| | | | Notes: svn path=/head/; revision=282023
* Restore the ability to build against Tk-8.5. Take over maintainership.Mikhail Teterin2011-09-197-67/+485
| | | | Notes: svn path=/head/; revision=282022