62aa63f89c
- qca-2.3 drop support for OSSL<1.1 - copy devel/qca to devel/qca-legacy which is held at the current version - update devel/qca to 2.3 - Add Uses/qca.mk which handles dependency on either of the ports depending on the FreeBSD version Users on FreeBSD11 must therefore change their pkg orign à la: pkg set -o devel/qca:devel/qca-legacy PR: 244682 Exp-run by: antoine Reviewed by: arrowd Differential Revision: https://reviews.freebsd.org/D24042
72 lines
2.3 KiB
Makefile
72 lines
2.3 KiB
Makefile
# Created by: Jacek Pelka <jacek@combit.com.pl>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= kadu
|
|
PORTVERSION= 4.3
|
|
PORTREVISION= 19
|
|
PORTEPOCH= 1
|
|
CATEGORIES= polish net-im
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION}/:kadu \
|
|
http://download.kadu.im/stable/:kadu \
|
|
http://download.kadu.im/additions/:additions
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:kadu
|
|
DIST_SUBDIR= kadu
|
|
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Internet communicator supporting Gadu-Gadu and Jabber/XMPP
|
|
|
|
LICENSE= GPLv2
|
|
|
|
BUILD_DEPENDS= bash:shells/bash \
|
|
pl-libgadu>=1.12.2:polish/libgadu
|
|
LIB_DEPENDS= libmpdclient.so:audio/libmpdclient \
|
|
libsndfile.so:audio/libsndfile \
|
|
libinjeqt.so:devel/injeqt \
|
|
libidn.so:dns/libidn \
|
|
libqxmpp.so:net-im/qxmpp-qt5 \
|
|
libgadu.so:polish/libgadu \
|
|
libgcrypt.so:security/libgcrypt \
|
|
libotr.so.5:security/libotr \
|
|
libenchant.so:textproc/enchant
|
|
# TODO ntrack and ntrack-qt (needs porting) ?
|
|
# TODO separate ports for plugins and themes (possible starting with 0.10)
|
|
|
|
GG6_EMOTS_DISTFILE= kompatybilne_z_GG6.tar.gz
|
|
GG7_EMOTS_DISTFILE= dodatkowe_emoty_GG7.tar.gz
|
|
|
|
USES= cmake:insource compiler:c++11-lib gettext-runtime gnome \
|
|
libarchive pkgconfig qca qt:5 readline tar:bzip2 xorg
|
|
USE_XORG= x11 xext xfixes xscrnsaver
|
|
USE_GNOME= glib20
|
|
USE_QT= concurrent core dbus declarative gui multimedia network \
|
|
script scripttools sql webkit widgets x11extras \
|
|
xml xmlpatterns buildtools_build linguisttools_build \
|
|
qmake_build imageformats_run sql-sqlite3_run
|
|
# Setting KADU_VERSION disables git invocation
|
|
CMAKE_ARGS= -DKADU_VERSION:STRING="${DISTVERSION}" -DWITH_ENCHANT=ON \
|
|
-DENABLE_TESTS=OFF
|
|
LDFLAGS+= -lexecinfo
|
|
|
|
OPTIONS_DEFINE= GG_EMOTS
|
|
OPTIONS_SUB= yes
|
|
GG_EMOTS_DESC= GG-compatible emoticons
|
|
|
|
GG_EMOTS_DISTFILES= ${GG6_EMOTS_DISTFILE}:additions \
|
|
${GG7_EMOTS_DISTFILE}:additions
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} '/kadu_add_test/ s|^|#|' \
|
|
${WRKSRC}/kadu-core/plugin/CMakeLists.txt
|
|
|
|
post-install-GG_EMOTS-on:
|
|
@${MKDIR} ${WRKSRC}/varia/themes/emoticons
|
|
@cd ${WRKSRC}/varia/themes/emoticons && \
|
|
${TAR} -zxf ${_DISTDIR}/${GG6_EMOTS_DISTFILE} && \
|
|
${MV} kompatybilne_z_GG6 gg6_compatible && \
|
|
cd gg6_compatible && ${TAR} -zxf ${_DISTDIR}/${GG7_EMOTS_DISTFILE}
|
|
@cd ${WRKSRC}/varia/themes/emoticons && \
|
|
${COPYTREE_SHARE} gg6_compatible ${STAGEDIR}${DATADIR}/themes/emoticons
|
|
|
|
.include <bsd.port.mk>
|