diff options
author | Renato Botelho <garga@FreeBSD.org> | 2005-07-28 19:11:05 +0000 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2005-07-28 19:11:05 +0000 |
commit | c800946ac76925bb7ba6ab7d1d909a239f5e9d74 (patch) | |
tree | 2dd5f14e05d638b1228743cee7faf13c98760734 /comms | |
parent | 6b97e0c6cdc5fc4786d571ab2879fc50e017ef63 (diff) | |
download | ports-c800946ac76925bb7ba6ab7d1d909a239f5e9d74.tar.gz ports-c800946ac76925bb7ba6ab7d1d909a239f5e9d74.zip |
Notes
Diffstat (limited to 'comms')
-rw-r--r-- | comms/Makefile | 1 | ||||
-rw-r--r-- | comms/jerm/Makefile | 53 | ||||
-rw-r--r-- | comms/jerm/distinfo | 2 | ||||
-rw-r--r-- | comms/jerm/pkg-descr | 7 | ||||
-rw-r--r-- | comms/jerm/pkg-plist | 5 |
5 files changed, 68 insertions, 0 deletions
diff --git a/comms/Makefile b/comms/Makefile index 151c7a386920..9f871dd6f6f3 100644 --- a/comms/Makefile +++ b/comms/Makefile @@ -41,6 +41,7 @@ SUBDIR += ixj SUBDIR += java-commapi SUBDIR += java-commapi-freebsd + SUBDIR += jerm SUBDIR += kallers SUBDIR += kermit SUBDIR += klog diff --git a/comms/jerm/Makefile b/comms/jerm/Makefile new file mode 100644 index 000000000000..5a6bb8de8691 --- /dev/null +++ b/comms/jerm/Makefile @@ -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> diff --git a/comms/jerm/distinfo b/comms/jerm/distinfo new file mode 100644 index 000000000000..9c4fc623f06c --- /dev/null +++ b/comms/jerm/distinfo @@ -0,0 +1,2 @@ +MD5 (jerm-8094.tar.gz) = e812b2e4a5a0cde446e8dd85cd554715 +SIZE (jerm-8094.tar.gz) = 18389 diff --git a/comms/jerm/pkg-descr b/comms/jerm/pkg-descr new file mode 100644 index 000000000000..a026a6452576 --- /dev/null +++ b/comms/jerm/pkg-descr @@ -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/ diff --git a/comms/jerm/pkg-plist b/comms/jerm/pkg-plist new file mode 100644 index 000000000000..d5c31f0f2b0a --- /dev/null +++ b/comms/jerm/pkg-plist @@ -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 |