diff --git a/dev-qt/qsystray/qsystray-0.1.recipe b/dev-qt/qsystray/qsystray-0.1.recipe deleted file mode 100644 index c5031379f..000000000 --- a/dev-qt/qsystray/qsystray-0.1.recipe +++ /dev/null @@ -1,49 +0,0 @@ -SUMMARY="Deskbar shelf helper for Qt 4/5 applications" -DESCRIPTION="Qt system tray manager for interaction with Deskbar shelf" -HOMEPAGE="https://github.com/qt-haiku/qt4" -COPYRIGHT="2012-2015 Gerasim Troeglazov (3dEyes**)" -LICENSE="GNU LGPL v2.1" -REVISION="5" -SOURCE_URI="https://github.com/qt-haiku/qt4/archive/0cf073098fa1e4b34d5be1391214b5515606833d.tar.gz" -CHECKSUM_SHA256="4b0a7716849f28ae7341a77cf41192be030049d4c35536e7bab039e11a12369f" -SOURCE_DIR="qt4-0cf073098fa1e4b34d5be1391214b5515606833d/src/3rdparty/haiku-tools/qsystray" - -ARCHITECTURES="x86_gcc2 x86 x86_64" - -PROVIDES=" - qsystray${secondaryArchSuffix} = $portVersion - cmd:qsystray = $portVersion - " -REQUIRES=" - haiku - " - -BUILD_REQUIRES=" - haiku_devel - " -BUILD_PREREQUIRES=" - cmd:g++ - cmd:gcc - cmd:ld - cmd:make - " - -BUILD() -{ - if [ $targetArchitecture = x86_gcc2 ]; then - make -f Makefile.gcc2 - else - make -f Makefile.gcc4 - fi -} - -INSTALL() -{ - mkdir -p $binDir - - if [ $targetArchitecture = x86_gcc2 ]; then - cp -af qsystray_gcc2 $binDir/qsystray - else - cp -af qsystray $binDir - fi -} diff --git a/dev-qt/qsystray/qsystray-5.11.2.2.recipe b/dev-qt/qsystray/qsystray-5.11.2.2.recipe new file mode 100644 index 000000000..d28ee173a --- /dev/null +++ b/dev-qt/qsystray/qsystray-5.11.2.2.recipe @@ -0,0 +1,42 @@ +SUMMARY="Deskbar shelf helper for Qt 4/5 applications" +DESCRIPTION="Qt system tray manager for interaction with Deskbar shelf" +HOMEPAGE="https://github.com/threedeyes/qthaikuplugins/" +COPYRIGHT="2012-2018 Gerasim Troeglazov" +LICENSE="GNU LGPL v2.1 + GNU LGPL v3" +REVISION="1" +SOURCE_URI="https://github.com/threedeyes/qthaikuplugins/archive/$portVersion.tar.gz" +CHECKSUM_SHA256="00add1d86a35650b08e608d76bda026057dd03ea481a689c993a146de811dd97" +SOURCE_DIR="qthaikuplugins-$portVersion" + +ARCHITECTURES="x86_gcc2 x86 x86_64" + +PROVIDES=" + qsystray = $portVersion + cmd:qsystray = $portVersion + " +REQUIRES=" + haiku + " + +BUILD_REQUIRES=" + haiku_devel + " +BUILD_PREREQUIRES=" + cmd:g++ + cmd:gcc + cmd:ld + cmd:make + " + +BUILD() +{ + cd tools/qsystray + make +} + +INSTALL() +{ + mkdir -p $binDir + cp -af tools/qsystray/qsystray $binDir +}