From e842991cb84e058edc8a3798ac7a2fadf707c75d Mon Sep 17 00:00:00 2001 From: Humdinger Date: Wed, 4 Sep 2019 20:20:28 +0200 Subject: [PATCH] Beam: new minor release v1.2.1 Remove old v1.2 recipe --- haiku-apps/beam/beam-1.2.1.recipe | 77 +++++++++++++++++++++++++++++++ haiku-apps/beam/beam-1.2.recipe | 59 ----------------------- 2 files changed, 77 insertions(+), 59 deletions(-) create mode 100644 haiku-apps/beam/beam-1.2.1.recipe delete mode 100644 haiku-apps/beam/beam-1.2.recipe diff --git a/haiku-apps/beam/beam-1.2.1.recipe b/haiku-apps/beam/beam-1.2.1.recipe new file mode 100644 index 000000000..a94159154 --- /dev/null +++ b/haiku-apps/beam/beam-1.2.1.recipe @@ -0,0 +1,77 @@ +SUMMARY="A full-featured e-mail client" +DESCRIPTION="Beam (BEware, Another Mailer) is an open source e-mail client \ +that aims to be fast, stable and feature-complete. + +Main features + +- Multiple mail accounts (POP & SMTP), with support for default-accounts and \ +automatic selection of appropriate account when replying, etc. +- Fully MIME compliant (Beam passes the MIME-Torture-Test) +- Performance adequate for large mail folders (>10,000 messages) +- POP-authentication (POP3, APOP, CRAM-MD5, DIGEST-MD5) +- SMTP-authentication (SmtpAfterPop, PLAIN, LOGIN, CRAM-MD5, DIGEST-MD5) +- Preliminary IMAP-support (fetches mails just as POP3 does) +- Full header-control, mail-headers can be edited directly before sending +- Identities, separating the user info (name, mail address, signature) from \ +the network info (server address, login & password) +- Multiple signatures that can be dynamic by using scripts +- Filter capabilities (using SIEVE and a SPAM-filter) +- Customized filter chains to help with sorting emails +- Customizable shortcuts +- Customizable icon set" +HOMEPAGE="https://github.com/HaikuArchives/Beam/" +COPYRIGHT="2000-2015 Oliver Tappe + 2016-2019 Adrien Destugues, Jérôme Duval, Humdinger, Reznikov Sergei" +LICENSE="GNU GPL v2" +REVISION="1" +SOURCE_URI="https://github.com/HaikuArchives/beam/archive/v$portVersion.tar.gz" +CHECKSUM_SHA256="d068e1b715260bc4e93ff9f55e2457409f4323ad8cf2de8fa9722d9004fac931" +SOURCE_FILENAME="Beam-$portVersion.tar.gz" +SOURCE_DIR="Beam-$portVersion" + +ARCHITECTURES="x86_gcc2 x86_64" + +PROVIDES=" + beam = $portVersion + app:Beam = $portVersion + " +REQUIRES=" + haiku + lib:libiconv + lib:liblayout + lib:libpcre + lib:libssl + " + +BUILD_REQUIRES=" + haiku_devel + devel:libiconv + devel:liblayout >= 1.4.1 + devel:libpcre >= 1.2.9 + devel:libssl >= 1.0.0 + " +BUILD_PREREQUIRES=" + cmd:bison + cmd:flex + cmd:gcc + cmd:jam + " + +BUILD() +{ + jam -q # Parallel builds broken +} + +INSTALL() +{ + mkdir -p $appsDir/Beam + cp -a generated/distro-haiku/* $appsDir/Beam + cp -a Changes.txt Readme.md $appsDir/Beam + mkdir -p $appsDir/Beam/Icons + cp -a resources/iconset* $appsDir/Beam/Icons + cd $appsDir/Beam/tools + ln -s ../lib . + ln -s ../add-ons . + + addAppDeskbarSymlink $appsDir/Beam/Beam +} diff --git a/haiku-apps/beam/beam-1.2.recipe b/haiku-apps/beam/beam-1.2.recipe deleted file mode 100644 index 610103892..000000000 --- a/haiku-apps/beam/beam-1.2.recipe +++ /dev/null @@ -1,59 +0,0 @@ -SUMMARY="An e-mail client" -DESCRIPTION="Beam (BEware, Another Mailer) is an open source e-mail client \ -for BeOS (R5 and onwards) that aims to be fast, stable and feature-complete." -HOMEPAGE="https://github.com/HaikuArchives/Beam/" -COPYRIGHT="2000-2014 Oliver Tappe" -LICENSE="GNU GPL v2" -REVISION="9" -srcGitRev="904926d022ff363dd17e208215bb53d65d7e91be" -SOURCE_URI="https://github.com/HaikuArchives/beam/archive/$srcGitRev.tar.gz" -CHECKSUM_SHA256="49f3565954616889f9e8acd8c0497bf6a23f35a6ab9282507b0d01c031e683eb" -SOURCE_FILENAME="Beam-$srcGitRev.tar.gz" -SOURCE_DIR="Beam-$srcGitRev" - -ARCHITECTURES="x86_gcc2 x86_64" - -PROVIDES=" - beam = $portVersion - app:Beam = $portVersion - " -REQUIRES=" - haiku - lib:libiconv - lib:liblayout - lib:libpcre - lib:libssl - " - -BUILD_REQUIRES=" - haiku_devel - devel:libiconv - devel:liblayout >= 1.4.1 - devel:libpcre >= 1.2.9 - devel:libssl >= 1.0.0 - " -BUILD_PREREQUIRES=" - cmd:bison - cmd:flex - cmd:gcc - cmd:jam - " - -BUILD() -{ - jam -q # Parallel builds broken -} - -INSTALL() -{ - mkdir -p $appsDir/Beam - cp -a generated/distro-haiku/* $appsDir/Beam - cp -a Changes.txt Readme.md $appsDir/Beam - mkdir -p $appsDir/Beam/Icons - cp -a resources/iconset* $appsDir/Beam/Icons - cd $appsDir/Beam/tools - ln -s ../lib . - ln -s ../add-ons . - - addAppDeskbarSymlink $appsDir/Beam/Beam -}