summaryrefslogtreecommitdiff
path: root/devel/p5-OOTools/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2010-08-21Bump the PKGREVISION for all packages which depend directly on perl,seb1-2/+2
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1. The list of packages is computed by finding all packages which end up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl, or PERL5_PACKLIST defined in their make setup (tested via "make show-vars VARNAMES=..."), minus the packages updated after the perl package update. sno@ was right after all, obache@ kindly asked and he@ led the way. Thanks!
2008-10-19Bump the PKGREVISION for all packages which depend directly on perl,he1-1/+2
to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0. The list of packages is computed by finding all packages which end up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl, or PERL5_PACKLIST defined in their make setup (tested via "make show-vars VARNAMES=...").
2008-06-12Add DESTDIR support.joerg1-1/+2
2005-10-18Update OOTools to version 2.21. This closes PR 31678 from Zafer Aydogan.hiramatsu1-3/+2
Changes from 1.75(doesn't include minor fixes): Version 2.21 - Little documentation improvement Version 2.2 - Added Package::props and Package::groups pragmas - Added improved tests Version 2.12 - Fixed the Class::Util::import function Version 2.11 - Changed the Class::Util::classes function Version 2.1 - Added the Class::Util::gather function plus tests - Added the Class::Util::classes function plus tests - Added the Class::Util::blessed function plus tests Version 2.0 - Added the Class::Error module and tests - Added the Class::Util module and tests - Added the 'skip_autoload' option to Class::constr pragma - You can also pass an HASH reference to the constr method Version 1.79 - A test addition Version 1.78 - The properties defined with a group get initialized just once - Some testing addition and rewrite Version 1.77 - Added 'default' option to the Class::constr pragma plus tests - Added possibility to get a slice of values from groups accessors - Added $_ aliasing for the post_process option Version 1.76 - Added add_to() method to add props and groups accessors in other packages - Added post_process() option to props accessors
2005-08-06Bump the PKGREVISIONs of all (638) packages that hardcode the locationsjlam1-2/+2
of Perl files to deal with the perl-5.8.7 update that moved all pkgsrc-installed Perl files into the "vendor" directories.
2005-07-13Turn PERL5_PACKLIST into a relative path instead of an absolute path.jlam1-2/+2
These paths are now relative to PERL5_PACKLIST_DIR, which currently defaults to ${PERL5_SITEARCH}. There is no change to the binary packages.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2004-12-20since perl is now built with threads on most platforms, the perl archlibgrant1-1/+2
module directory has changed (eg. "darwin-2level" vs. "darwin-thread-multi-2level"). binary packages of perl modules need to be distinguishable between being built against threaded perl and unthreaded perl, so bump the PKGREVISION of all perl module packages and introduce BUILDLINK_RECOMMENDED for perl as perl>=5.8.5nb5 so the correct dependencies are registered and the binary packages are distinct. addresses PR pkg/28619 from H. Todd Fujinaka.
2004-10-23Import p5-OOTools from pkgsrc-wip. Packaged by Hiramatsu Yoshifumi.minskim1-0/+19
OOTools is a collection of pragmas to easily create constructors methods and lvalue accessor methods at compile time. OOTools distribution includes: Class::constr Pragma to implement constructor methods Class::props Pragma to implement lvalue accessors with options Class::group Pragma to implement group of properties accessors with options Object::props Pragma to implement lvalue accessors with options Object::group Pragma to implement group of properties accessors with options