diff options
author | miwi <miwi@FreeBSD.org> | 2008-11-24 02:22:19 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2008-11-24 02:22:19 +0800 |
commit | 856c416a3cf694258faff94ce411a4b61cfdfbf8 (patch) | |
tree | 0b7a3a76418f25e8598d46fb606ff3dbfa6bdaa1 /comms/picocom | |
parent | 9a0024af1839b5980b728ab72b4f45e2e2407a96 (diff) | |
download | freebsd-ports-gnome-856c416a3cf694258faff94ce411a4b61cfdfbf8.tar.gz freebsd-ports-gnome-856c416a3cf694258faff94ce411a4b61cfdfbf8.tar.zst freebsd-ports-gnome-856c416a3cf694258faff94ce411a4b61cfdfbf8.zip |
As its name suggests, picocom is a minimal dumb-terminal emulation pro-
gram. It is, in principle, very much like minicom(1) , only it's "pico"
instead of "mini"! It was designed to serve as a simple, manual, modem
configuration, testing, and debugging tool. It has also served (quite
well) as a low-tech "terminal-window" to allow operator intervention in
PPP connection scripts (something like the ms-windows "open terminal
window before / after dialing" feature). It could also prove useful in
many other similar tasks.
WWW: http://efault.net/npat/hacks/picocom/
Diffstat (limited to 'comms/picocom')
-rw-r--r-- | comms/picocom/Makefile | 22 | ||||
-rw-r--r-- | comms/picocom/distinfo | 3 | ||||
-rw-r--r-- | comms/picocom/files/patch-Makefile | 32 | ||||
-rw-r--r-- | comms/picocom/pkg-descr | 11 |
4 files changed, 68 insertions, 0 deletions
diff --git a/comms/picocom/Makefile b/comms/picocom/Makefile new file mode 100644 index 000000000000..7da42504e9f2 --- /dev/null +++ b/comms/picocom/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: picocom +# Date created: 2008-11-23 +# Whom: Martin Wilke <miwi@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= picocom +PORTVERSION= 1.4 +CATEGORIES= comms +MASTER_SITES= http://efault.net/npat/hacks/picocom/dist/ + +MAINTAINER= miwi@FreeBSD.org +COMMENT= Dumb Terminal Emulator + +ALL_TARGET= picocom +USE_GMAKE= yes + +PLIST_FILES= bin/picocom +MAN8= picocom.8 + +.include <bsd.port.mk> diff --git a/comms/picocom/distinfo b/comms/picocom/distinfo new file mode 100644 index 000000000000..865e7f1cbc36 --- /dev/null +++ b/comms/picocom/distinfo @@ -0,0 +1,3 @@ +MD5 (picocom-1.4.tar.gz) = 08fcc5f6bb9e7676a2569386d5ea9f70 +SHA256 (picocom-1.4.tar.gz) = 437c5fac2376e416b4427501d1b074da5aa6b8fea756a0d61aec22686f025721 +SIZE (picocom-1.4.tar.gz) = 41295 diff --git a/comms/picocom/files/patch-Makefile b/comms/picocom/files/patch-Makefile new file mode 100644 index 000000000000..3293a1f548ff --- /dev/null +++ b/comms/picocom/files/patch-Makefile @@ -0,0 +1,32 @@ +--- Makefile.orig 2008-11-04 10:13:20.000000000 -0700 ++++ Makefile +@@ -3,12 +3,15 @@ VERSION=1.4 + + # CC = gcc + CPPFLAGS=-DVERSION_STR=\"$(VERSION)\" -DUUCP_LOCK_DIR=\"/var/lock\" +-CFLAGS = -Wall -g ++CFLAGS = -Wall -g -I$(PREFIX)/include + + # LD = gcc +-LDFLAGS = -g ++LDFLAGS = -g -Wl,-R$(PREFIX)/lib -L$(PREFIX)/lib -lcurses + LDLIBS = + ++BIN = $(PREFIX)/bin ++MAN8 = $(PREFIX)/man/man8 ++ + picocom : picocom.o term.o + # $(LD) $(LDFLAGS) -o $@ $+ $(LDLIBS) + +@@ -17,6 +20,12 @@ term.o : term.c term.h + + doc : picocom.8 picocom.8.html picocom.8.ps + ++install: ++ -install -d $(BIN) ++ install -o root picocom $(BIN) ++ -install -d $(MAN8) ++ install -o root picocom.8 $(MAN8) ++ + changes : + svn log -v . > CHANGES diff --git a/comms/picocom/pkg-descr b/comms/picocom/pkg-descr new file mode 100644 index 000000000000..72233182301c --- /dev/null +++ b/comms/picocom/pkg-descr @@ -0,0 +1,11 @@ +As its name suggests, picocom is a minimal dumb-terminal emulation pro- +gram. It is, in principle, very much like minicom(1) , only it's "pico" +instead of "mini"! It was designed to serve as a simple, manual, modem +configuration, testing, and debugging tool. It has also served (quite +well) as a low-tech "terminal-window" to allow operator intervention in +PPP connection scripts (something like the ms-windows "open terminal +window before / after dialing" feature). It could also prove useful in +many other similar tasks. + + +WWW: http://efault.net/npat/hacks/picocom/ |