mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
fc543e03c6
o restricted setuid-root access to executables, adjustable on a per-program and per-user basis; o a relatively secure environment for scripts, so that well-written scripts can be run as root (or some other uid/gid), without unduly compromising security. See pkg/DESCR for a comparson w/sudo.
35 lines
886 B
Makefile
35 lines
886 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: foo
|
|
# Version required: 3.9.7
|
|
# Date created: Fri Mar 18, 1997
|
|
# Whom: David O'Brien (obrien@FreeBSD.org)
|
|
#
|
|
# $Id: Makefile,v 1.2 1997/01/25 18:08:40 obrien Exp $
|
|
#
|
|
|
|
DISTNAME= super-3.9.7
|
|
CATEGORIES= security sysutils
|
|
MASTER_SITES= ftp://phobos.caltech.edu/users/will/
|
|
EXTRACT_SUFX= .shar.gz
|
|
|
|
MAINTAINER= obrien@NUXI.com
|
|
|
|
EXTRACT_CMD= zcat
|
|
EXTRACT_BEFORE_ARGS=
|
|
EXTRACT_AFTER_ARGS= |sed -e '1,/Cut Here/d'|sh
|
|
MAN1= super.1 setuid.1
|
|
MAN5= super.5
|
|
|
|
|
|
post-install:
|
|
@strip ${PREFIX}/bin/super ${PREFIX}/bin/setuid
|
|
@${MKDIR} ${PREFIX}/share/examples
|
|
@${INSTALL} ${WRKSRC}/sample.tab ${PREFIX}/share/examples
|
|
@${INSTALL} ${WRKSRC}/sample.cdmount ${PREFIX}/share/examples
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/doc/super
|
|
${INSTALL_MAN} ${WRKSRC}/README ${PREFIX}/share/doc/super
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|