summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2008-07-14Note update of the "glib2" package to version 2.16.4nb1.tron1-1/+2
2008-07-14Don't build this with Universal Binary support under Mac OS X. It breakstron2-16/+16
(at least) the GTK+ 2.x which is a known issue, see http://trac.macports.org/ticket/15816 for more details. Bump package revision because of this fix.
2008-07-14Note update of misc/p5-Geo-Coordinates-UTM to 0.08.he1-1/+2
2008-07-14Update from version 0.06 to 0.08. Changes:he2-6/+6
0.07 Wed Dec 05 16:18:22 2007 - Addition of new ellipsoids - Refinement of MGRS calculations - Addition of latlon_to_utm_force_zone Changes for 0.08 not in Changes file in package.
2008-07-14Use PYTHON_VERSIONS_ACCEPTED for py-qt3-sip and extend transitivejoerg2-3/+5
closure to the other qt3-sip packages.
2008-07-14Annotate libarchive/bsdtar update.joerg1-1/+3
2008-07-14Update libarchive and bsdtar to 2.5.5.joerg4-19/+5
This further polishes bsdcpio and brings in a number of portability fixes. Revert temporary hack to not use vfork on IRIX.
2008-07-14Merge changes from libarchive-2.5.5.joerg1-1/+4
2008-07-14Import libarchive-2.5.5.joerg84-869/+826
2008-07-14Require newer Python base version that has configure output withjoerg1-2/+7
readline installed. This fixes segmentation faults when using command completition support. Bump revision.
2008-07-14Always build depend on readline, so that devel/py-readline can pick upjoerg6-10/+27
the right config. Bump revision.
2008-07-14p5-{SQL-Translator,Sort-SQL} not {SQL-Translator,Sort-SQL}abs1-3/+3
2008-07-14Fix build under MacOSX Leopard with Xcode 3tonio2-1/+20
2008-07-14pbulk-0.33: Don't try to install/deinstall bootstrap packages.joerg2-6/+14
This allows a destdir build to package bootstrap components.
2008-07-14Mark as destdir ready.joerg563-568/+1666
2008-07-14Mark as incompatible with python25 (PyHeapTypeObject lost its type member).wiz1-4/+3
2008-07-14Fix build with ncursesw option set. Comment from the commit:wiz1-1/+7
# XXX: NetBSD's wide curses are not accepted, because the configure # script doesn't find the proper headers. # This could be a bug in the buildlink framework for wide curses. # The next line is a workaround until someone(TM) finds time to # investigate this.
2008-07-14Added textproc/p5-FormValidator-Simple version 0.23abs1-1/+5
Added www/p5-Template-Stash-HTML-Entities version 1.3.1 Added databases/p5-Sort-SQL version 0.03 Added databases/p5-SQL-Translator version 0.09000
2008-07-14+SQL-Translator +Sort-SQLabs1-1/+3
2008-07-14+p5-Template-Stash-HTML-Entitiesabs1-1/+2
2008-07-14+p5-FormValidator-Simpleabs1-1/+2
2008-07-14Added databases/p5-SQL-Translator version 0.09000abs3-0/+49
SQL::Translator is a group of Perl modules that converts vendor-specific SQL table definitions into other formats, such as other vendor-specific SQL, ER diagrams, documentation (POD and HTML), XML, and Class::DBI classes. The main focus of SQL::Translator is SQL, but parsers exist for other structured data formats, including Excel spreadsheets and arbitrarily delimited text files. Through the separation of the code into parsers and producers with an object model in between, it's possible to combine any parser with any producer, to plug in custom parsers or producers, or to manipulate the parsed data via the built-in object model. Presently only the definition parts of SQL are handled (CREATE, ALTER), not the manipulation of data (INSERT, UPDATE, DELETE).
2008-07-14Added databases/p5-Sort-SQL version 0.03abs3-0/+27
Sort::SQL is so simple it almost doesn't deserve to be on CPAN. Takes a scalar string of the SQL ORDER BY syntax and turns it into an array of key/value pair hashrefs.
2008-07-14Added www/p5-Template-Stash-HTML-Entities version 1.3.1abs3-0/+25
This module is a sub class of Template::Stash, automatically escape all HTML strings using HTML::Entities to avoid XSS vulnerability.
2008-07-14Added textproc/p5-FormValidator-Simple version 0.23abs3-0/+49
This module provides you a sweet way of form data validation with simple constraints chains. You can write constraints on single line for each input data. This idea is based on Sledge::Plugin::Validator, and most of validation code is borrowed from this plugin. (Sledge is a MVC web application framework: http://sl.edge.jp [Japanese] ) The result object this module returns behaves like Data::FormValidator::Results.
2008-07-14Updated mail/p5-Email-MIME-Creator to 1.454abs1-1/+16
Added devel/p5-Class-Base version 0.03 Added devel/p5-Class-C3-Componentised version 1.0003 Added devel/p5-Class-Data-Accessor version 0.04002 Added devel/p5-Class-ISA version 0.33 Added devel/p5-Config-Any version 0.12 Added devel/p5-Data-Page version 2.00 Added devel/p5-Data-Pageset version 1.05 Added devel/p5-Data-Visitor version 0.15 Added devel/p5-Devel-Caller version 2.03 Added devel/p5-Devel-LexAlias version 0.04 Added devel/p5-Module-Find version 0.06 Added devel/p5-Object-Signature version 1.05 Added devel/p5-PadWalker version 1.7 Added devel/p5-Scope-Guard version 0.03
2008-07-14SUBDIR+= p5-Class-Baseabs1-1/+15
SUBDIR+= p5-Class-C3-Componentised SUBDIR+= p5-Class-Data-Accessor SUBDIR+= p5-Class-ISA SUBDIR+= p5-Config-Any SUBDIR+= p5-Data-Page SUBDIR+= p5-Data-Pageset SUBDIR+= p5-Data-Visitor SUBDIR+= p5-Devel-Caller SUBDIR+= p5-Devel-LexAlias SUBDIR+= p5-Module-Find SUBDIR+= p5-Object-Signature SUBDIR+= p5-PadWalker SUBDIR+= p5-Scope-Guard
2008-07-14Added devel/p5-Scope-Guard version 0.03abs3-0/+30
This module provides a convenient way to perform cleanup or other forms of resource management at the end of a scope. It is particularly useful when dealing with exceptions: the Scope::Guard constructor takes a reference to a subroutine that is guaranteed to be called even if the thread of execution is aborted prematurely. This effectively allows lexically-scoped "promises" to be made that are automatically honoured by perl's garbage collector.
2008-07-14Added devel/p5-PadWalker version 1.7abs3-0/+33
PadWalker is a module which allows you to inspect (and even change!) lexical variables in any subroutine which called you. It will only show those variables which are in scope at the point of the call. PadWalker is particularly useful for debugging. It's even used by Perl's built-in debugger. (It can also be used for evil, of course.) I wouldn't recommend using PadWalker directly in production code, but it's your call. Some of the modules that use PadWalker internally are certainly safe for and useful in production.
2008-07-14Added devel/p5-Object-Signature version 1.05abs3-0/+36
Object::Signature is an abstract base class that you can inherit from in order to allow your objects to generate unique cryptographic signatures. The method used to generate the signature is based on Storable and Digest::MD5. The object is fed to Storable::nfreeze to get a string, which is then passed to Digest::MD5::md5_hex to get a unique 32 character hexidecimal signature.
2008-07-14Added devel/p5-Module-Find version 0.06abs3-0/+29
Module::Find lets you find and use modules in categories. This can be very useful for auto-detecting driver or plugin modules. You can differentiate between looking in the category itself or in all subcategories.
2008-07-14Added devel/p5-Devel-LexAlias version 0.04abs3-0/+31
Devel::LexAlias provides the ability to alias a lexical variable in a subroutines scope to one of your choosing. If you don't know why you'd want to do this, I'd suggest that you skip this module. If you think you have a use for it, I'd insist on it.
2008-07-14Added devel/p5-Devel-Caller version 2.03abs3-0/+48
This provides a 'meatier' version of caller: caller_cv($level) caller_cv gives you the coderef of the subroutine being invoked at the call frame indicated by the value of $level caller_args($level) Returns the arguments passed into the caller at level $level caller_vars( $level, $names ) =item called_with($level, $names) called_with returns a list of references to the original arguments to the subroutine at $level. if $names is true, the names of the variables will be returned instead constants are returned as undef in both cases called_as_method($level) called_as_method returns true if the subroutine at $level was called as a method.
2008-07-14Added devel/p5-Data-Visitor version 0.15abs3-0/+32
This module is a simple visitor implementation for Perl values. It has a main dispatcher method, visit, which takes a single perl value and then calls the methods appropriate for that value.
2008-07-14Added devel/p5-Data-Pageset version 1.05abs3-0/+38
The object produced by Data::Pageset can be used to create page navigation, it inherits from Data::Page and has access to all methods from this object. In addition it also provides methods for dealing with set of pages, so that if there are too many pages you can easily break them into chunks for the user to browse through. You can even choose to view page numbers in your set in a 'sliding' fassion. The object can easily be passed to a templating system such as Template Toolkit or be used within a script.
2008-07-14Added devel/p5-Data-Page version 2.00abs3-0/+36
When searching through large amounts of data, it is often the case that a result set is returned that is larger than we want to display on one page. This results in wanting to page through various pages of data. The maths behind this is unfortunately fiddly, hence this module. The main concept is that you pass in the number of total entries, the number of entries per page, and the current page number. You can then call methods to find out how many pages of information there are, and what number the first and last entries on the current page really are.
2008-07-14Added devel/p5-Config-Any version 0.12abs3-0/+26
Load configuration from different file formats, transparently
2008-07-14Added devel/p5-Class-ISA version 0.33abs3-0/+28
This library, Class::ISA, provides functions that return the list (in order) of names of classes Perl would search to find a method, with no duplicates. WWW: http://search.cpan.org/dist/Class-ISA/
2008-07-14Added devel/p5-Class-Data-Accessor version 0.04002abs3-0/+31
Class::Data::Accessor is the marriage of Class::Accessor and Class::Data::Inheritable into a single module. It is used for creating accessors to class data that overridable in subclasses as well as in class instances. WWW: http://search.cpan.org/dist/Class-Data-Accessor/
2008-07-14Added devel/p5-Class-C3-Componentised version 1.0003abs3-0/+34
This will inject base classes to your module using the Class::C3 method resolution order. Please note: these are not plugins that can take precedence over methods declared in MyModule. If you want something like that, consider MooseX::Object::Pluggable. WWW: http://search.cpan.org/dist/Class-C3-Componentised/
2008-07-14Added devel/p5-Class-Base version 0.03abs3-0/+42
This module implements a simple base class from which other modules can be derived, thereby inheriting a number of useful methods such as new(), init(), params(), clone(), error() and debug(). For a number of years, I found myself re-writing this module for practically every Perl project of any significant size. Or rather, I would copy the module from the last project and perform a global search and replace to change the names. Each time it got a little more polished and eventually, I decided to Do The Right Thing and release it as a module in it's own right. It doesn't pretend to be an all-encompassing solution for every kind of object creation problem you might encounter. In fact, it only supports blessed hash references that are created using the popular, but by no means universal convention of calling new() with a list or reference to a hash array of named parameters. Constructor failure is indicated by returning undef and setting the $ERROR package variable in the module's class to contain a relevant message (which you can also fetch by calling error() as a class method).
2008-07-14Updated audio/py-karaoke to 0.6wiz1-1/+2
2008-07-14Update to 0.6:wiz3-9/+11
PyKaraoke now works together with WxPython v2.8. Users with WxPython v2.6 are, however, still supported. There are also some other minor changes to the layout of the search results page, a change to the scrolling behaviour, and improved handling of corrupt CDG rip files. There are now vastly more options available on the Configure page.
2008-07-14Note the end of the freeze in preparation for the pkgsrc-2008Q2 branchagc1-1/+2
2008-07-14Updated mail/p5-Email-MIME-Creator to 1.454abs2-6/+6
1.454 2007-07-14 fix some spurious "Date" headers in badly-written tests 1.453 2007-04-19 fix a bizarre test that broke on some OSes (at least some Win32's) thanks to "chris" for the report! 1.452 2007-03-22 packaging improvements 1.451 2006-08-04 require Email::MIME::Modifier 1.440 to avoid bug 1.45 2006-07-06 better detection of non-7bit parts don't base64-encode 7bit parts
2008-07-14assume maintainershipplunky2-7/+9
update to v1.4.9 add BUILD_DEFS to quiet pkglint warning
2008-07-14+ ast-ksh-20080624 [pkg/37854], cgicc-3.2.7, clisp-2.46,wiz1-16/+42
deskbar-applet-2.22.3, electric-8.07, eog-2.22.3, epiphany-2.22.3, evolution-2.22.3.1, file-roller-2.22.4, gail-1.22.3, gdm-2.20.7, glib2-2.16.4, glibmm-2.16.4, glpk-4.29, gnome-applets-2.22.3, gnome-games-2.22.3, gnome-keyring-2.22.3, gnome-mag-0.15.1, gnome-system-monitor-2.22.3, gnutls-2.4.1, gsasl-0.2.27, gtk2+-2.12.11, gtk2-engines-2.14.3, guile-gnome-2.16.1, gv-3.6.5, libgtop2-2.22.3, libidn-1.9, modular-xorg-server-1.4.99.905, nautilus-2.22.4, opera-9.51, orca-2.22.3, p5-glib2-1.183, p5-gtk2-1.183, pango-1.20.5, raine-0.50.14, rhythmbox-0.11.6, rp-pppoe-3.10, seahorse-2.22.3, tuxpaint-0.9.20, wireshark-1.0.1, worker-2.16.4.
2008-07-14drop checksums for removed patches.tnn1-5/+1
2008-07-14It's BUILDLINK_ABI_DEPENDS, not BUiLDLINK_ABI_DEPENDStnn1-2/+2
pkglint is your friend.
2008-07-14Fix PLIST.tnn1-3/+1