View | Details | Raw Unified | Return to bug 203478
Collapse All | Expand All

(-)comms/picocom/Makefile (-6 / +21 lines)
Lines 2-20 Link Here
2
# $FreeBSD: head/comms/picocom/Makefile 389300 2015-06-12 20:58:13Z erwin $
2
# $FreeBSD: head/comms/picocom/Makefile 389300 2015-06-12 20:58:13Z erwin $
3
3
4
PORTNAME=	picocom
4
PORTNAME=	picocom
5
PORTVERSION=	1.7
5
PORTVERSION=	2.0
6
CATEGORIES=	comms
6
CATEGORIES=	comms
7
MASTER_SITES=	GOOGLE_CODE
7
MASTER_SITES=	GH
8
8
9
MAINTAINER=	ports@FreeBSD.org
9
MAINTAINER=	ports@FreeBSD.org
10
COMMENT=	Dumb Terminal Emulator
10
COMMENT=	Dumb Terminal Emulator
11
11
12
ALL_TARGET=	picocom
12
LICENSE=	GPLv2 # (or later)
13
#LICENSE_FILE=	${WRKSRC}/LICENSE.txt
14
15
USE_GITHUB=	yes
16
GH_ACCOUNT=	npat-efault
17
13
USES=		gmake
18
USES=		gmake
19
ALL_TARGET=	picocom
20
21
PLIST_FILES=	bin/picocom man/man1/picocom.1.gz
14
22
15
PLIST_FILES=	bin/picocom man/man8/picocom.8.gz
23
post-patch:
24
	@${REINPLACE_CMD} -e \
25
		's|^CFLAGS|#CFLAGS| ; \
26
		 s|^CPPFLSGS=|CPPFLAGS +=| ; \
27
		 s|^LDFLAGS|#LDFLAGS|' ${WRKSRC}/Makefile
16
28
17
do-install:
29
do-install:
18
	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/
30
	(cd ${WRKSRC} && ${INSTALL_PROGRAM} picocom \
19
	${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${STAGEDIR}${MAN8PREFIX}/man/man8/
31
		${STAGEDIR}${PREFIX}/bin)
32
	(cd ${WRKSRC} && ${INSTALL_MAN} picocom.1 \
33
		${STAGEDIR}${MANPREFIX}/man/man1)
34
20
.include <bsd.port.mk>
35
.include <bsd.port.mk>
(-)comms/picocom/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (picocom-1.7.tar.gz) = d0f31c8f7a215a76922d30c81a52b9a2348c89e02a84935517002b3bc2c1129e
1
SHA256 (npat-efault-picocom-2.0_GH0.tar.gz) = e0f7095c118f43c1c09787a16ef5c7d4c4ad4457dd3b1281efcc4cdb8906af9a
2
SIZE (picocom-1.7.tar.gz) = 42857
2
SIZE (npat-efault-picocom-2.0_GH0.tar.gz) = 87110
(-)comms/picocom/files/patch-term.c (+13 lines)
Line 0 Link Here
1
--- term.c.orig	2015-09-16 14:14:23 UTC
2
+++ term.c
3
@@ -43,6 +43,10 @@
4
 #include "termios2.h"
5
 #endif
6
 
7
+#ifndef CMSPAR
8
+#define CMSPAR 0
9
+#endif
10
+
11
 #include "term.h"
12
 
13
 /***************************************************************************/
(-)comms/picocom/pkg-descr (-9 / +9 lines)
Lines 1-10 Link Here
1
As its name suggests, picocom is a minimal dumb-terminal emulation pro-
1
As its name suggests, picocom is a minimal dumb-terminal emulation
2
gram. It is, in principle, very much like minicom(1) , only it's "pico"
2
program. It is, in principle, very much like minicom(1) , only it's
3
instead  of "mini"! It was designed to serve as a simple, manual, modem
3
"pico" instead of "mini"! It was designed to serve as a simple, manual,
4
configuration, testing, and debugging tool. It has also  served  (quite
4
modem configuration, testing, and debugging tool. It has also served
5
well) as a low-tech "terminal-window" to allow operator intervention in
5
(quite well) as a low-tech "terminal-window" to allow operator
6
PPP connection scripts (something like the  ms-windows  "open  terminal
6
intervention in PPP connection scripts (something like the ms-windows
7
window  before / after dialing" feature). It could also prove useful in
7
"open terminal window before / after dialing" feature). It could also
8
many other similar tasks.
8
prove useful in many other similar tasks.
9
9
10
WWW:	http://code.google.com/p/picocom/
10
WWW: https://github.com/npat-efault/picocom/

Return to bug 203478