diff options
author | Pacho Ramos <pacho@gentoo.org> | 2018-05-27 18:10:16 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2018-05-27 18:14:32 +0200 |
commit | 342fb1fabd14e1f13fa16ba904804c2bdadb57f8 (patch) | |
tree | 2b302898e9fe0f8cb946975693c43676bfd28605 /games-puzzle/numptyphysics/files | |
parent | games-misc/yadex: Drop old (diff) | |
download | gentoo-342fb1fabd14e1f13fa16ba904804c2bdadb57f8.tar.gz gentoo-342fb1fabd14e1f13fa16ba904804c2bdadb57f8.tar.bz2 gentoo-342fb1fabd14e1f13fa16ba904804c2bdadb57f8.zip |
games-puzzle/numptyphysics: Add 0.3.4,fix 9999 (#567036 by Samuel BAUER)
Package-Manager: Portage-2.3.38, Repoman-2.3.9
Diffstat (limited to 'games-puzzle/numptyphysics/files')
-rw-r--r-- | games-puzzle/numptyphysics/files/numptyphysics-0.3.4-gentoo.patch | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/games-puzzle/numptyphysics/files/numptyphysics-0.3.4-gentoo.patch b/games-puzzle/numptyphysics/files/numptyphysics-0.3.4-gentoo.patch new file mode 100644 index 000000000000..e3a7b2ee372f --- /dev/null +++ b/games-puzzle/numptyphysics/files/numptyphysics-0.3.4-gentoo.patch @@ -0,0 +1,44 @@ +diff --git a/external/glaserl/makefile b/external/glaserl/makefile +index 4120459..f49d9e7 100644 +--- a/external/glaserl/makefile ++++ b/external/glaserl/makefile +@@ -1,7 +1,5 @@ + TARGET := libglaserl.a + +-CFLAGS += -g -O2 +- + SOURCES := $(wildcard *.c) + OBJECTS := $(SOURCES:.c=.o) + +diff --git a/makefile b/makefile +index 0f9a9b6..292b759 100644 +--- a/makefile ++++ b/makefile +@@ -1,7 +1,6 @@ + APP := numptyphysics + + SOURCES := $(wildcard src/*.cpp) +-CXXFLAGS += -std=c++11 -Isrc -Wall -Wno-sign-compare + + all: app + +@@ -13,7 +12,7 @@ app: $(TARGET) + + $(TARGET): $(OBJECTS) $(LOCAL_LIBS) + $(SILENTMSG) "\tLD\t$@\n" +- $(SILENTCMD) $(CXX) -o $@ $^ $(LIBS) ++ $(SILENTCMD) $(CXX) -o $@ $^ $(LDFLAGS) $(LIBS) + + clean: $(ADDITIONAL_CLEAN_TARGETS) + $(SILENTMSG) "\tCLEAN\n" +diff --git a/src/Os.cpp b/src/Os.cpp +index b5d7fb9..6a0ccf4 100644 +--- a/src/Os.cpp ++++ b/src/Os.cpp +@@ -262,5 +262,5 @@ Os::globalDataDir() + } + + // System-wide installation +- return thp::format("%s/../share/%s/data", g_appDir.c_str(), appName().c_str()); ++ return "/usr/share/numptyphysics/data"; + } |