forked from Lainports/freebsd-ports
Simplify expressions for FreeBSD 13.X Reviewed by: many Differential Revision: https://reviews.freebsd.org/D46601
45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
PORTNAME= pidgin
|
|
PORTVERSION= 3.1
|
|
PORTREVISION= 8
|
|
CATEGORIES= security
|
|
MASTER_SITES= SF/${PORTNAME}-encrypt/Releases/${PORTVERSION}
|
|
PKGNAMESUFFIX= -encryption
|
|
DISTNAME= ${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION}
|
|
|
|
MAINTAINER= perlfu@gmail.com
|
|
COMMENT= Encryption Plugin for the Pidgin instant messenger client
|
|
WWW= http://pidgin-encrypt.sf.net
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/bin/pidgin:net-im/pidgin
|
|
LIB_DEPENDS= libpurple.so:net-im/libpurple \
|
|
libnss3.so:security/nss
|
|
RUN_DEPENDS= ${LOCALBASE}/bin/pidgin:net-im/pidgin
|
|
|
|
USES= gettext gmake gnome libtool localbase pkgconfig
|
|
USE_GNOME= gtk20
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-static \
|
|
--with-nspr-includes=${LOCALBASE}/include/nspr \
|
|
--with-nspr-libs=${LOCALBASE}/lib \
|
|
--with-nss-includes=${LOCALBASE}/include/nss \
|
|
--with-nss-libs=${LOCALBASE}/lib
|
|
|
|
INSTALL_TARGET= install-strip
|
|
|
|
OPTIONS_DEFINE= NLS
|
|
OPTIONS_SUB= yes
|
|
|
|
NLS_USES= gettext
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${OPSYS} == FreeBSD
|
|
CFLAGS+= -Wno-error=int-conversion
|
|
.endif
|
|
|
|
post-extract:
|
|
@${REINPLACE_CMD} -e 's|glib/.*\.h"|glib.h"|g' ${WRKSRC}/rsa_nss.c
|
|
|
|
.include <bsd.port.mk>
|