mirror of
https://git.freebsd.org/ports.git
synced 2025-06-22 13:10:31 -04:00
- Take maintainership - Fix WWW/pkg-descr [1] PR: ports/156047 Submitted by: N.J. Mann <njm@njm.me.uk> [1]
23 lines
498 B
Text
23 lines
498 B
Text
--- ./Makefile.orig 2010-05-29 00:39:52.000000000 +0200
|
|
+++ ./Makefile 2011-03-30 22:23:36.000000000 +0200
|
|
@@ -1,6 +1,9 @@
|
|
|
|
VERSION=1.6
|
|
|
|
+BIN = $(PREFIX)/bin
|
|
+MAN8 = $(PREFIX)/man/man8
|
|
+
|
|
# 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 -o root picocom $(BIN)
|
|
+ install -d $(MAN8)
|
|
+ install -o root picocom.8 $(MAN8)
|
|
+
|