mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
5783a22c5e
PR: ports/75409 Submitted by: Sean Farley <sean-freebsd@farley.org>
33 lines
809 B
Makefile
33 lines
809 B
Makefile
# New ports collection makefile for: jailutils
|
|
# Date created: 27 June 2002
|
|
# Whom: Sergey Skvortsov <skv@protey.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= jailutils
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://memberwebs.com/nielsen/freebsd/jails/jailutils/
|
|
|
|
MAINTAINER= skv@FreeBSD.org
|
|
COMMENT= Several utilities for managing jails
|
|
|
|
GNU_CONFIGURE= YES
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
SUP_OS_VER= 400000
|
|
.if ${OSVERSION} < ${SUP_OS_VER}
|
|
BROKEN= "OS versions prior to ${SUP_OS_VER} is not supported"
|
|
.elif ${OSVERSION} > 501000
|
|
PLIST_FILES= sbin/injail sbin/jails sbin/jid sbin/jkill sbin/jps sbin/jstart\
|
|
sbin/killjail
|
|
MAN8= injail.8 jails.8 jid.8 jkill.8 jps.8 jstart.8
|
|
.else
|
|
PLIST_FILES= sbin/jails sbin/jstart sbin/killjail
|
|
MAN8= jails.8 jstart.8 killjail.8
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|