summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMykyta Holubakha <hilobakho@gmail.com>2017-11-20 01:50:58 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2017-11-30 00:19:21 +0100
commitecfcfd8e746ba83d767b2af5757bcf9838e4c28b (patch)
tree34d00302cfaebafe84590c34953153f0544a7c4b /app-editors/kakoune/files
parentapp-editors/kakoune: update live ebuild (diff)
downloadgentoo-ecfcfd8e746ba83d767b2af5757bcf9838e4c28b.tar.gz
gentoo-ecfcfd8e746ba83d767b2af5757bcf9838e4c28b.tar.bz2
gentoo-ecfcfd8e746ba83d767b2af5757bcf9838e4c28b.zip
app-editors/kakoune: drop old 0_pre20160620
Diffstat (limited to 'app-editors/kakoune/files')
-rw-r--r--app-editors/kakoune/files/kakoune-makefile.patch40
1 files changed, 0 insertions, 40 deletions
diff --git a/app-editors/kakoune/files/kakoune-makefile.patch b/app-editors/kakoune/files/kakoune-makefile.patch
deleted file mode 100644
index 54a22d5ac925..000000000000
--- a/app-editors/kakoune/files/kakoune-makefile.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-diff --git a/src/Makefile b/src/Makefile
-index c79c270..9409a8c 100644
---- a/src/Makefile
-+++ b/src/Makefile
-@@ -3,10 +3,10 @@ pedantic ?= yes
-
- ifeq ($(debug),yes)
- CPPFLAGS += -DKAK_DEBUG
-+ CXXFLAGS += -g
- suffix := .debug
- else
- ifeq ($(debug),no)
-- CXXFLAGS += -O3
- suffix := .opt
- else
- $(error debug should be either yes or no)
-@@ -26,8 +26,6 @@ mandocs := $(docs:.asciidoc=.gz)
- PREFIX ?= /usr/local
- DESTDIR ?= # root dir
-
--NCURSESW_INCLUDE ?= /usr/include/ncursesw
--
- bindir := $(DESTDIR)$(PREFIX)/bin
- sharedir := $(DESTDIR)$(PREFIX)/share/kak
- docdir := $(DESTDIR)$(PREFIX)/share/doc/kak
-@@ -53,11 +51,10 @@ else ifneq (,$(findstring CYGWIN,$(os)))
-- LIBS += -lncursesw -lboost_regex -ldbghelp
-+ LIBS += -lboost_regex -ldbghelp
- else
-- LIBS += -lncursesw -lboost_regex
-+ LIBS += -lboost_regex
-- CPPFLAGS += -I$(NCURSESW_INCLUDE)
- LDFLAGS += -rdynamic
- endif
-
--CXXFLAGS += -std=gnu++11 -g -Wall -Wno-reorder -Wno-sign-compare -Wno-address
-+CXXFLAGS += -std=gnu++11 -Wall -Wno-reorder -Wno-sign-compare -Wno-address
-
- kak : $(objects)
- $(CXX) $(LDFLAGS) $(CXXFLAGS) $(objects) $(LIBS) -o $@