sysutils/rubygem-facter: add option to disable ZFS facts generation

PR:		191555
Submitted by:	Michael Moll <kvedulv@kvedulv.de>
Reviewed by:	demon
Approved by:	swills (mentor)
This commit is contained in:
Bartek Rutkowski 2014-07-16 08:33:56 +00:00
parent cb9ceb7969
commit 838bfabea5
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=362052

View File

@ -3,6 +3,7 @@
PORTNAME= facter
PORTVERSION= 2.1.0
PORTREVISION= 1
CATEGORIES= sysutils rubygems
MASTER_SITES= RG \
http://downloads.puppetlabs.com/facter/
@ -10,12 +11,20 @@ MASTER_SITES= RG \
MAINTAINER= robak@FreeBSD.org
COMMENT= Cross-platform Ruby library for retrieving facts from OS
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
USE_RUBY= yes
USE_RUBYGEMS= yes
RUBYGEM_AUTOPLIST= yes
PLIST_FILES= bin/facter
OPTIONS_DEFINE= ZFS_FACTS
ZFS_FACTS_DESC= Generate ZFS-related facts
OPTIONS_DEFAULT= ZFS_FACTS
.include <bsd.port.pre.mk>
# Restrict dmidecode dependency to Intel based systems
@ -23,4 +32,10 @@ PLIST_FILES= bin/facter
RUN_DEPENDS+= dmidecode:${PORTSDIR}/sysutils/dmidecode
.endif
post-patch:
.if empty(PORT_OPTIONS:MZFS_FACTS)
@${REINPLACE_CMD} -e '/\-\ lib\/facter\/zfs_version.rb/d' ${WRKSRC}/${GEM_NAME}.gemspec
@${REINPLACE_CMD} -e '/\-\ lib\/facter\/zpool_version.rb/d' ${WRKSRC}/${GEM_NAME}.gemspec
.endif
.include <bsd.port.post.mk>