Beam: new minor release v1.2.1

Remove old v1.2 recipe
This commit is contained in:
Humdinger
2019-09-04 20:20:28 +02:00
parent 0eb77d8df1
commit e842991cb8
2 changed files with 77 additions and 59 deletions

View File

@@ -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
}

View File

@@ -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
}