diff options
author | Steve Price <steve@FreeBSD.org> | 1998-05-24 03:19:19 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1998-05-24 03:19:19 +0000 |
commit | f0e1947767ef5412343b79715d4145569a598ab9 (patch) | |
tree | 82a58bcab383956b177a7cd7c0c3276fda37ed54 /misc/gone/Makefile | |
parent | Upgrade to version 4.4.7. (diff) |
Update to version 1.3.1.
PR: 6703
Submitted by: maintainer
Diffstat (limited to 'misc/gone/Makefile')
-rw-r--r-- | misc/gone/Makefile | 38 |
1 files changed, 13 insertions, 25 deletions
diff --git a/misc/gone/Makefile b/misc/gone/Makefile index fcf130c98504..262469cbceb0 100644 --- a/misc/gone/Makefile +++ b/misc/gone/Makefile @@ -1,41 +1,29 @@ # New ports collection makefile for: gone -# Version required: 1.3 +# Version required: 1.3.1 # Date created: 19 April 1998 # Whom: marcus # -# $Id: Makefile,v 1.2 1998/04/20 03:17:26 mph Exp $ +# $Id: Makefile,v 1.3 1998/04/20 04:41:16 mph Exp $ # -DISTNAME= gone-1.3 +DISTNAME= gone-1.3.1 CATEGORIES= misc MASTER_SITES= http://jaguar.ir.miami.edu/~marcus/ MAINTAINER= marcus@miami.edu -GNU_CONFIGURE= yes - MAN1= gone.1 +GNU_CONFIGURE= yes -.if !defined(WITH_SETUID) -WITH_SETUID= no -CONFIGURE_ENV= SETUID_Q=no -SHOWHELP= yes -.elif ${WITH_SETUID} == YES || ${WITH_SETUID} == yes || ${WITH_SETUID} == Yes -CONFIGURE_ENV= SETUID_Q=yes -.elif ${WITH_SETUID} == NO || ${WITH_SETUID} == no || ${WITH_SETUID} == No -CONFIGURE_ENV= SETUID_Q=no +# +# If you would like to be able to use system passwords for gone +# override this with WITH_SETUID=yes in your environment. +# Be aware that setting gone to suid MAY be a security hole. +# +WITH_SETUID?= no +.if ${WITH_SETUID} == yes +CONFIGURE_ENV= with_setuid=yes .else -ABORT= yes +CONFIGURE_ENV= with_setuid=no .endif - -pre-configure: -.if defined(SHOWHELP) - @ ${ECHO_MSG} To authenticate system passwords, build with \"make WITH_SETUID=YES\". - @ ${ECHO_MSG} Running setuid could introduce security holes in your system. -.endif -.if defined(ABORT) - @ ${ECHO_MSG} I do not understand WITH_SETUID=${WITH_SETUID}. Set to YES or NO. - @ ${FALSE} -.endif - .include <bsd.port.mk> |