Commit graph

22580 commits

Author SHA1 Message Date
Felippe de Meirelles Motta
36b233c0d0 - Update to 3.0.3.
- Makefile style.

PR:		ports/125557
Submitted by:	bf <bf2006a@yahoo.org>
Approved by:	maintainer timeout (> 2 weeks)
2008-09-02 21:52:16 +00:00
Mathieu Arnold
c7c9419ce5 Fixup descriptions and comments. 2008-09-02 16:16:51 +00:00
Mathieu Arnold
d307301d8b Add ConfigKit 0.3, a somewhat prototypical facility for generating CLI
interfaces.
2008-09-02 15:42:18 +00:00
Mathieu Arnold
694a4d9f5e Add libphk-0.3, PHK's utilities functions. 2008-09-02 15:13:18 +00:00
Thomas Abthorpe
88a0b5c2aa - Update to 1.3.0
PR:		ports/126809
Submitted by:	Wen heping <wenheping gmail.com>
2008-09-02 13:22:45 +00:00
Emanuel Haupt
9b0db62ef7 Update to 0.02 2008-09-02 11:31:34 +00:00
Dmitry Marakasov
692389fb14 - Fix compiling with gcc 4 in some cases
PR:		126486
Submitted by:	Volker Werth <volker at vwsoft dot com>
Approved by:	maintainer timeout
2008-09-02 10:49:16 +00:00
Felippe de Meirelles Motta
bf62df4865 - Although it is used to construct makefiles for qt3-related projects, does not actually use USE_QT. With this change, ports that use tmake during a build, but should only depend on qt conditionally, are not forced to depend upon qt unconditionally. Example: devel/doxygen.
- Optimize Makefile.
- Bump PORTREVISION.

PR:		ports/126542
Submitted by:	bf <bf2006a@yahoo.com>
Approved by:	maintainer timeout (> 2 weeks)
2008-09-02 01:28:35 +00:00
Dmitry Marakasov
37bdfbb75f - Fix misspelled LIB_DEPENDS
PR:		126387
Submitted by:	William Grim <grimwm at gmail dot com>
2008-09-01 21:55:32 +00:00
Mark Linimon
0db299967e Assign to new volunteer. 2008-09-01 02:17:50 +00:00
Mark Linimon
8571cf6885 Reset alfred, who has not been active in ports for a while.
Hat:		portmgr
2008-09-01 01:41:16 +00:00
Mark Linimon
79cb5fc7ff Reset mikeh, who has not done any commits for over a year.
Hat:		portmgr
2008-09-01 00:59:45 +00:00
Mark Linimon
6fab928c1f bsd@FreeBSD.org has not been active in ports in quite some time.
hat:		portmgr
2008-09-01 00:50:43 +00:00
Thierry Thomas
5de5664ff1 Upgrade to 4.5. 2008-08-31 20:09:36 +00:00
Rong-En Fan
7017c04324 - Update to 5.6 snapshot 20080830 2008-08-31 12:15:09 +00:00
Chin-San Huang
1fa41e1a3e - Update to 5.0.0 2008-08-31 08:55:42 +00:00
Yen-Ming Lee
1ed1b09b07 - simplify dependency
- bump PORTREVISION
2008-08-31 02:53:01 +00:00
Yen-Ming Lee
2c9729dbd6 - simplify dependency
- bump PORTREVISION
2008-08-31 02:24:36 +00:00
Martin Wilke
014e7dc3b4 - Update to 1.3.7
PR:		126477
Submitted by:	Wen heping <wenheping@gmail.com>
Approved by:	maintainer timeout
2008-08-30 20:23:32 +00:00
Martin Wilke
208c523b05 - Update to 3.0.0
PR:		126295
Submitted by:	Wen heping <wenheping@gmail.com>
Approved by:	maintainer timeout
2008-08-30 20:22:42 +00:00
Martin Wilke
d42e1adb5e - Update to 0.7
PR:		126911
Submitted by:	maintainer
2008-08-30 20:19:05 +00:00
Chin-San Huang
c0013458b1 Add p5-Forest, a collection of n-ary tree related modules.
Forest is intended to be a replacement for the Tree::Simple family of
modules, and fixes many of the issues that have always bothered me about
them. It is by no means a complete replacement yet, but should eventually
grow to become that.

