Fix 4 building failed in x86_64 issues. (#1993)

* Fix bdhcalc

* Fix ppviewer

* Fix helios

* Fix lpairs

* Remove autoreconf

* Remove 'x'

* Update helios-1.7.2.recipe

* revision update

* Change arch variable

* x86_64 issues has been fixed upstream

* patches of ppviewer hass been merged to upstream

* Patches of BDH-Calc has been merged to upstream
This commit is contained in:
Shiroko
2018-01-02 11:44:13 -08:00
committed by Scott McCreary
parent f8c60411b4
commit bd9ef372da
5 changed files with 55 additions and 35 deletions

View File

@@ -7,10 +7,10 @@ the calculator supports binary, decimal and hexadecimal conversion."
HOMEPAGE="http://github.com/HaikuArchives/BDH-Calc"
COPYRIGHT="1999 Scott Hammond"
LICENSE="Zlib"
REVISION="1"
SOURCE_URI="git://github.com/HaikuArchives/BDH-Calc.git#6a3433a5fb558f592dd246b400221f2223770e75"
REVISION="2"
SOURCE_URI="git+https://github.com/HaikuArchives/BDH-Calc#92df9d48db9e1e684e9d28405e7a05f05e6671aa"
ARCHITECTURES="x86 x86_gcc2 !x86_64"
ARCHITECTURES="x86 x86_gcc2 x86_64"
PROVIDES="
bdhcalc = $portVersion
@@ -24,21 +24,19 @@ BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
makefile_engine
cmd:make
cmd:g++
"
BUILD()
{
g++ -c src/bdh_main.cpp -o bdh_main.o
g++ -c src/bdh_view.cpp -o bdh_view.o
g++ -lbe bdh_main.o bdh_view.o -o bdhcalc
xres -o bdhcalc Ressources/bdh.rsrc
mimeset -f bdhcalc
make $jobArgs OBJ_DIR=objects
}
INSTALL()
{
mkdir -p $appsDir
mv bdhcalc $appsDir/bdhcalc
cp -a objects/bdhcalc $appsDir
addAppDeskbarSymlink $appsDir/bdhcalc "BDH Calc"
}

View File

@@ -3,11 +3,11 @@ DESCRIPTION="Cdrecord GUI frontend."
HOMEPAGE="https://github.com/HaikuArchives/Helios"
COPYRIGHT="2000-2004 Maurice Michalski"
LICENSE="MIT"
REVISION="1"
SOURCE_URI="git+https://github.com/HaikuArchives/Helios.git#ffbbca7"
CHECKSUM_SHA256="ce82ede4fd218d3f0c7e30cafc061d2a377e473dbc88512a61e286f21ae51925"
REVISION="2"
SOURCE_URI="git+https://github.com/HaikuArchives/Helios.git#b870e47"
CHECKSUM_SHA256=""
ARCHITECTURES="x86_gcc2 ?x86 !x86_64"
ARCHITECTURES="x86_gcc2 x86 x86_64"
PROVIDES="
helios = $portVersion
@@ -24,7 +24,7 @@ BUILD_REQUIRES="
BUILD_PREREQUIRES="
makefile_engine
cmd:make
cmd:gcc
cmd:g++
"
BUILD()

View File

@@ -5,10 +5,10 @@ decrypting routines."
HOMEPAGE="https://github.com/HaikuArchives/PPViewer"
COPYRIGHT="2002 Maurice Michalski"
LICENSE="MIT"
REVISION="1"
SOURCE_URI="git+https://github.com/HaikuArchives/PPViewer#ce572506ca6e69c888898abf5b958701e068122b"
REVISION="2"
SOURCE_URI="git+https://github.com/HaikuArchives/PPViewer#bd43e4a8d9139c35ba34bd9791f293e4421ca082"
ARCHITECTURES="x86_gcc2 x86 !x86_64"
ARCHITECTURES="x86_gcc2 x86 x86_64"
PROVIDES="
ppviewer = $portVersion
@@ -22,17 +22,19 @@ BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
makefile_engine
cmd:make
cmd:g++
"
BUILD()
{
g++ -lbe -ltracker -o PPViewer *.cpp
make $jobArgs OBJ_DIR=objects
}
INSTALL()
{
mkdir -p $appsDir
cp PPViewer $appsDir
cp -a objects/ppviewer $appsDir
addAppDeskbarSymlink $appsDir/PPViewer
}