mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
- Update to 1.6
- Take maintainership - Fix WWW/pkg-descr [1] PR: ports/156047 Submitted by: N.J. Mann <njm@njm.me.uk> [1]
This commit is contained in:
parent
cbfbb09bda
commit
e4946cb514
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=272054
@ -6,11 +6,11 @@
|
||||
#
|
||||
|
||||
PORTNAME= picocom
|
||||
PORTVERSION= 1.4
|
||||
PORTVERSION= 1.6
|
||||
CATEGORIES= comms
|
||||
MASTER_SITES= http://efault.net/npat/hacks/picocom/dist/
|
||||
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
MAINTAINER= dhn@FreeBSD.org
|
||||
COMMENT= Dumb Terminal Emulator
|
||||
|
||||
ALL_TARGET= picocom
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (picocom-1.4.tar.gz) = 437c5fac2376e416b4427501d1b074da5aa6b8fea756a0d61aec22686f025721
|
||||
SIZE (picocom-1.4.tar.gz) = 41295
|
||||
SHA256 (picocom-1.6.tar.gz) = df5774072de805ff06c6b1420dbcc932b1b00e919b49e22a7be14bcad5a0b3a1
|
||||
SIZE (picocom-1.6.tar.gz) = 46704
|
||||
|
@ -1,32 +1,23 @@
|
||||
--- Makefile.orig 2008-11-04 10:13:20.000000000 -0700
|
||||
+++ Makefile
|
||||
@@ -3,12 +3,15 @@ VERSION=1.4
|
||||
--- ./Makefile.orig 2010-05-29 00:39:52.000000000 +0200
|
||||
+++ ./Makefile 2011-03-30 22:23:36.000000000 +0200
|
||||
@@ -1,6 +1,9 @@
|
||||
|
||||
# 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 =
|
||||
VERSION=1.6
|
||||
|
||||
+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
|
||||
|
||||
# CC = gcc
|
||||
CPPFLAGS=-DVERSION_STR=\"$(VERSION)\" -DUUCP_LOCK_DIR=\"/var/lock\" \
|
||||
-DHIGH_BAUD
|
||||
@@ -43,3 +46,10 @@
|
||||
rm -f picocom.8.html
|
||||
rm -f picocom.8.ps
|
||||
rm -f CHANGES
|
||||
+
|
||||
+install:
|
||||
+ -install -d $(BIN)
|
||||
+ install -d $(BIN)
|
||||
+ install -o root picocom $(BIN)
|
||||
+ -install -d $(MAN8)
|
||||
+ install -d $(MAN8)
|
||||
+ install -o root picocom.8 $(MAN8)
|
||||
+
|
||||
changes :
|
||||
svn log -v . > CHANGES
|
||||
|
@ -7,5 +7,4 @@ 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/
|
||||
WWW: http://code.google.com/p/picocom/
|
||||
|
Loading…
Reference in New Issue
Block a user