freebsd-ports/security/gpgme/Makefile
Mario Sergio Fujikawa Ferreira 7625989aa0 o Fix gpgsm support so that conditional WITH_GPGSM really works
o Bump PORTREVISION

PR:		52459
Submitted by:	Michael Nottebrock <michaelnottebrock@gmx.net>
Approved by:	maintainer
2003-05-22 01:29:39 +00:00

41 lines
824 B
Makefile

# New ports collection makefile for: gpgme
# Date created: 15 June 2001
# Whom: teramoto@comm.eng.osaka-u.ac.jp
#
# $FreeBSD$
#
PORTNAME= gpgme
PORTVERSION= 0.3.15
PORTREVISION= 1
CATEGORIES= security
MASTER_SITES= ${MASTER_SITE_GNUPG}
MASTER_SITE_SUBDIR= gpgme
MAINTAINER= markun@onohara.to
COMMENT= A library to make access to GnuPG easier
BUILD_DEPENDS= gpg:${PORTSDIR}/security/gnupg
LIB_DEPENDS= pth.20:${PORTSDIR}/devel/pth
USE_LIBTOOL= yes
CONFIGURE_ENV= MAKEINFO="makeinfo --no-split"
USE_GMAKE= yes
INSTALLS_SHLIB= yes
.include <bsd.port.pre.mk>
.if exists(${LOCALBASE}/bin/gpgsm)
WITH_GPGSM= yes
.endif
.if defined(WITH_GPGSM)
BUILD_DEPENDS+= gpgsm:${PORTSDIR}/security/newpg
.else
CONFIGURE_ARGS+= --without-gpgsm
.endif
pre-configure:
@${RM} -r ${WRKSRC}/doc/gpgme.info*
.include <bsd.port.post.mk>