1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-24 21:01:20 +00:00
freebsd-ports/japanese/okphone/files/patch-aa
Masafumi Max NAKANE 1949da6772 Reorganize this port a bit:
- Split a big patch-aa into five pieces.
- Don't patch up the dist Makefile to install and compress the man
  page.
- Define MAN1 and remove man page entry from the PLIST.
- Make myself the maintainer (was ports@FreeBSD.ORG).
- Install the docs into share/doc/okphone instead of share/okphone.
- Honor ${NOPORTDOCS}.

There might be some other changes I can't remember of.
1998-08-31 16:09:19 +00:00

25 lines
529 B
Plaintext

--- ./conv/Makefile.org Wed Feb 7 18:45:35 1996
+++ ./conv/Makefile Wed Feb 7 18:45:36 1996
@@ -5,10 +5,10 @@
# This one is pretty straightforward - no special flags for it.
CC = cc
-CFLAGS = -O
+CFLAGS += -O
SRCS = convd.c
DEST = convd
-RDEST = /usr/local/etc/convd
+RDEST = ${PREFIX}/libexec/convd
#RDEST = /usr/local/lib/convd
all: ${DEST}
@@ -19,7 +19,7 @@
install: ${DEST}
/bin/rm -f ${RDEST}
- cp ${DEST} ${RDEST}
+ install -cs -m 755 -o bin -g bin ${DEST} ${RDEST}
clean:
/bin/rm -f ${DEST} core *.o