summaryrefslogtreecommitdiff
path: root/security/sudo/Makefile
blob: 5dfbc3d1b0f483bae5c6f19c0328b4f946da2f79 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# New ports collection makefile for:    sudo
# Date created:         Sun Aug 13 12:36:14 CDT 1995
# Whom:                 erich@rrnet.com
#
# $FreeBSD$
#

PORTNAME=	sudo
PORTVERSION=	1.6.5.2
PORTREVISION=	0
CATEGORIES=	security
MASTER_SITES=	http://www.sudo.ws/sudo/dist/ \
		ftp://ftp.cs.colorado.edu/pub/sysadmin/sudo/ \
		ftp://ftp.stikman.com/pub/sudo/ \
		ftp://ftp.uu.net/pub/security/sudo/
DISTNAME=	${PORTNAME}-1.6.5p2

MAINTAINER=	mharo@FreeBSD.org

GNU_CONFIGURE=	yes

CONFIGURE_ARGS= --sysconfdir=${PREFIX}/etc \
		--disable-log-wrap \
		--with-ignore-dot \
		--with-tty-tickets \
		--with-env-editor \
		--with-insults \
		--with-all-insults \
		--with-logincap \
		--disable-root-sudo \
		--with-long-otp-prompt \
		--with-pam

.include <bsd.port.pre.mk>

.if defined(WITH_OPIE) || ${OSVERSION} > 500021
CONFIGURE_ARGS+=--with-opie
.else
CONFIGURE_ARGS+=--with-skey
.endif

MAN5=		sudoers.5
MAN8=		sudo.8 visudo.8

post-patch:
	@${PERL} -i -pe 's,^,#,g' ${WRKSRC}/sample.sudoers

post-install:
	${INSTALL_DATA} ${WRKSRC}/sample.sudoers ${PREFIX}/etc/sudoers.sample

.include <bsd.port.post.mk>