blob: 1c9fdf3312b99b7c8ca9cdc99de8a3a98a69290e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# New ports collection makefile for: ezjail
# Date created: 1 September 2005
# Whom: erdgeist
#
# $FreeBSD$
#
PORTNAME= ezjail
PORTVERSION= 1.0
CATEGORIES= sysutils
MASTER_SITES= http://erdgeist.org/arts/software/ezjail/
MAINTAINER= erdgeist@erdgeist.org
COMMENT= A framework to easily create, manipulate and run FreeBSD jails
USE_BZIP2= yes
MAN1= ezjail-admin.1
MAN5= ezjail.5 ezjail.conf.5
.include <bsd.port.pre.mk>
.if ( ${OSVERSION} < 600000 )
IGNORE= nullfs in FreeBSD releases before 6.0 is considered unstable
.endif
post-install:
@if [ ! -f ${PREFIX}/etc/ezjail.conf ]; then \
${CP} -p ${PREFIX}/etc/ezjail.conf.sample ${PREFIX}/etc/ezjail.conf ; \
fi
.include <bsd.port.post.mk>
|