diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2014-06-07 23:55:00 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2014-06-07 23:55:00 +0000 |
commit | 97e783db05be5a77507bbd2f272bfdfc971d657c (patch) | |
tree | c5f92b9fc4696d2eafcf222f5ee5ed2dfc791857 /misc/gone | |
parent | ab0ec7ba017aabbf6f817bf1cb72a0e8dfdf3bde (diff) | |
download | ports-97e783db05be5a77507bbd2f272bfdfc971d657c.tar.gz ports-97e783db05be5a77507bbd2f272bfdfc971d657c.zip |
Notes
Diffstat (limited to 'misc/gone')
-rw-r--r-- | misc/gone/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/misc/gone/Makefile b/misc/gone/Makefile index cf3d1d5e9876..16a053dcc583 100644 --- a/misc/gone/Makefile +++ b/misc/gone/Makefile @@ -9,14 +9,12 @@ MASTER_SITES= http://www.marcuscom.com/downloads/gone/ MAINTAINER= marcus@FreeBSD.org COMMENT= A terminal locking utility with many improvements over lock(1) -MAN1= gone.1 -PLIST_FILES= bin/gone +PLIST_FILES= bin/gone man/man1/gone.1.gz GNU_CONFIGURE= yes OPTIONS_DEFINE= SETUID SETUID_DESC= Install gone setuid root for password support -NO_STAGE= yes .include <bsd.port.options.mk> .include <bsd.port.pre.mk> @@ -31,4 +29,8 @@ CONFIGURE_ENV= with_setuid=yes CONFIGURE_ENV= with_setuid=no .endif +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/gone ${STAGEDIR}${PREFIX}/bin/gone + ${INSTALL_DATA} ${WRKSRC}/gone.1 ${STAGEDIR}${PREFIX}/man/man1/gone.1 + .include <bsd.port.post.mk> |