2009-11-11 21:55:37 +01:00
|
|
|
# $NetBSD: Makefile,v 1.11 2009/11/11 20:55:37 seb Exp $
|
2006-02-25 01:23:56 +01:00
|
|
|
|
2009-11-11 21:55:37 +01:00
|
|
|
DISTNAME= PathTools-3.31
|
2006-02-25 01:23:56 +01:00
|
|
|
PKGNAME= p5-${DISTNAME}
|
|
|
|
CATEGORIES= devel perl5
|
|
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=File/}
|
|
|
|
|
2008-07-20 18:09:34 +02:00
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
2006-02-25 01:23:56 +01:00
|
|
|
HOMEPAGE= http://search.cpan.org/dist/PathTools/
|
|
|
|
COMMENT= Perl module for portably manipulating file specifications
|
2009-05-17 16:47:12 +02:00
|
|
|
LICENSE= gnu-gpl-v2 # OR artistic
|
2006-02-25 01:23:56 +01:00
|
|
|
|
Update p5-PathTools to 3.27.
3.27
- If strlcpy() and strlcat() aren't available on the user's system,
we now use ppport.h to provide them, so our C code works. [Steve
Peters]
- Upgraded to a newer version of ppport.h [Steve Peters]
3.26 - Sun Jan 13 21:59:20 2008
- case_tolerant() on Cygwin will now avoid a painful death when
Cygwin::mount_flags() isn't defined, as is the case for perl <
5.10. It will now just return 1, which is what it always did
before it got so smart. [Spotted by Emanuele Zeppieri]
- abs_path() on Unix(ish) platforms has been upgraded to a much later
version of the underlying C code from BSD. [Michael Schwern]
3.2501 - Mon Dec 24 20:33:02 2007
- Reimplemented abs_path() on VMS to use
VMS::Filespec::vms_realpath() when it's available. [John E. Malmberg]
- tmpdir() on Cygwin now also looks in $ENV{TMP} and $ENV{TEMP}.
- case_tolerant() on Cygwin and Win32 now take an optional path
argument, defaulting to the C drive, to check for case tolerance,
because this fact can vary on different volumes.
- File::Spec on Unix now uses Cwd::getcwd() rather than Cwd::cwd() to
get the current directory because I guess someone on p5p thought it
was more appropriate.
- Added a large set of File::Spec tests for the Cygwin platform.
- abs_path() now behaves correctly with symbolic links on VMS.
- Someone fixed a couple of mysterious edge cases in VMS' canonpath()
and splitdir().
3.25_01 - Sat Oct 13 21:13:57 2007
- Major fixes on Win32, including a rewrite of catdir(), catfile(),
and canonpath() in terms of a single body of code. [Heinrich Tegethoff]
- For Win32 and Cygwin, case-tolerance can vary depending on the
volume under scrutiny. When Win32API::File is available, it will
be employed to determine case-sensitivity of the given filesystem
(C: by default), otherwise we still return the default of 1. [Reini
Urban]
- On Cygwin, we added $ENV{'TMP'} and $ENV{'TEMP'} to the list of
possible places to look for tmpdir() return values. [Reini Urban]
- Added lots more tests for Cygwin. [Reini Urban]
- canonpath() with no arguments and canonpath(undef) now consistently
return undef on all platforms. [Spotted by Peter John Edwards]
- Fixed splitdir('') and splitdir(undef) and splitdir() to return an
empty list on VMS and MacOS, like it does on other platforms.
[Craig A. Berry]
- All .pm files now have the same $VERSION number, rather than a
hodgepodge of various numbers.
2008-02-05 12:02:22 +01:00
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
|
2009-04-24 19:15:21 +02:00
|
|
|
DEPENDS+= {perl>=5.10,p5-Scalar-List-Utils>=1.14}:../../devel/p5-Scalar-List-Utils
|
2006-02-25 01:23:56 +01:00
|
|
|
|
2007-01-11 14:02:48 +01:00
|
|
|
CONFLICTS+= p5-File-Spec-[0-9]*
|
|
|
|
|
2006-02-25 01:23:56 +01:00
|
|
|
CONFIGURE_ARGS+= DEFINE="-DHAS_GETCWD"
|
|
|
|
|
|
|
|
PERL5_PACKLIST= auto/Cwd/.packlist
|
|
|
|
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|