summaryrefslogtreecommitdiff
path: root/app-editors/sandy/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-editors/sandy/files
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-editors/sandy/files')
-rw-r--r--app-editors/sandy/files/sandy-0.4-gentoo.patch49
1 files changed, 0 insertions, 49 deletions
diff --git a/app-editors/sandy/files/sandy-0.4-gentoo.patch b/app-editors/sandy/files/sandy-0.4-gentoo.patch
deleted file mode 100644
index 877c96805ef4..000000000000
--- a/app-editors/sandy/files/sandy-0.4-gentoo.patch
+++ /dev/null
@@ -1,49 +0,0 @@
---- a/config.mk
-+++ b/config.mk
-@@ -9,19 +9,19 @@
-
- # includes and libs (ncurses)
- INCS = -I. -I/usr/include
--LIBS = -L/usr/lib -lc -lncursesw
-+LIBS = $(shell ${PKG_CONFIG} --libs ncurses)
-
- # flags
--CPPFLAGS = -DVERSION=\"${VERSION}\"
-+CPPFLAGS = -DVERSION=\"${VERSION}\" -D_DEFAULT_SOURCE
- #CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
- #LDFLAGS = -s ${LIBS}
--CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
--LDFLAGS = ${LIBS}
-+CFLAGS += -std=c99 -pedantic -Wall ${INCS} ${CPPFLAGS}
-+LDFLAGS += ${LIBS}
-
- # Solaris
- #CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
- #LDFLAGS = ${LIBS}
-
- # compiler and linker
--CC = cc
-+CC ?= cc
-
---- a/Makefile
-+++ b/Makefile
-@@ -15,8 +15,7 @@
- @echo "CC = ${CC}"
-
- .c.o:
-- @echo CC $<
-- @${CC} -c ${CFLAGS} $<
-+ ${CC} -c ${CFLAGS} $<
-
- ${OBJ}: config.h config.mk
-
-@@ -25,8 +24,7 @@
- @cp config.def.h $@
-
- sandy: ${OBJ}
-- @echo CC -o $@
-- @${CC} -o $@ sandy.o ${LDFLAGS}
-+ ${CC} ${CFLAGS} -o $@ sandy.o ${LDFLAGS}
-
- clean:
- @echo cleaning