f2a02448a0
- options in favor of using pre - extract_only to drop fetch target - no_install to drop install target PR: 199097 Submitted by: jgh Approved by: cperciva (maintainer)
25 lines
669 B
Makefile
25 lines
669 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= firstboot-freebsd-update
|
|
PORTVERSION= 1.2
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= # none
|
|
DISTFILES= # none
|
|
EXTRACT_ONLY= # none
|
|
|
|
MAINTAINER= cperciva@FreeBSD.org
|
|
COMMENT= Update the system using freebsd-update when it first boots
|
|
|
|
NO_WRKSUBDIR= yes
|
|
NO_BUILD= yes
|
|
NO_INSTALL= yes
|
|
|
|
USE_RC_SUBR= firstboot_freebsd_update
|
|
|
|
.include <bsd.port.options.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
|
|
|
|
.include <bsd.port.mk>
|