pkgsrc/security/gpgme/Makefile
rillig b71a1d488b Fixed pkglint warnings. The warnings are mostly quoting issues, for
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some
other changes are outlined in

    http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-12-05 20:49:47 +00:00

55 lines
1.3 KiB
Makefile

# $NetBSD: Makefile,v 1.37 2005/12/05 20:50:56 rillig Exp $
#
DISTNAME= gpgme-1.0.3
CATEGORIES= security
MASTER_SITES= ftp://ftp.gnupg.org/gcrypt/gpgme/ \
ftp://ftp.gnupg.org/gcrypt/alpha/gpgme/
MAINTAINER= oishi@ims.ac.jp
HOMEPAGE= http://www.gnupg.org/gpgme.html
COMMENT= GnuPG Made Easy
DEPENDS+= gnupg>=1.2.2:../../security/gnupg
USE_LIBTOOL= YES
GNU_CONFIGURE= YES
PTHREAD_OPTS+= require
PKG_OPTIONS_VAR= PKG_OPTIONS.gpgme
PKG_SUPPORTED_OPTIONS= gpgsm
.include "../../mk/bsd.options.mk"
LIBS.SunOS+= -lnsl -lsocket
# Avoid an ICE in gcc2 on sparc64
CONFIGURE_ENV+= F77=${FALSE:Q}
# getenv_r is not detected correctly. It will be found
# in either base system or librfuncs
CONFIGURE_ENV+= ac_cv_func_getenv_r=yes
TEST_TARGET= check
.include "../../mk/pthread.buildlink3.mk"
.if ${PTHREAD_TYPE} == "native"
CONFIGURE_ARGS+= --without-pth --without-pth-test
.endif
INFO_FILES= gpgme.info
.include "../../security/libgpg-error/buildlink3.mk"
.include "../../devel/librfuncs/buildlink3.mk"
##
## Option to build with gpgsm. This provides SMIME support
##
.if !empty(PKG_OPTIONS:Mgpgsm)
. include "../../security/gnupg-devel/buildlink3.mk"
CONFIGURE_ARGS+= --with-gpgsm=${BUILDLINK_PREFIX.gnupg-devel}/bin/gpgsm
.else
CONFIGURE_ARGS+= --without-gpgsm
.endif
.include "../../mk/bsd.pkg.mk"