mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
f0f35ca44f
We often need to do "something" to about half the machines, then do "something else" to the other half. So add a hack to toggle the "tagged" status of the machines. This is implemented by means of the F1 menu; the command characters "o" and "O" can toggle the "tagged" status of the machines. PR: 211682 Submitted by: maintainer
27 lines
586 B
Makefile
27 lines
586 B
Makefile
# Created by: Rong-En Fan <rafan@infor.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= omnitty
|
|
PORTVERSION= 0.3.0
|
|
PORTREVISION= 4
|
|
CATEGORIES= net
|
|
MASTER_SITES= SF/omnitty/omnitty/omnitty-${PORTVERSION}
|
|
|
|
MAINTAINER= david@catwhisker.org
|
|
COMMENT= Curses-based SSH multiplexer
|
|
|
|
LIB_DEPENDS= librote.so:devel/rote
|
|
|
|
USES= gmake ncurses
|
|
GNU_CONFIGURE= yes
|
|
LIBS+= -lncurses
|
|
|
|
ALL_TARGET= omnitty
|
|
PLIST_FILES= bin/omnitty man/man1/omnitty.1.gz
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/omnitty ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/omnitty.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|