aboutsummaryrefslogtreecommitdiff
path: root/databases/p5-Class-DBI-Loader
Commit message (Collapse)AuthorAgeFilesLines
* One more small cleanup, forgotten yesterday.Mathieu Arnold2021-04-071-1/+0
| | | | Reported by: lwhsu
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Remove Created by lines where I am the one.Mathieu Arnold2019-05-201-1/+0
| | | | Notes: svn path=/head/; revision=502104
* - Add LICENSEDmitry Marakasov2019-01-051-1/+5
| | | | | | | | | | - Add NO_ARCH - Switch to options helpers Approved by: portmgr blanket Notes: svn path=/head/; revision=489308
* Remove all := from BUILD_DEPENDS, here are never needed.Mathieu Arnold2018-07-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | While there, cleanup, and sort depends. When build and run dependencies are the same, there are three ways to avoid duplicating the list while not adding the framework added BUILD_DEPENDS to the RUN_DEPENDS. In order of preference, they are: 1) use RUN_DEPENDS to set BUILD_DEPENDS: BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= foo:bar/baz 2) create another variable and use it: MY_DEPENDS= foo:bar/baz BUILD_DEPENDS= ${MY_DEPENDS} RUN_DEPENDS= ${MY_DEPENDS} 3) use BUILD_DEPENDS to set RUN_DEPENDS and force evaluation: BUILD_DEPENDS= foo:bar/baz RUN_DEPENDS:= ${BUILD_DEPENDS} Sponsored by: Absolight Notes: svn path=/head/; revision=474242
* Update WWWSunpoet Po-Chuan Hsieh2018-05-271-1/+1
| | | | | | | | | | search.cpan.org is shutting down. It will redirect to metacpan.org after June 25, 2018. With hat: perl Notes: svn path=/head/; revision=470993
* - Fix trailing whitespace in pkg-descrs, categories [a-f]*Dmitry Marakasov2016-05-191-3/+3
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=415498
* Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.Mathieu Arnold2016-04-011-6/+6
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412346
* Some OCD cleanups on some of the perl@ ports.Adam Weinberger2015-03-122-18/+8
| | | | | | | | | | | | | | | | - Remove dependencies in core - Put testing depends in TEST_DEPENDS - Remove unnecessary bsd.port.options.mk inclusions - Remove checks for Perl versions that no longer exist in the ports tree - Sort plists, some of which were so jumbled that I have to assume the plist was randomized before committing A lot of the plist changes in this commit are moving PERL5_MAN3 after SITE_PERL. It's repo churn now, but it makes updating the ports later far easier. Notes: svn path=/head/; revision=381151
* Change the way Perl modules are installed, update the default Perl to 5.18.Mathieu Arnold2014-11-262-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before, we had: site_perl : lib/perl5/site_perl/5.18 site_perl/perl_arch : lib/perl5/site_perl/5.18/mach perl_man3 : lib/perl5/5.18/man/man3 Now we have: site_perl : lib/perl5/site_perl site_arch : lib/perl5/site_perl/mach/5.18 perl_man3 : lib/perl5/site_perl/man/man3 Modules without any .so will be installed at the same place regardless of the Perl version, minimizing the upgrade when the major Perl version is changed. It uses a version dependent directory for modules with compiled bits. As PERL_ARCH is no longer needed in plists, it has been removed from PLIST_SUB. The USE_PERL5=fixpacklist keyword is removed, the .packlist file is now always removed, as is perllocal.pod. The old site_perl and site_perl/arch directories have been kept in the default Perl @INC for all Perl ports, and will be phased out as these old Perl versions expire. PR: 194969 Differential Revision: https://reviews.freebsd.org/D1019 Exp-run by: antoine Reviewed by: perl@ Approved by: portmgr Notes: svn path=/head/; revision=373448
* Cleanup plistBaptiste Daroussin2014-10-201-6/+0
| | | | Notes: svn path=/head/; revision=371255
* Support STAGEDIR.Vanilla I. Shu2013-11-032-12/+9
| | | | Notes: svn path=/head/; revision=332592
* Try and be consistent with what commands are silent and not in *install.Mathieu Arnold2013-10-222-5/+2
| | | | | | | | | | | | | | - MKDIR is silent - ECHO is silent - INSTALL_* are not silent - CP/FIND/... are not silent I fixed a few PORTDOCS misusage, I'll do a second pass. With Hat: perl@ Notes: svn path=/head/; revision=331301
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | databases) Notes: svn path=/head/; revision=327717
* - Add WWWSunpoet Po-Chuan Hsieh2013-08-291-1/+0
| | | | | | | | - Use single space after WWW: - Remove Author line Notes: svn path=/head/; revision=325610
* - Convert to new perl frameworkMathieu Arnold2013-08-021-6/+3
| | | | | | | | - Trim Makefile header - Remove MAKE_JOBS_SAFE=yes, it's the default. Notes: svn path=/head/; revision=324174
* - Convert all remaining instances of BUILD_DEPENDS=${RUN_DEPENDS} orSteve Wills2012-06-101-1/+1
| | | | | | | | | | | RUN_DEPENDS=${BUILD_DEPENDS} to use := which portlint has warned about for a while. PR: ports/168208 Approved by: portmgr (miwi) Notes: svn path=/head/; revision=298970
* Convert to new options frameworkBaptiste Daroussin2012-05-311-11/+9
| | | | Notes: svn path=/head/; revision=297871
* The vast majority of pkg-descr files had the following format when theyDoug Barton2011-10-241-1/+1
| | | | | | | | | | | | | | | | | | | had both lines: Author: ... WWW: .... So standardize on that, and move them to the end of the file when necessary. Also fix some more whitespace, and remove more "signature tags" of varying forms, like -- name, etc. s/AUTHOR/Author/ A few other various formatting issues Notes: svn path=/head/; revision=284239
* - Replace ../../authors in MASTER_SITE_SUBDIR with CPAN:CPANID macro.Andrej Zverev2011-06-201-1/+1
| | | | | | | | | See http://wiki.freebsd.org/Perl for details. - Change maintainership from ports@ to perl@ for ports in this changeset. - Remove MD5 checksum Notes: svn path=/head/; revision=275886
* - Get Rid MD5 supportMartin Wilke2011-03-201-1/+0
| | | | Notes: svn path=/head/; revision=271346
* - remove Text::Balanced dependencyYen-Ming Lee2009-12-021-8/+7
| | | | | | | - bump PORTREVISION Notes: svn path=/head/; revision=245134
* Reset lbr@FreeBSD.org due to maintainer-timeouts and no response to email.Mark Linimon2009-08-161-1/+1
| | | | | | | Hat: portmgr Notes: svn path=/head/; revision=239640
* Welcome bsd.perl.mk. Add support for constructs such as USE_PERL5=5.8.0+.Mark Linimon2007-09-081-4/+0
| | | | | | | | | | | Drop support for antique perl. Work done by: gabor Sponsored by: Google Summer of Code 2007 Hat: portmgr Notes: svn path=/head/; revision=199069
* Update to 0.34Lars Balker Rasmussen2007-04-252-5/+5
| | | | | | | | PR: 112110 Submitted by: Ying-Chieh Liao <ijliao@csie.nctu.edu.tw> Notes: svn path=/head/; revision=190881
* - Update from v0.32 to v0.33Lars Balker Rasmussen2006-06-024-15/+19
| | | | | | | | | | | | | | | - Clean up Makefile and portlint errors - Update pkg-plist to respect NOPORTDOCS 0.33 - Implement the 'require' parameter. Suggested by esh at exile.ru PR: 98181 Submitted by: aaron Approved by: erwin (mentor, implicit, seeing spots) Notes: svn path=/head/; revision=164225
* Make dependencies added in 1.18 optional.Lars Balker Rasmussen2006-05-191-4/+15
| | | | | | | | Submitted by: kuriyama Approved by: erwin (mentor) Notes: svn path=/head/; revision=162762
* Changing email-address on my 80 ports.Lars Balker Rasmussen2006-05-011-1/+1
| | | | | | | Approved by: erwin (mental) Notes: svn path=/head/; revision=161060
* Fix breakage. Third time's the charm.Lars Balker Rasmussen2006-04-301-3/+3
| | | | | | | Approved by: erwin (mentor) Notes: svn path=/head/; revision=160911
* Whitespace snuck in after \..Lars Balker Rasmussen2006-04-301-1/+1
| | | | | | | Approved by: erwin (mentor) Notes: svn path=/head/; revision=160903
* add missing dependenciesLars Balker Rasmussen2006-04-301-1/+5
| | | | | | | | | PR: ports/96423 Submitted by: Fernan Aguero <fernan@iib.unsam.edu.ar> Approved by: erwin (mentor) Notes: svn path=/head/; revision=160902
* - Update to 0.32Lars Thegler2006-03-282-5/+5
| | | | | | | | | | | - Assign maintainership to submitter PR: ports/92865 Submitted by: Lars Balker Rasmussen <lars@balker.dk> Approved by: mat Notes: svn path=/head/; revision=158325
* - Update to 0.29Erwin Lansing2006-01-312-9/+5
| | | | | | | | | | | - Mark for perl 5.6.0 or higher. PR: 92621 Submitted by: Lars Balker Rasmussen <lars@balker.dk> Approved by: mat Notes: svn path=/head/; revision=154910
* SHA256ifyEdwin Groothuis2006-01-221-0/+1
| | | | | | | Approved by: krion@ Notes: svn path=/head/; revision=154141
* Replace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtryEdwin Groothuis2006-01-221-4/+4
| | | | | | | | Approved by: krion@ PR: ports/88711 (related) Notes: svn path=/head/; revision=154109
* Update to 0.22Mathieu Arnold2005-06-202-3/+3
| | | | | | | Submitted by: Lars Balker Rasmussen <lars balker dk> Notes: svn path=/head/; revision=137762
* Update to 0.20Lars Thegler2005-05-042-3/+3
| | | | | | | Approved by: mat (blanket) Notes: svn path=/head/; revision=134587
* Update to 0.19Mathieu Arnold2005-04-202-3/+3
| | | | Notes: svn path=/head/; revision=133762
* Update to 0.17Mathieu Arnold2005-03-142-3/+3
| | | | Notes: svn path=/head/; revision=131184
* Update to 0.16Mathieu Arnold2005-02-213-3/+4
| | | | Notes: svn path=/head/; revision=129497
* Update to 0.14Mathieu Arnold2005-02-082-4/+3
| | | | Notes: svn path=/head/; revision=128264
* Update to 1.12Mathieu Arnold2005-01-282-3/+3
| | | | Notes: svn path=/head/; revision=127544
* Add a missing dependencyMathieu Arnold2005-01-131-1/+3
| | | | | | | Submitted by: Matt Adams <matt.adams@morcor.com> Notes: svn path=/head/; revision=126349
* Update to 0.11Mathieu Arnold2004-12-222-3/+3
| | | | Notes: svn path=/head/; revision=124823
* Update to 0.10Mathieu Arnold2004-12-202-3/+3
| | | | Notes: svn path=/head/; revision=124589
* Update to 0.05Mathieu Arnold2004-11-162-3/+12
| | | | Notes: svn path=/head/; revision=121764
* Update to 0.03Mathieu Arnold2004-07-132-3/+3
| | | | Notes: svn path=/head/; revision=113541
* Update to 0.02Mathieu Arnold2004-02-242-3/+3
| | | | Notes: svn path=/head/; revision=101971
* Add SIZE fieldMathieu Arnold2004-01-291-0/+1
| | | | Notes: svn path=/head/; revision=99406
* Conditionalise dependencies on databases/p5-DBI: for perlErwin Lansing2003-09-161-3/+12
| | | | | | | | | | | | | | 5.005_03 use databases/p5-DBI-137 as newer versions do not support the old perl. Note that for some port, I merely removed the explicit dependency as they already have implicit dependencies via other ports. Approved by: portmgr (marcus) Notes: svn path=/head/; revision=89001