mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
Support STAGEDIR.
This commit is contained in:
parent
d96f8f3e29
commit
d3a86a7bd9
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=332840
@ -11,24 +11,16 @@ MAINTAINER= perl@FreeBSD.org
|
||||
COMMENT= Perl class to interface generic modems (AT-compliant)
|
||||
|
||||
BUILD_DEPENDS= p5-Device-SerialPort>=0:${PORTSDIR}/comms/p5-Device-SerialPort
|
||||
RUN_DEPENDS= p5-Device-SerialPort>=0:${PORTSDIR}/comms/p5-Device-SerialPort
|
||||
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
||||
|
||||
USES= perl5
|
||||
USE_PERL5= configure
|
||||
|
||||
MAN3= Device::Modem.3 \
|
||||
Device::Modem::FAQ.3 \
|
||||
Device::Modem::Log::File.3 \
|
||||
Device::Modem::Log::Syslog.3 \
|
||||
Device::Modem::Protocol::Xmodem.3 \
|
||||
Device::Modem::UsRobotics.3
|
||||
|
||||
NO_STAGE= yes
|
||||
post-install:
|
||||
.ifndef(NOPORTEXAMPLES)
|
||||
@${ECHO_MSG} "===> Installing examples for ${PKGNAME}"
|
||||
@${MKDIR} ${EXAMPLESDIR}
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/examples/*.pl ${EXAMPLESDIR}
|
||||
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/examples/*.pl ${STAGEDIR}${EXAMPLESDIR}
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,9 +1,15 @@
|
||||
%%PERL5_MAN3%%/Device::Modem.3.gz
|
||||
%%PERL5_MAN3%%/Device::Modem::FAQ.3.gz
|
||||
%%PERL5_MAN3%%/Device::Modem::Log::File.3.gz
|
||||
%%PERL5_MAN3%%/Device::Modem::Log::Syslog.3.gz
|
||||
%%PERL5_MAN3%%/Device::Modem::Protocol::Xmodem.3.gz
|
||||
%%PERL5_MAN3%%/Device::Modem::UsRobotics.3.gz
|
||||
%%SITE_PERL%%/Device/Modem.pm
|
||||
%%SITE_PERL%%/Device/Modem/FAQ.pod
|
||||
%%SITE_PERL%%/Device/Modem/Log/File.pm
|
||||
%%SITE_PERL%%/Device/Modem/Log/Syslog.pm
|
||||
%%SITE_PERL%%/Device/Modem/Protocol/Xmodem.pm
|
||||
%%SITE_PERL%%/Device/Modem/UsRobotics.pm
|
||||
%%SITE_PERL%%/Device/Modem.pm
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/Device/Modem/.packlist
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/active.pl
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/caller-id.pl
|
||||
@ -11,9 +17,9 @@
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/shell.pl
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/xmodem.pl
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
|
||||
@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Device/Modem
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Device/Modem
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Device
|
||||
@dirrm %%SITE_PERL%%/Device/Modem/Protocol
|
||||
@dirrm %%SITE_PERL%%/Device/Modem/Log
|
||||
@dirrm %%SITE_PERL%%/Device/Modem
|
||||
@dirrmtry %%SITE_PERL%%/Device/Modem/Protocol
|
||||
@dirrmtry %%SITE_PERL%%/Device/Modem/Log
|
||||
@dirrmtry %%SITE_PERL%%/Device/Modem
|
||||
@dirrmtry %%SITE_PERL%%/Device
|
||||
|
@ -14,8 +14,4 @@ COMMENT= Perl5 module for simple serial port control
|
||||
USES= perl5
|
||||
USE_PERL5= configure
|
||||
|
||||
MAN1= modemtest.1
|
||||
MAN3= Device::SerialPort.3
|
||||
|
||||
NO_STAGE= yes
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,8 +1,10 @@
|
||||
bin/modemtest
|
||||
%%PERL5_MAN3%%/Device::SerialPort.3.gz
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/Device/SerialPort.pm
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/Device/SerialPort/.packlist
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/Device/SerialPort/SerialPort.bs
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/Device/SerialPort/SerialPort.so
|
||||
man/man1/modemtest.1.gz
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Device/SerialPort
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Device
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Device
|
||||
|
@ -11,12 +11,9 @@ MAINTAINER= perl@FreeBSD.org
|
||||
COMMENT= Simple Perl client for the HylaFAX fax server
|
||||
|
||||
BUILD_DEPENDS= p5-Net>=0:${PORTSDIR}/net/p5-Net
|
||||
RUN_DEPENDS= p5-Net>=0:${PORTSDIR}/net/p5-Net
|
||||
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
||||
|
||||
USES= perl5
|
||||
USE_PERL5= configure
|
||||
|
||||
MAN3= Fax::Hylafax::Client.3
|
||||
|
||||
NO_STAGE= yes
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,7 +1,8 @@
|
||||
%%PERL5_MAN3%%/Fax::Hylafax::Client.3.gz
|
||||
%%SITE_PERL%%/Fax/Hylafax/Client.pm
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/Fax/Hylafax/Client/.packlist
|
||||
@dirrmtry %%SITE_PERL%%/Fax/Hylafax
|
||||
@dirrmtry %%SITE_PERL%%/Fax
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Fax/Hylafax/Client
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Fax/Hylafax
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Fax
|
||||
@dirrmtry %%SITE_PERL%%/Fax/Hylafax
|
||||
@dirrmtry %%SITE_PERL%%/Fax
|
||||
|
Loading…
Reference in New Issue
Block a user