mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
99 lines
2.5 KiB
Bash
99 lines
2.5 KiB
Bash
SUMMARY="GnuPG Made Easy is a library for making GnuPG easier to use"
|
|
DESCRIPTION="
|
|
GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG \
|
|
easier for applications. It provides a High-Level Crypto API for \
|
|
encryption, decryption, signing, signature verification and key management. \
|
|
Currently it uses GnuPG as its backend but the API isn't restricted to \
|
|
this engine; in fact we have already developed a backend for CMS (S/MIME).
|
|
"
|
|
HOMEPAGE="http://www.gnupg.org/gpgme.html"
|
|
SOURCE_URI="ftp://ftp.gnupg.org/gcrypt/gpgme/gpgme-$portVersion.tar.bz2"
|
|
CHECKSUM_SHA256="b09de4197ac280b102080e09eaec6211d081efff1963bf7821cf8f4f9916099d"
|
|
REVISION="1"
|
|
LICENSE="
|
|
GNU GPL v2
|
|
GNU LGPL v2.1
|
|
"
|
|
COPYRIGHT="
|
|
1998-2010 Free Software Foundation, Inc.
|
|
2001-2010 g10 Code GmbH
|
|
"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
#TODO: fix gpgme-config hardcoded package paths
|
|
PROVIDES="
|
|
gpgme${secondaryArchSuffix} = $portVersion compat >= 1.5
|
|
cmd:gpgme_tool${secondaryArchSuffix} = $portVersion compat >= 1.5
|
|
lib:libgpgme_pthread${secondaryArchSuffix} = 11.14.0 compat >= 11
|
|
lib:libgpgme${secondaryArchSuffix} = 11.14.0 compat >= 11
|
|
"
|
|
REQUIRES="
|
|
haiku${secondaryArchSuffix}
|
|
lib:libgpg_error${secondaryArchSuffix}
|
|
cmd:gpg
|
|
lib:libglib_2.0$secondaryArchSuffix
|
|
lib:libassuan${secondaryArchSuffix}
|
|
"
|
|
BUILD_REQUIRES="
|
|
devel:libgpg_error${secondaryArchSuffix}
|
|
devel:libglib_2.0$secondaryArchSuffix
|
|
devel:libassuan${secondaryArchSuffix}
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
cmd:autoconf
|
|
cmd:automake
|
|
cmd:bison
|
|
cmd:gcc${secondaryArchSuffix}
|
|
cmd:git
|
|
cmd:gpg
|
|
cmd:gpg_error$secondaryArchSuffix
|
|
cmd:ld${secondaryArchSuffix}
|
|
cmd:libtoolize
|
|
cmd:make
|
|
cmd:makeinfo
|
|
cmd:msgfmt
|
|
cmd:perl
|
|
cmd:tar
|
|
"
|
|
PATCHES="gpgme-$portVersion.patchset"
|
|
|
|
BUILD()
|
|
{
|
|
autoreconf -fi
|
|
runConfigure ./configure
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
|
|
# remove libtool files
|
|
rm $libDir/lib*.la
|
|
|
|
prepareInstalledDevelLibs libgpgme libgpgme-pthread
|
|
|
|
packageEntries devel \
|
|
$developDir $binDir/gpgme-config
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
make check
|
|
}
|
|
|
|
# ----- devel package -------------------------------------------------------
|
|
|
|
PROVIDES_devel="
|
|
gpgme${secondaryArchSuffix}_devel = $portVersion compat >= 1.5
|
|
cmd:gpgme_config${secondaryArchSuffix} = $portVersion compat >= 1.5
|
|
devel:libgpgme_pthread${secondaryArchSuffix} = 11.14.0 compat >= 11
|
|
devel:libgpgme${secondaryArchSuffix} = 11.14.0 compat >= 11
|
|
"
|
|
REQUIRES_devel="
|
|
gpgme${secondaryArchSuffix} == $portVersion base
|
|
"
|