mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-21 08:42:23 +00:00
2b4630d69f
- io('path/to/symlink') would return a file object if the link was to a file - $link->readlink incorrectly returned a new IO::All::Link object, no matter what the link pointed to. - io($io_all_object) would not return an object of the same type as the object give to io(), it would always return a plain IO::All object. - add head and tail methods
51 lines
1.2 KiB
Makefile
51 lines
1.2 KiB
Makefile
# New ports collection makefile for: IO::All
|
|
# Date created: 15 July 2004
|
|
# Whom: Elvis Chiang <elvis@sslab.cs.ccu.edu.tw>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= IO-All
|
|
PORTVERSION= 0.33
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
|
MASTER_SITE_SUBDIR= ../../authors/id/I/IN/INGY/
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= perl@FreeBSD.org
|
|
COMMENT= IO::All combines all of the best Perl IO modules
|
|
|
|
BUILD_DEPENDS= ${SITE_PERL}/Spiffy.pm:${PORTSDIR}/devel/p5-Spiffy
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
|
|
PERL_CONFIGURE= yes
|
|
|
|
MAN3= IO::All.3 \
|
|
IO::All::DBM.3 \
|
|
IO::All::Dir.3 \
|
|
IO::All::File.3 \
|
|
IO::All::Filesys.3 \
|
|
IO::All::Link.3 \
|
|
IO::All::MLDBM.3 \
|
|
IO::All::Pipe.3 \
|
|
IO::All::STDIO.3 \
|
|
IO::All::Socket.3 \
|
|
IO::All::String.3 \
|
|
IO::All::Temp.3
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PERL_LEVEL} < 500800
|
|
BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Filter/Util/Call.pm:${PORTSDIR}/devel/p5-Filter
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
.endif
|
|
.if ${PERL_LEVEL} < 500703
|
|
BUILD_DEPENDS+= ${SITE_PERL}/Tie/File.pm:${PORTSDIR}/devel/p5-Tie-File
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
.endif
|
|
.if ${PERL_LEVEL} < 500601
|
|
IGNORE= This port requires perl 5.6.1 or later. Install lang/perl then try again
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|