789d75c728
-Update libtool and libltdl to 2.2.6a. -Remove devel/libtool15 and devel/libltdl15. -Fix ports build with libtool22/libltdl22. -Bump ports that depend on libltdl22 due to shared library version change. -Explain what to do update in the UPDATING. It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop and applications in the runtime. With help: marcus and kwm Pointyhat-exp: a few times by pav Tested by: pgollucci, "Romain Tartière" <romain@blogreen.org>, and a few MarcusCom CVS users. Also, I might have missed a few. Repocopy by: marcus Approved by: portmgr
49 lines
984 B
Makefile
49 lines
984 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.16
|
|
PORTREVISION= 7
|
|
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= gpgv:${PORTSDIR}/security/gnupg1
|
|
LIB_DEPENDS= pth.20:${PORTSDIR}/devel/pth
|
|
|
|
LATEST_LINK= gpgme03
|
|
|
|
USE_AUTOTOOLS= autoconf:262 libtool:22
|
|
USE_GMAKE= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
INFO= gpgme03
|
|
|
|
CONFIGURE_ARGS+= --includedir=${PREFIX}/include/gpgme03
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if exists(${LOCALBASE}/bin/gpgsm)
|
|
WITH_GPGSM= yes
|
|
.endif
|
|
|
|
.if defined(WITH_GPGSM)
|
|
BUILD_DEPENDS+= gpgsm:${PORTSDIR}/security/gnupg
|
|
.else
|
|
CONFIGURE_ARGS+= --without-gpgsm
|
|
.endif
|
|
|
|
post-patch:
|
|
.for i in tests tests/gpg tests/gpgsm
|
|
@${REINPLACE_CMD} -e 's/libgpgme.la/libgpgme03.la/' \
|
|
${WRKSRC}/${i}/Makefile.in
|
|
.endfor
|
|
|
|
.include <bsd.port.post.mk>
|