diff options
author | sem <sem@FreeBSD.org> | 2007-12-19 19:54:45 +0800 |
---|---|---|
committer | sem <sem@FreeBSD.org> | 2007-12-19 19:54:45 +0800 |
commit | 73e42f51ca50331dd6a097e9813778ecf9ec7655 (patch) | |
tree | c8e595026a9cda6b282dfd6533450b4417504378 /net/dhcprelya | |
parent | ef14025711d97fc415e2c095816d549672250961 (diff) | |
download | freebsd-ports-gnome-73e42f51ca50331dd6a097e9813778ecf9ec7655.tar.gz freebsd-ports-gnome-73e42f51ca50331dd6a097e9813778ecf9ec7655.tar.zst freebsd-ports-gnome-73e42f51ca50331dd6a097e9813778ecf9ec7655.zip |
- Mark IGNORE on OSVERSION<600000. The port requires pidfile_* finctions.
Noted by: pav
Diffstat (limited to 'net/dhcprelya')
-rw-r--r-- | net/dhcprelya/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/net/dhcprelya/Makefile b/net/dhcprelya/Makefile index 8d8f11c8d8bc..a2ccecc4ee06 100644 --- a/net/dhcprelya/Makefile +++ b/net/dhcprelya/Makefile @@ -19,10 +19,16 @@ PORTDOCS= README PLIST_FILES= sbin/${PORTNAME} +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 600000 +IGNORE= require pidfile_* finctions in libutils +.endif + post-install: .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |