mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
98eb11b2f0
Changes: http://www.boost.org/users/history/version_1_65_1.html PR: 218835 Approved by: maintainer timeout (1.65.1: 2 weeks; 1.65.0: 1 month) Tested by: jhibbits (on powerpc64, earlier version) Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D11582
50 lines
1.1 KiB
Makefile
50 lines
1.1 KiB
Makefile
# Created by: Brian Feldman & Matt Heckaman
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= base
|
|
PORTVERSION= ${LICQ_VER}
|
|
PORTREVISION= 8
|
|
CATEGORIES= net-im
|
|
PKGNAMESUFFIX= ${SOCKS_SUFFIX}${PKGNAMESUFFIX2}
|
|
|
|
MAINTAINER= dinoex@FreeBSD.org
|
|
COMMENT= Popular ICQ-compatible plugin-based program
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libboost_regex.so:devel/boost-libs
|
|
|
|
BROKEN_sparc64= Does not build: fails to link
|
|
|
|
USES= cmake:noninja iconv ssl
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}
|
|
LICQ_PORT?= net-im/licq
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
CXXFLAGS+= -DGTEST_USE_OWN_TR1_TUPLE
|
|
|
|
OPTIONS_DEFINE= NLS GPGME
|
|
OPTIONS_DEFAULT=GPGME
|
|
OPTIONS_SUB=yes
|
|
GPGME_DESC= Build support for gpgme
|
|
NLS_USES= gettext
|
|
NLS_CMAKE_OFF= -DENABLE_NLS:BOOL=OFF
|
|
|
|
GPGME_LIB_DEPENDS= libgpgme.so:security/gpgme \
|
|
libassuan.so:security/libassuan \
|
|
libgpg-error.so:security/libgpg-error
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.include "${PORTSDIR}/${LICQ_PORT}/Makefile.inc"
|
|
|
|
pre-configure:
|
|
${REINPLACE_CMD} -e 's=!/bin/bash=!${LOCALBASE}/bin/bash=' \
|
|
${WRKSRC}/bin/sidclean.sh
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/lib/licq
|
|
${INSTALL_SCRIPT} ${WRKSRC}/bin/sidclean.sh ${STAGEDIR}${PREFIX}/bin/sidclean.bash
|
|
|
|
.include <bsd.port.mk>
|