blob: e28247f1b6ee1c042022f2b3a4b5cd6cb254dcda (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# $FreeBSD$
PORTNAME= libotr
PORTVERSION= 4.0.0
# Please do not bump PORTREVISION for this port unless you have
# confirmed via testing that it is necessary
PORTREVISION= 2
CATEGORIES= security net-im net
MASTER_SITES= https://otr.cypherpunks.ca/ \
http://www.c-s.li/ports/
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.asc
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
MAINTAINER= cs@FreeBSD.org
COMMENT= Portable OTR Messaging Library and toolkit
BUILD_DEPENDS= pkgconf>0:${PORTSDIR}/devel/pkgconf
LIB_DEPENDS= gpg-error.0:${PORTSDIR}/security/libgpg-error \
gcrypt:${PORTSDIR}/security/libgcrypt
CONFLICTS= libotr-3.*
USE_AUTOTOOLS= autoconf libtool
USE_LDCONFIG= yes
verify: checksum
gpg --verify ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}.asc
.include <bsd.port.pre.mk>
post-patch:
@${REINPLACE_CMD} -e 's#^pkgconfigdir .*#pkgconfigdir = ${PREFIX}/libdata/pkgconfig#' \
${WRKSRC}/Makefile.in ${WRKSRC}/Makefile.am
.if ${OSVERSION} >= 800000 && ${OSVERSION} < 1000000
@${REINPLACE_CMD} -e 's#OTR_CHECK_CFLAGS(.*stack-protector.*#dnl &#' \
${WRKSRC}/configure.ac
.endif
.include <bsd.port.post.mk>
|