freebsd-ports/sysutils/firstboot-freebsd-update/Makefile
Glen Barber 0dd076723f To prevent fallout of lowering __FreeBSD_version in releng/10.0 branch,
adjust OSVERSION evaluation in ports that specifically use '100050N'.

Approved by:	affected maintainers (implicit)
Sponsored by:	The FreeBSD Foundation
2013-12-07 10:50:23 +00:00

26 lines
668 B
Makefile

# $FreeBSD$
PORTNAME= firstboot-freebsd-update
PORTVERSION= 1.1
CATEGORIES= sysutils
MASTER_SITES= # none
DISTFILES= # none
MAINTAINER= cperciva@FreeBSD.org
COMMENT= Update the system using freebsd-update when it first boots
NO_WRKSUBDIR= yes
NO_BUILD= yes
USE_RC_SUBR= firstboot_freebsd_update
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 902504 || ( ${OSVERSION} >= 1000000 && ${OSVERSION} < 1000100 ) || ( ${OSVERSION} >= 1000500 && ${OSVERSION} < 1000501 ) || (${OSVERSION} >= 1100000 && ${OSVERSION} < 1100001 )
IGNORE= first boot rc.d scripts not supported on this version of FreeBSD
.endif
do-fetch do-install:
@${DO_NADA}
.include <bsd.port.post.mk>