blob: ea28714f6de4bfb06dd7be4e95030f6c578c9ff1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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>
|