mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-22 08:58:47 +00:00
Add jerm 8094, communication terminal through serial and TCP/IP
interfaces. PR: ports/82633 Submitted by: Shinsuke Matsui <smatsui@karashi.org>
This commit is contained in:
parent
6b97e0c6cd
commit
c800946ac7
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=140345
@ -41,6 +41,7 @@
|
||||
SUBDIR += ixj
|
||||
SUBDIR += java-commapi
|
||||
SUBDIR += java-commapi-freebsd
|
||||
SUBDIR += jerm
|
||||
SUBDIR += kallers
|
||||
SUBDIR += kermit
|
||||
SUBDIR += klog
|
||||
|
53
comms/jerm/Makefile
Normal file
53
comms/jerm/Makefile
Normal file
@ -0,0 +1,53 @@
|
||||
# New ports collection makefile for: jerm
|
||||
# Date created: Jun 25, 2005
|
||||
# Whom: Shinsuke Matsui (<smatsui@karashi.org>)
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= jerm
|
||||
PORTVERSION= 8094
|
||||
CATEGORIES= comms
|
||||
MASTER_SITES= http://www.bsddiary.net/jerm/
|
||||
|
||||
MAINTAINER= smatsui@karashi.org
|
||||
COMMENT= Communication terminal through serial and TCP/IP interfaces
|
||||
|
||||
MAN1= jerm.1
|
||||
|
||||
OPTIONS= JUPITER "With Jupiter support" off
|
||||
|
||||
PORTDOCS= README
|
||||
USE_REINPLACE= yes
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if defined(WITH_JUPITER)
|
||||
PLIST_SUB+= WITH_JUPITER=""
|
||||
.else
|
||||
PLIST_SUB+= WITH_JUPITER="@comment "
|
||||
.endif
|
||||
|
||||
.if !defined(WITH_JUPITER)
|
||||
MAKE_ARGS+= JUPITER_FLAGS=
|
||||
.endif
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e 's|^CFLAGS=|CFLAGS?=|' \
|
||||
${WRKSRC}/Makefile
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/jerm ${PREFIX}/bin
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/tiocdtr ${PREFIX}/bin
|
||||
${INSTALL_MAN} ${WRKSRC}/jerm.1 ${PREFIX}/man/man1
|
||||
.if defined(WITH_JUPITER)
|
||||
@${MKDIR} ${PREFIX}/libexec/jerm
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/init.sh ${PREFIX}/libexec/jerm
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/rock.pl ${PREFIX}/libexec/jerm
|
||||
.endif
|
||||
.if !defined(NOPORTDOCS)
|
||||
@${MKDIR} ${DOCSDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
2
comms/jerm/distinfo
Normal file
2
comms/jerm/distinfo
Normal file
@ -0,0 +1,2 @@
|
||||
MD5 (jerm-8094.tar.gz) = e812b2e4a5a0cde446e8dd85cd554715
|
||||
SIZE (jerm-8094.tar.gz) = 18389
|
7
comms/jerm/pkg-descr
Normal file
7
comms/jerm/pkg-descr
Normal file
@ -0,0 +1,7 @@
|
||||
The jerm is primarily intended to communicate with a remote machine through a
|
||||
serial interface. Additionally jerm can communicate with another through
|
||||
a TCP/IP connection like telnet and relay a serial communication to a
|
||||
TCP/IP connection to another remote machine.
|
||||
|
||||
Author: KANDA Toshihiro
|
||||
WWW: http://www.bsddiary.net/jerm/
|
5
comms/jerm/pkg-plist
Normal file
5
comms/jerm/pkg-plist
Normal file
@ -0,0 +1,5 @@
|
||||
bin/jerm
|
||||
bin/tiocdtr
|
||||
%%WITH_JUPITER%%libexec/jerm/init.sh
|
||||
%%WITH_JUPITER%%libexec/jerm/rock.pl
|
||||
%%WITH_JUPITER%%@dirrm libexec/jerm
|
Loading…
Reference in New Issue
Block a user