diff options
author | jgh <jgh@FreeBSD.org> | 2015-04-02 03:15:54 +0800 |
---|---|---|
committer | jgh <jgh@FreeBSD.org> | 2015-04-02 03:15:54 +0800 |
commit | 0d110848b375acdcc2a50502f9cb5dc80e9b098c (patch) | |
tree | 6cb5b0d187b73d1a1292a087b1d76f085f6c1903 /sysutils | |
parent | 30b3f6ffb3a48f3c575a06d8298da1beb4d01801 (diff) | |
download | freebsd-ports-gnome-0d110848b375acdcc2a50502f9cb5dc80e9b098c.tar.gz freebsd-ports-gnome-0d110848b375acdcc2a50502f9cb5dc80e9b098c.tar.zst freebsd-ports-gnome-0d110848b375acdcc2a50502f9cb5dc80e9b098c.zip |
- minor cleanup
- 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)
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/firstboot-freebsd-update/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sysutils/firstboot-freebsd-update/Makefile b/sysutils/firstboot-freebsd-update/Makefile index c7378d2e356c..8aecc139d0c6 100644 --- a/sysutils/firstboot-freebsd-update/Makefile +++ b/sysutils/firstboot-freebsd-update/Makefile @@ -5,22 +5,21 @@ 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.pre.mk> +.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 -do-fetch do-install: - @${DO_NADA} - -.include <bsd.port.post.mk> +.include <bsd.port.mk> |