mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 14:08:51 +02:00
* fossil Improved SUMMARY, thanks waddlesplash for noticing the error. * gcc Shortened SUMMARY (at least removing the "\" linebreak that seems to trigger the lint warning) Minor cosmetics. * gd Renamed recipe to correct version. Added license. Corrected copyright. Added autoconf, aclocal, libtoolize to BUILD_PREREQUIRES. Added SOURCE_DIR. Now it almost builds, failing with: configure.ac:79: warning: macro 'AM_ICONV' not found in library configure.ac:130: error: possibly undefined macro: AC_MSG_ERROR * global Removed "." from SUMMARY. Minor cosmetics. * gnupg Removed "." from SUMMARY. Minor cosmetics. * gnutls Added PATCHES="gnutls-2.8.6.patch" to fix the lint warning. Moved haiku_devel to BUILD_REQUIRES. Sorted the _devel blocks to the top. Minor cosmetics. Build fails... * golang Removed "." from SUMMARY. Minor cosmetics. * gptfdisk Removed "." from SUMMARY. Minor cosmetics. * graphviz Minor cosmetics. * gri Removed "." from SUMMARY. Minor cosmetics. * ha Slightly improved SUMMARY/DESCRIPTION Minor cosmetics. * handbreak Removed "." from SUMMARY. Minor cosmetics. * harfbuzz Removed "." from SUMMARY. Minor cosmetics. Sorted the _devel blocks to the top. * hdialog Removed "." from SUMMARY. Use g++ instead of gcc. Minor cosmetics. * help2man Removed "." from SUMMARY. Minor cosmetics. * heroes Removed "." from SUMMARY. Minor cosmetics. * homeworld Removed "." from SUMMARY. Minor cosmetics. * htmldoc Remove outdated patch file Minor cosmetics. * htmltidy Removed "." from SUMMARY. Minor cosmetics. Sorted the _devel blocks to the top. * hyperstudio Removed "." from SUMMARY. Minor cosmetics.
30 lines
931 B
Bash
30 lines
931 B
Bash
SUMMARY="The GNU project's free implementation of the OpenPGP standard"
|
|
DESCRIPTION="GnuPG is the GNU project's complete and free implementation of \
|
|
the OpenPGP standard as defined by RFC4880 . GnuPG allows to encrypt and sign \
|
|
your data and communication, features a versatile key management system as \
|
|
well as access modules for all kinds of public key directories. GnuPG, also \
|
|
known as GPG, is a command line tool with features for easy integration with \
|
|
other applications."
|
|
HOMEPAGE="http://www.gnupg.org/"
|
|
SOURCE_URI="ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-1.4.10.tar.bz2"
|
|
CHECKSUM_MD5="dcf7ed712997888d616e029637bfc303"
|
|
REVISION="1"
|
|
STATUS_HAIKU="stable"
|
|
DEPEND=""
|
|
BUILD()
|
|
{
|
|
cd gnupg-1.4.10
|
|
libtoolize --force --copy --install
|
|
autoconf
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY`
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd gnupg-1.4.10
|
|
make install
|
|
}
|
|
LICENSE="GNU GPL v3"
|
|
COPYRIGHT="1998-2009 Free Software Foundation, Inc."
|