diff options
author | clsung <clsung@FreeBSD.org> | 2006-05-26 16:40:54 +0800 |
---|---|---|
committer | clsung <clsung@FreeBSD.org> | 2006-05-26 16:40:54 +0800 |
commit | 0e358025ff930db23eef98e7421e8f387004902b (patch) | |
tree | 31aa77be0c28ba4a462d7b6be60be8a0d59fa24b /net/omnitty/Makefile | |
parent | 0c6d9c8df480c0d0f99cd3f8db5db309f03fb698 (diff) | |
download | freebsd-ports-gnome-0e358025ff930db23eef98e7421e8f387004902b.tar.gz freebsd-ports-gnome-0e358025ff930db23eef98e7421e8f387004902b.tar.zst freebsd-ports-gnome-0e358025ff930db23eef98e7421e8f387004902b.zip |
Add omnitty 0.3.0, a curses-based SSH multiplexer.
PR: ports/97942
Submitted by: Rong-En Fan <rafan@infor.org>
Diffstat (limited to 'net/omnitty/Makefile')
-rw-r--r-- | net/omnitty/Makefile | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/net/omnitty/Makefile b/net/omnitty/Makefile new file mode 100644 index 000000000000..ea28714f6de4 --- /dev/null +++ b/net/omnitty/Makefile @@ -0,0 +1,42 @@ +# New ports collection makefile for: omnitty +# Date created: May 21 2006 +# Whom: Rong-En Fan <rafan@infor.org> +# +# $FreeBSD$ +# + +PORTNAME= omnitty +PORTVERSION= 0.3.0 +CATEGORIES= net +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= rafan@infor.org +COMMENT= A curses-based SSH multiplexer + +LIB_DEPENDS= rote:${PORTSDIR}/devel/rote + +GNU_CONFIGURE= yes +USE_GMAKE= yes + +ALL_TARGET= ${PORTNAME} + +MAN1= ${PORTNAME}.1 + +PLIST_FILES= bin/${PORTNAME} + +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +IGNORE= does not work on FreeBSD 4.x +.endif + +post-patch: + ${REINPLACE_CMD} 's|<alloca.h>|<stdlib.h>|' \ + ${WRKSRC}/machmgr.c + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${MANPREFIX}/man/man1 + +.include <bsd.port.post.mk> |