WWW: http://search.cpan.org/dist/Forest/
2008-08-30 18:12:34 +00:00
Chin-San Huang
98d153478b Add p5-Sub-Current, get the current subroutine.
Sub::Current makes available a function ROUTINE(), that returns a code
reference pointing at the currently executing subroutine.

In a special block (BEGIN, END, CHECK, INIT, and UNITCHECK in Perl 5.10)
this function will return undef.

Outside of a special block (that is, at the top level of a program)
ROUTINE() will return undef as well.

WWW: http://search.cpan.org/dist/Sub-Current/
2008-08-30 18:05:09 +00:00
Chin-San Huang
0292b5a5d0 Add p5-Pod-Coverage-Moose, Pod::Coverage extension for Moose.
When using Pod::Coverage in combination with Moose, it will report any
method imported from a Role. This is especially bad when used in combination
with Test::Pod::Coverage, since it takes away its ease of use.

WWW: http://search.cpan.org/dist/Pod-Coverage-Moose/
2008-08-30 15:59:43 +00:00
Chin-San Huang
0b4126532b Add p5-MooseX-Clone, fine grained cloning support for Moose objects.
Out of the box Moose only provides very barebones cloning support in order
to maximize flexibility.

This role provides a clone method that makes use of the low level cloning
support already in Moose and adds selective deep cloning based on
introspection on top of that. Attributes with the Clone trait will handle
cloning of data within the object, typically delegating to the attribute
value's own clone method.

WWW: http://search.cpan.org/dist/MooseX-Clone/
2008-08-30 15:13:52 +00:00
Chin-San Huang
9d40d01bfd Add p5-Hash-Util-FieldHash-Compat, use Hash::Util::FieldHash or ties,
depending on availability.

Under older perls this module provides a drop in compatible api to
Hash::Util::FieldHash using perltie. When Hash::Util::FieldHash is available
it will use that instead.

This way code requiring field hashes can benefit from fast, robust field
hashes on Perl 5.10 and newer, but still run on older perls that don't ship
with that module.

WWW: http://search.cpan.org/dist/Hash-Util-FieldHash-Compat/
2008-08-30 14:50:02 +00:00
Chin-San Huang
0eeeca4c46 Add p5-Tie-RefHash-Weak, a Tie::RefHash subclass with weakened references in
the keys.

The Tie::RefHash module can be used to access hashes by reference. This is
useful when you index by object, for example.

The problem with Tie::RefHash, and cross indexing, is that sometimes the
index should not contain strong references to the objecs. Tie::RefHash's
internal structures contain strong references to the key, and provide no
convenient means to make those references weak.

This subclass of Tie::RefHash has weak keys, instead of strong ones. The
values are left unaltered, and you'll have to make sure there are no strong
references there yourself.

WWW: http://search.cpan.org/dist/Tie-RefHash-Weak/
2008-08-30 14:39:06 +00:00
Chin-San Huang
037019ccf6 Add p5-Variable-Magic, associate user-defined magic to variables from Perl.
Magic is Perl way of enhancing objects. This mechanism let the user add
extra data to any variable and overload syntaxical operations (such as
access, assignation or destruction) that can be applied to it. With this
module, you can add your own magic to any variable without the pain of the C
API.

WWW: http://search.cpan.org/dist/Variable-Magic/
2008-08-30 14:08:12 +00:00
Chin-San Huang
9dba58bdbd - set PORTSCOUT variable 2008-08-30 11:33:14 +00:00
Sergey Skvortsov
92d8276005 Upadte to 1.03
Changes:	http://search.cpan.org/src/RONAN/Class-ArrayObjects-1.03/Changes
2008-08-30 09:22:54 +00:00
Sergey Skvortsov
4af62343f0 Update to 1.32 2008-08-30 09:21:38 +00:00
Sergey Skvortsov
cd3dfe3d49 Update to 1.27
Changes:	http://search.cpan.org/src/BDFOY/ConfigReader-Simple-1.27/Changes
2008-08-30 08:48:22 +00:00
Yen-Ming Lee
6ecfed8ed3 - update to 1.044 2008-08-30 07:34:48 +00:00
Chin-San Huang
3d82bb35ba - Update to 0.9.1 2008-08-29 17:47:36 +00:00
Martin Wilke
8d67f4a547 The KDE FreeBSD team is proud to announce the release
of KDE 3.5.10 for FreeBSD. The official KDE 3.5.10 release
notes can be found at:
http://www.kde.org/announcements/announce-3.5.10.php

