712e5a54f5
- Use MAN1PREFIX, instead of MANPREFIX for section 1 PR: ports/101883 Submitted by: Gea-Suan Lin <gslin at gslin.org>
43 lines
832 B
Makefile
43 lines
832 B
Makefile
# 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@FreeBSD.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} ${TARGETDIR}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${MAN1PREFIX}/man/man1
|
|
|
|
.include <bsd.port.post.mk>
|