DeeperPeople: bump revision, support for x86_64 (#3365)

This commit is contained in:
Bach Nguyen
2018-11-11 13:01:46 -06:00
committed by fbrosson
parent de3702d24d
commit cab0714054
2 changed files with 34 additions and 2 deletions

View File

@@ -4,13 +4,15 @@ APP="DeeperPeople"
HOMEPAGE="https://github.com/HaikuArchives/$APP"
COPYRIGHT="1991-1999 Be Incorporated"
LICENSE="BSD (3-clause)"
REVISION="1"
REVISION="2"
srcGitRev="a20c5ad566d85274c5f9b60e8fab82f9ec165c02"
SOURCE_URI="$HOMEPAGE/archive/$srcGitRev.tar.gz"
CHECKSUM_SHA256="405a50294e30004073d650c608115e9a854d887b24fd0d153281791017606a7c"
SOURCE_FILENAME="$APP-$portVersion-$srcGitRev.tar.gz"
SOURCE_DIR="$APP-$srcGitRev"
PATCHES="deeperpeople-$portVersion.patchset"
ARCHITECTURES="x86_gcc2 !x86_64"
ARCHITECTURES="x86_gcc2 x86_64"
PROVIDES="
deeperpeople = $portVersion

View File

@@ -0,0 +1,30 @@
From 420ef74582eb373fb5498e205d5cabb4d7fbc417 Mon Sep 17 00:00:00 2001
From: Bach Nguyen <bach5000@gmail.com>
Date: Sat, 10 Nov 2018 19:02:07 +0000
Subject: Fix build
diff --git a/src/Makefile b/src/Makefile
index c4c5c68..af5cad7 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -55,7 +55,7 @@ RSRCS =
# - if your library does not follow the standard library naming scheme,
# you need to specify the path to the library and it's name.
# (e.g. for mylib.a, specify "mylib.a" or "path/mylib.a")
-LIBS = be tracker
+LIBS = $(STDCPPLIBS) be tracker
# Specify additional paths to directories following the standard libXXX.so
# or libXXX.a naming scheme. You can specify full paths or paths relative
@@ -105,7 +105,7 @@ SYMBOLS :=
DEBUGGER :=
# Specify any additional compiler flags to be used.
-COMPILER_FLAGS = -Wshadow -Wconversion -Winline -funsigned-bitfields -Wwrite-strings
+COMPILER_FLAGS = -fpermissive -Wshadow -Wconversion -Winline -funsigned-bitfields -Wwrite-strings
# Specify any additional linker flags to be used.
LINKER_FLAGS =
--
2.19.0