summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2016-05-25 23:12:15 +0100
committerJames Le Cuirot <chewi@gentoo.org>2016-05-25 23:12:15 +0100
commitd957fc3f14c43bd8abd604fc53627d0f54c4473a (patch)
tree04cbd316524ce0840067ffc3afabf319a7fb15f2 /dev-java/charva/files
parentprofiles: Remove dev-java/freehep-* masks, some packages were kept (diff)
downloadgentoo-d957fc3f14c43bd8abd604fc53627d0f54c4473a.tar.gz
gentoo-d957fc3f14c43bd8abd604fc53627d0f54c4473a.tar.bz2
gentoo-d957fc3f14c43bd8abd604fc53627d0f54c4473a.zip
dev-java/charva: Remove dead obsolete package
Diffstat (limited to 'dev-java/charva/files')
-rw-r--r--dev-java/charva/files/charva-respect-flags.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/dev-java/charva/files/charva-respect-flags.patch b/dev-java/charva/files/charva-respect-flags.patch
deleted file mode 100644
index 73d09e9a265e..000000000000
--- a/dev-java/charva/files/charva-respect-flags.patch
+++ /dev/null
@@ -1,27 +0,0 @@
---- c/src/Makefile.linux.txt
-+++ c/src/Makefile.linux.txt
-@@ -5,14 +5,14 @@
- SHARED_OBJECT_EXT = so
- TARGET = libTerminal.${SHARED_OBJECT_EXT}
-
--CC = gcc
-+CC ?= gcc
- # "-D_USE_NCURSESW" was added for handling UTF-8 characters (contributed by Leos Urban)
--CFLAGS = -fpic -shared -D_USE_NCURSESW_
-+CFLAGS += -fpic -shared -D_USE_NCURSESW_
-
- # The file "jni.h" is in ${JAVA_HOME}/include
- # The file "jni_md.h" (included from jni.h) contains machine-dependent
- # type definitions and is in ${JAVA_HOME}/include/${OS}
--INCLUDES = -I${JAVA_HOME}/include -I${JAVA_HOME}/include/${OS} -I../include
-+INCLUDES ?= -I${JAVA_HOME}/include -I${JAVA_HOME}/include/${OS} -I../include
-
- # Changed "-lncurses" to "-lncursesw" (Leos Urban)
- LIBS = -lncursesw
-@@ -21,5 +21,5 @@
- all : ${TARGET}
-
- ${TARGET} : Toolkit.c ../include/charva_awt_Toolkit.h Makefile.${OS}.txt
-- ${CC} ${CFLAGS} ${INCLUDES} Toolkit.c ${LIBS} -o ../lib/${TARGET}
-+ ${CC} ${CFLAGS} ${LDFLAGS} ${INCLUDES} Toolkit.c ${LIBS} -o ../lib/${TARGET}
-