While not a very exciting release in terms of features,
3.5.10 brings a couple of nice bugfixes and translation
updates to those who choose to stay with KDE 3.5. The
fixes are thinly spread across KPDF with a number of crash
fixes, KGPG and probably most interesting various fixes
in kicker, KDE3's panel:

    * Improved visibility on transparent backgrounds
    * Themed arrow buttons in applets that were missing them
    * Layout and antialiasing fixes in various applets

Approved by:	portmgr (erwin/pav)
2008-08-29 11:30:04 +00:00
Cheng-Lung Sung
d507c7bfa5 - Update to 3.0.7
Changes:	http://search.cpan.org/dist/IO-AIO/Changes
2008-08-29 06:50:01 +00:00
Florent Thoumie
d9c457bc5d - Update devel/mono-addins to 0.3.1.
- Fix packing list when GTK2 isn't enabled.

Reported by:	portscout
2008-08-28 19:35:40 +00:00
Lars Thegler
479b80adac Update to 1.18 2008-08-28 19:29:50 +00:00
Bruce M Simpson
c537196fd1 Unbreak. 2008-08-28 15:28:15 +00:00
Oliver Lehmann
53ec59faa7 update mercator to 0.2.6 2008-08-28 04:17:09 +00:00
Cheng-Lung Sung
b9011949f2 - Update to 0.7.8 2008-08-28 03:45:54 +00:00
Cheng-Lung Sung
22af58e1a3 - Update to 0.24
Changes:	http://search.cpan.org/dist/ExtUtils-CBuilder/Changes
2008-08-28 02:10:55 +00:00
Cheng-Lung Sung
7005723b1e - Update to 0.625
Changes:	http://search.cpan.org/dist/Config-Model/ChangeLog
2008-08-28 01:55:05 +00:00
Cheng-Lung Sung
f21d9e5bad - Update to 1.40 2008-08-28 00:25:47 +00:00
Wesley Shields
b3a2bbe8d1 - Update to 1.6.0.1
Lots of changes, the most visible of which is:

With the default Makefile settings, most of the programs are now
installed outside your $PATH, except for "git", "gitk" and
some server side programs that need to be accessible for technical
reasons.  Invoking a git subcommand as "git-xyzzy" from the command
line has been deprecated since early 2006 (and officially announced in
1.5.4 release notes); use of them from your scripts after adding
output from "git --exec-path" to the $PATH is still supported in this
release, but users are again strongly encouraged to adjust their
scripts to use "git xyzzy" form, as we will stop installing
"git-xyzzy" hardlinks for built-in commands in later releases.

The 1.6.0 Release Notes:
http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.6.0.txt

The 1.6.0.1 Release Notes:
http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.6.0.1.txt
2008-08-27 22:05:12 +00:00
Thierry Thomas
c0c7e0195c Upgrade to 4.5.
Changelog at <http://bouml.sourceforge.net/historic.html>.
2008-08-27 21:53:10 +00:00
Oliver Lehmann
f16328178d update to 0.2.32 2008-08-27 18:56:04 +00:00
Dmitry Marakasov
7f41de3f9b - Fix stuff after pav's premature commit of graphics/osg update
- Remove graphics/openproducer, graphics/openthreads - those are now included in osg
  - Remove obsolete bsd.osg.mk from graphics/osg
  - Mark graphics/demeter BROKEN if it's being build WITH_OSG, as it won't compile now
2008-08-27 17:51:07 +00:00
Florent Thoumie
bcd29b43e5 Fix fetch.
Reported by:	itetcu
2008-08-27 16:56:20 +00:00
Florent Thoumie
cc4f7bddd9 Hook up devel/mono-addins to the build. 2008-08-27 16:49:34 +00:00