mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
32 lines
654 B
Makefile
32 lines
654 B
Makefile
# New ports collection makefile for: op
|
|
# Date created: 30 Sep 2008
|
|
# Whom: Emanuel Haupt <ehaupt@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= op
|
|
PORTVERSION= 1.32
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://swapoff.org/files/op/ \
|
|
CRITICAL
|
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
|
COMMENT= Controlled privilege escalation tool
|
|
|
|
GNU_CONFIGURE= yes
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
MAN1= op.1
|
|
|
|
post-install:
|
|
${MKDIR} ${PREFIX}/etc/op.d
|
|
${INSTALL_DATA} -m 0600 ${WRKSRC}/${PORTNAME}.conf \
|
|
${PREFIX}/etc/${PORTNAME}.conf.sample
|
|
|
|
.if !exists(${PREFIX}/etc/${PORTNAME}.conf)
|
|
${INSTALL_DATA} -m 0600 ${WRKSRC}/${PORTNAME}.conf ${PREFIX}/etc
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|