pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/editors/tweak



Module Name:    pkgsrc
Committed By:   nia
Date:           Fri May 14 14:22:05 UTC 2021

Modified Files:
        pkgsrc/editors/tweak: distinfo
        pkgsrc/editors/tweak/patches: patch-Makefile

Log Message:
tweak: honor CFLAGS/LDFLAGS


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 pkgsrc/editors/tweak/distinfo
cvs rdiff -u -r1.4 -r1.5 pkgsrc/editors/tweak/patches/patch-Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/editors/tweak/distinfo
diff -u pkgsrc/editors/tweak/distinfo:1.5 pkgsrc/editors/tweak/distinfo:1.6
--- pkgsrc/editors/tweak/distinfo:1.5   Tue Jan 28 13:23:32 2020
+++ pkgsrc/editors/tweak/distinfo       Fri May 14 14:22:04 2021
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.5 2020/01/28 13:23:32 fcambus Exp $
+$NetBSD: distinfo,v 1.6 2021/05/14 14:22:04 nia Exp $
 
 SHA1 (tweak-3.02.tar.gz) = 619c2dcb54dfbbff89576d6b34d5483a8642e635
 RMD160 (tweak-3.02.tar.gz) = b1479bae6b416f95d1f89a7498144bd0f8fea5ab
 SHA512 (tweak-3.02.tar.gz) = 4cf16eae1c48073ca77b0577585473288d7ecbc2d261a359db2cff372c1850cd809becb46bc745ac7d07e982d5eae9a0e0332402267ebab6b12cc952a02cff4e
 Size (tweak-3.02.tar.gz) = 71939 bytes
-SHA1 (patch-Makefile) = 21346275e0915e47a602e4e79a078310ec4bf27a
+SHA1 (patch-Makefile) = 43041b78d4bb28c84ab53792cbd39603c8ece038
 SHA1 (patch-rcfile.c) = 82bf8d167537de068650d3feaf5552ff7bb2be1b

Index: pkgsrc/editors/tweak/patches/patch-Makefile
diff -u pkgsrc/editors/tweak/patches/patch-Makefile:1.4 pkgsrc/editors/tweak/patches/patch-Makefile:1.5
--- pkgsrc/editors/tweak/patches/patch-Makefile:1.4     Tue Jan 28 13:23:32 2020
+++ pkgsrc/editors/tweak/patches/patch-Makefile Fri May 14 14:22:04 2021
@@ -1,11 +1,20 @@
-$NetBSD: patch-Makefile,v 1.4 2020/01/28 13:23:32 fcambus Exp $
+$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
-@@ -22,9 +22,10 @@ LINK := gcc
- LFLAGS :=
+@@ -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=
@@ -17,7 +26,7 @@ DESTDIR and curses support.
  
  TWEAK := main.o keytab.o actions.o search.o rcfile.o buffer.o btree.o
  
-@@ -34,7 +35,7 @@ ifeq ($(SLANG),yes)
+@@ -34,7 +34,7 @@ ifeq ($(SLANG),yes)
  LIBS += -lslang
  TWEAK += slang.o
  else



Home | Main Index | Thread Index | Old Index