aboutsummaryrefslogtreecommitdiffstats
path: root/ftp/p5-Net-FTPServer/Makefile
blob: da1981a6fafaf591a4b1b04e0b8a25ab222afa8a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# Created by: ijliao
# $FreeBSD$

PORTNAME=   Net-FTPServer
PORTVERSION=    1.125
CATEGORIES= ftp perl5
MASTER_SITES=   CPAN
PKGNAMEPREFIX=  p5-

MAINTAINER= perl@FreeBSD.org
COMMENT=    Full-featured, secure, extensible, and configurable Perl FTP server

RUN_DEPENDS=    p5-Archive-Zip>=0:${PORTSDIR}/archivers/p5-Archive-Zip \
        p5-Authen-PAM>=0:${PORTSDIR}/security/p5-Authen-PAM \
        p5-BSD-Resource>=0:${PORTSDIR}/devel/p5-BSD-Resource \
        p5-DBI>=0:${PORTSDIR}/databases/p5-DBI \
        p5-File-Sync>=0:${PORTSDIR}/devel/p5-File-Sync \
        p5-IO-stringy>=1.126:${PORTSDIR}/devel/p5-IO-stringy
BUILD_DEPENDS:= ${RUN_DEPENDS}

MAKE_ENV+=  NOCONF=1
USES=       perl5
USE_PERL5=  configure

SUB_FILES=  pkg-message

MAN3=   Net::FTPServer.3 \
    Net::FTPServer::DBeg1::DirHandle.3 \
    Net::FTPServer::DBeg1::FileHandle.3 \
    Net::FTPServer::DBeg1::IOBlob.3 \
    Net::FTPServer::DBeg1::Server.3 \
    Net::FTPServer::DirHandle.3 \
    Net::FTPServer::FileHandle.3 \
    Net::FTPServer::Full::DirHandle.3 \
    Net::FTPServer::Full::FileHandle.3 \
    Net::FTPServer::Full::Server.3 \
    Net::FTPServer::Handle.3 \
    Net::FTPServer::InMem::DirHandle.3 \
    Net::FTPServer::InMem::FileHandle.3 \
    Net::FTPServer::InMem::Server.3 \
    Net::FTPServer::Proxy::DirHandle.3 \
    Net::FTPServer::Proxy::FileHandle.3 \
    Net::FTPServer::Proxy::Server.3 \
    Net::FTPServer::RO::DirHandle.3 \
    Net::FTPServer::RO::FileHandle.3 \
    Net::FTPServer::RO::Server.3

DOCS=   README TODO doc/*

PORTDOCS=   *
PORTEXAMPLES=   ftpd.conf

post-patch:
    @${REINPLACE_CMD} -e "s/root,root/root,wheel/" \
        -e "s,/usr/sbin,${PREFIX}/sbin," \
        ${WRKSRC}/package/Net-FTPServer.spec.PL
    @${REINPLACE_CMD} -e "s/-g root/-g wheel/" \
        -e "s,$$.PREFIX./sbin,${PREFIX}/sbin," \
        -e "s,$$.SITEPREFIX./sbin,${PREFIX}/sbin," \
        ${WRKSRC}/Makefile.PL

post-install:
.if !defined(NOPORTEXAMPLES)
    @${MKDIR} ${EXAMPLESDIR}
    @${INSTALL_DATA} ${WRKSRC}/etc/ftpd.conf ${EXAMPLESDIR}
.endif
.if !defined(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
    cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
.endif
    @${CAT} ${PKGMESSAGE}

.include <bsd.port.mk>