mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-02 06:03:50 +00:00
962c0c5185
"OTR button" functionality have been moved to a menu. Also, "Buddy authentication has been revamped, based on the user study published in SOUPS 2008." The old authentication methods are still allowed. This version adds locale files for ar, de, hu, and ru. Drop the specific library version number for libpurple to (hopefully) avoid churn down the road. Assume maintainership, and add my website to MASTER_SITES. Approved by: Maintainer timeout
44 lines
1.2 KiB
Makefile
44 lines
1.2 KiB
Makefile
# ex:ts=8
|
|
# Ports collection Makefile for: pidgin-otr
|
|
# Date created: 2004-12-17
|
|
# Whom: Conor McDermottroe <ports@mcdermottroe.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= otr
|
|
PORTVERSION= 3.2.0
|
|
CATEGORIES= security net
|
|
MASTER_SITES= http://www.cypherpunks.ca/otr/ \
|
|
http://dougbarton.us/Downloads/
|
|
PKGNAMEPREFIX= pidgin-
|
|
DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION}
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.asc
|
|
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= dougb@FreeBSD.org
|
|
COMMENT= Allows deniable private conversations using Pidgin
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/bin/pidgin:${PORTSDIR}/net-im/pidgin
|
|
LIB_DEPENDS= otr:${PORTSDIR}/security/libotr \
|
|
gcrypt:${PORTSDIR}/security/libgcrypt \
|
|
purple:${PORTSDIR}/net-im/libpurple
|
|
|
|
USE_GMAKE= yes
|
|
USE_GNOME= intltool
|
|
USE_GETTEXT= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
CONFIGURE_ENV= CPPFLAGS="${PTHREAD_CFLAGS} -I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}"
|
|
CONFIGURE_ARGS= --with-libotr-prefix=${LOCALBASE}/lib \
|
|
--with-libotr-inc-prefix=${LOCALBASE}/include
|
|
|
|
verify: checksum
|
|
gpg --verify ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}.asc
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|echo aout|echo elf|' ${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|