summaryrefslogtreecommitdiff
path: root/editors/tweak/patches/patch-Makefile
blob: 657a59fdb342ab4305c21ca5b720d28c50695b52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
$NetBSD: patch-Makefile,v 1.5 2021/05/14 14:22:04 nia Exp $

DESTDIR and curses support.

--- Makefile.orig	2016-03-22 21:12:51.000000000 +0000
+++ Makefile
@@ -16,15 +16,15 @@
 #    number in tweak.h, or else the resulting binary won't match
 #    the version number on the archive.
 
-CC := gcc
-CFLAGS := -g -c -Wall $(XFLAGS)
-LINK := gcc
-LFLAGS :=
+CFLAGS += -c -Wall $(XFLAGS)
+LINK := $(CC)
+LFLAGS := $(LDFLAGS)
 LIBS := 
 
+DESTDIR=
 PREFIX=$(DESTDIR)/usr/local
-BINDIR=$(PREFIX)/bin
-MANDIR=$(PREFIX)/man/man1
+BINDIR=$(DESTDIR)$(PREFIX)/bin
+MANDIR=$(DESTDIR)$(PREFIX)/${PKGMANDIR}/man1
 
 TWEAK := main.o keytab.o actions.o search.o rcfile.o buffer.o btree.o
 
@@ -34,7 +34,7 @@ ifeq ($(SLANG),yes)
 LIBS += -lslang
 TWEAK += slang.o
 else
-LIBS += -lncurses
+LIBS += -lcurses
 TWEAK += curses.o
 endif