195df866ab
- Add various options - Fix depends - Improve depends based on options PR: ports/167017 Submitted by: akrus <akrus@flygroup.st> Approved by: Veniamin Gvozdikov <g.veniamin@googlemail.com> (maintainer)
128 lines
4.3 KiB
Makefile
128 lines
4.3 KiB
Makefile
# New ports collection makefile for: p5-FusionInventory-Agent
|
|
# Date created: 2011-08-18
|
|
# Whom: Gvozdikov Veniamin <g.veniamin@googlemail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= FusionInventory-Agent
|
|
PORTVERSION= 2.2.5
|
|
CATEGORIES= net-mgmt
|
|
MASTER_SITES= CPAN
|
|
MASTER_SITE_SUBDIR= CPAN:FUSINV
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= g.veniamin@googlemail.com
|
|
COMMENT= Agent for OCS Inventory server and FusionInventory for GLPI servers
|
|
|
|
OPTIONS= CUPS "Enable CUPS" OFF \
|
|
HTTP "Enable HTTP daemon mode" OFF \
|
|
ZLIB "Enable Zlib compression" ON \
|
|
SSL "Enable SSL" OFF \
|
|
DMIDECODE "Enable dmidecode hardware information" ON \
|
|
PCIUTILS "Enable pciutils hardware information" ON \
|
|
NMAP "Enable NMAP network inventory" OFF
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USE_GMAKE= yes
|
|
|
|
BUILD_DEPENDS= p5-Text-Template>=0:${PORTSDIR}/textproc/p5-Text-Template \
|
|
p5-ExtUtils-MakeMaker>=6.59:${PORTSDIR}/devel/p5-ExtUtils-MakeMaker \
|
|
p5-UNIVERSAL-require>=0:${PORTSDIR}/devel/p5-UNIVERSAL-require \
|
|
p5-Net-IP>=0:${PORTSDIR}/net-mgmt/p5-Net-IP \
|
|
p5-Digest-MD5>=0:${PORTSDIR}/security/p5-Digest-MD5 \
|
|
p5-XML-TreePP>=0:${PORTSDIR}/textproc/p5-XML-TreePP \
|
|
p5-libwww>=0:${PORTSDIR}/www/p5-libwww \
|
|
p5-File-Which>=0:${PORTSDIR}/sysutils/p5-File-Which
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
TEST_DEPENDS= p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception \
|
|
p5-Test-MockModule>=0:${PORTSDIR}/devel/p5-Test-MockModule \
|
|
p5-HTTP-Server-Simple>=0:${PORTSDIR}/www/p5-HTTP-Server-Simple \
|
|
p5-HTTP-Server-Simple-Authen>=0:${PORTSDIR}/www/p5-HTTP-Server-Simple-Authen \
|
|
p5-HTTP-Proxy>=0:${PORTSDIR}/www/p5-HTTP-Proxy \
|
|
p5-IPC-Run>=0:${PORTSDIR}/devel/p5-IPC-Run \
|
|
p5-YAML>=0:${PORTSDIR}/textproc/p5-YAML \
|
|
p5-IO-Capture>=0:${PORTSDIR}/devel/p5-IO-Capture \
|
|
|
|
PERL_CONFIGURE= yes
|
|
|
|
MAN1= fusioninventory-agent.1 \
|
|
fusioninventory-injector.1
|
|
MAN3= FusionInventory::Agent.3 \
|
|
FusionInventory::Agent::Config.3 \
|
|
FusionInventory::Agent::HTTP::Client.3 \
|
|
FusionInventory::Agent::HTTP::Client::Fusion.3 \
|
|
FusionInventory::Agent::HTTP::Client::OCS.3 \
|
|
FusionInventory::Agent::HTTP::Protocol::https.3 \
|
|
FusionInventory::Agent::HTTP::Server.3 \
|
|
FusionInventory::Agent::Logger.3 \
|
|
FusionInventory::Agent::Logger::Backend.3 \
|
|
FusionInventory::Agent::Logger::File.3 \
|
|
FusionInventory::Agent::Logger::Stderr.3 \
|
|
FusionInventory::Agent::Logger::Syslog.3 \
|
|
FusionInventory::Agent::Scheduler.3 \
|
|
FusionInventory::Agent::Storage.3 \
|
|
FusionInventory::Agent::Target.3 \
|
|
FusionInventory::Agent::Target::Local.3 \
|
|
FusionInventory::Agent::Target::Server.3 \
|
|
FusionInventory::Agent::Target::Stdout.3 \
|
|
FusionInventory::Agent::Task.3 \
|
|
FusionInventory::Agent::Task::Inventory.3 \
|
|
FusionInventory::Agent::Task::Inventory::Inventory.3 \
|
|
FusionInventory::Agent::Task::WakeOnLan.3 \
|
|
FusionInventory::Agent::Tools.3 \
|
|
FusionInventory::Agent::Tools::AIX.3 \
|
|
FusionInventory::Agent::Tools::Generic.3 \
|
|
FusionInventory::Agent::Tools::HPUX.3 \
|
|
FusionInventory::Agent::Tools::Hostname.3 \
|
|
FusionInventory::Agent::Tools::Linux.3 \
|
|
FusionInventory::Agent::Tools::MacOS.3 \
|
|
FusionInventory::Agent::Tools::Network.3 \
|
|
FusionInventory::Agent::Tools::Screen.3 \
|
|
FusionInventory::Agent::Tools::Solaris.3 \
|
|
FusionInventory::Agent::Tools::Unix.3 \
|
|
FusionInventory::Agent::Tools::Win32.3 \
|
|
FusionInventory::Agent::XML::Query.3 \
|
|
FusionInventory::Agent::XML::Query::Inventory.3 \
|
|
FusionInventory::Agent::XML::Query::Prolog.3 \
|
|
FusionInventory::Agent::XML::Response.3
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_CUPS)
|
|
RUN_DEPENDS+= p5-Net-CUPS>=0.6:${PORTSDIR}/print/p5-Net-CUPS
|
|
.endif
|
|
|
|
.if defined(WITH_HTTP)
|
|
RUN_DEPENDS+= p5-HTTP-Daemon>=0:${PORTSDIR}/www/p5-HTTP-Daemon
|
|
.endif
|
|
|
|
.if defined(WITH_ZLIB)
|
|
RUN_DEPENDS+= p5-Compress-Raw-Zlib>=0:${PORTSDIR}/archivers/p5-Compress-Raw-Zlib
|
|
.endif
|
|
|
|
.if defined(WITH_SSL)
|
|
RUN_DEPENDS+= p5-Crypt-SSLeay>=0:${PORTSDIR}/security/p5-Crypt-SSLeay \
|
|
p5-LWP-Protocol-https>=0:${PORTSDIR}/www/p5-LWP-Protocol-https
|
|
.endif
|
|
|
|
.if defined(WITH_DMIDECODE)
|
|
RUN_DEPENDS+= dmidecode:${PORTSDIR}/sysutils/dmidecode
|
|
.endif
|
|
|
|
.if defined(WITH_PCIUTILS)
|
|
RUN_DEPENDS+= lspci:${PORTSDIR}/sysutils/pciutils
|
|
.endif
|
|
|
|
.if defined(WITH_NMAP)
|
|
RUN_DEPENDS+= nmap:${PORTSDIR}/security/nmap
|
|
.endif
|
|
|
|
post-patch-script:
|
|
@${ECHO_MSG} -n ">> Removing unneeded patched files..."
|
|
@${FIND} ${WRKSRC} -type f \( -name '*.orig' \) -delete
|
|
@${ECHO_MSG} " [ DONE ]"
|
|
|
|
.include <bsd.port.post.mk>
|