diff options
author | 2019-08-28 11:11:01 +0200 | |
---|---|---|
committer | 2019-08-28 11:11:01 +0200 | |
commit | cf6fb2cbf01ace6e0fce246abbb284e65d6ec814 (patch) | |
tree | f5916f050c060645574066cdbfb8f9f4169ddab1 /app-arch/qpress/files | |
parent | app-arch/mt-st: [QA] Fix ${HOMEPAGE} in SRC_URI (diff) | |
download | gentoo-cf6fb2cbf01ace6e0fce246abbb284e65d6ec814.tar.gz gentoo-cf6fb2cbf01ace6e0fce246abbb284e65d6ec814.tar.bz2 gentoo-cf6fb2cbf01ace6e0fce246abbb284e65d6ec814.zip |
app-arch/qpress: Port to EAPI 7
Package-Manager: Portage-2.3.72, Repoman-2.3.17
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-arch/qpress/files')
-rw-r--r-- | app-arch/qpress/files/makefile | 6 | ||||
-rw-r--r-- | app-arch/qpress/files/qpress-1.1-fix-build-system.patch | 7 | ||||
-rw-r--r-- | app-arch/qpress/files/qpress-1.1-fix-includes.patch | 7 |
3 files changed, 14 insertions, 6 deletions
diff --git a/app-arch/qpress/files/makefile b/app-arch/qpress/files/makefile deleted file mode 100644 index 63c1f91b3943..000000000000 --- a/app-arch/qpress/files/makefile +++ /dev/null @@ -1,6 +0,0 @@ -CXX ?= g++ -CXXFLAGS ?= -O3 -LIBS=-lpthread - -qpress: - $(CXX) $(CXXFLAGS) qpress.cpp aio.cpp quicklz.c utilities.cpp -o $@ $(LIBS) diff --git a/app-arch/qpress/files/qpress-1.1-fix-build-system.patch b/app-arch/qpress/files/qpress-1.1-fix-build-system.patch new file mode 100644 index 000000000000..b6f7c0f2841b --- /dev/null +++ b/app-arch/qpress/files/qpress-1.1-fix-build-system.patch @@ -0,0 +1,7 @@ +--- a/makefile ++++ b/makefile +@@ -1,2 +1 @@ +-g++: qpress.cpp aio.cpp quicklz.c utilities.cpp +- g++ -O3 -o qpress qpress.cpp aio.cpp quicklz.c utilities.cpp -lpthread +\ No newline at end of file ++qpress: aio.o quicklz.o utilities.o diff --git a/app-arch/qpress/files/qpress-1.1-fix-includes.patch b/app-arch/qpress/files/qpress-1.1-fix-includes.patch new file mode 100644 index 000000000000..51bfee465aa9 --- /dev/null +++ b/app-arch/qpress/files/qpress-1.1-fix-includes.patch @@ -0,0 +1,7 @@ +--- a/qpress.cpp ++++ b/qpress.cpp +@@ -1,3 +1,4 @@ ++#include <unistd.h> + /*
+ qpress - portable high-speed file archiver
+ Copyright Lasse Reinhold 2006-2010
|