mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-21 00:25:50 +00:00
b8a880926f
- Unbreak Makefile when building with QT4 support. USE_QT4 cannot be set after bsd.port.pre.mk and requires inclusion of bsd.port.options.mk (when used with options). However converting to options helpers saves us from additional include. - Replace spaces with tab while here PR: 189127 Reported by: jrh29@alumni.cwru.edu Approved by: maintainer timeout (3 months from the date of report, I didn't wait approval for my patch) MFH: 2014Q3
73 lines
1.9 KiB
Makefile
73 lines
1.9 KiB
Makefile
# Created by: Valery Komarov <komarov@valerka.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= thrift
|
|
PORTVERSION= ${THRIFT_PORTVERSION} # to keep in sync with thrift
|
|
PORTREVISION= 1
|
|
PORTEPOCH= 1
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= komarov@valerka.net
|
|
COMMENT= C++ interface to Thrift
|
|
|
|
PKGNAMESUFFIX= -cpp
|
|
|
|
MASTER_SITES= APACHE
|
|
MASTER_SITE_SUBDIR= thrift/${PORTVERSION}
|
|
DISTNAME= thrift-${PORTVERSION}
|
|
DISTINFO_FILE= ${.CURDIR}/../thrift/distinfo
|
|
|
|
LIB_DEPENDS= libboost_system.so:${PORTSDIR}/devel/boost-libs \
|
|
libevent.so:${PORTSDIR}/devel/libevent2
|
|
|
|
USE_AUTOTOOLS= autoconf autoheader:env aclocal automake libtool
|
|
ACLOCAL_ARGS= -I${WRKSRC}/aclocal
|
|
AUTOMAKE_ARGS= --foreign --add-missing --copy
|
|
|
|
USES= pkgconfig gmake compiler
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
MAKE_JOBS_UNSAFE= yes
|
|
PLIST_SUB= PORTVERSION="${THRIFT_PORTVERSION}"
|
|
BUILD_WRKSRC= ${WRKSRC}/lib/cpp
|
|
INSTALL_WRKSRC= ${WRKSRC}/lib/cpp
|
|
|
|
OPTIONS_DEFINE= QT4
|
|
QT4_CONFIGURE_WITH= qt4
|
|
QT4_USE= QT4=network,moc_build,qmake_build,rcc_build,uic_build
|
|
|
|
OPTIONS_SUB= yes
|
|
|
|
CONFIGURE_ARGS+= \
|
|
--without-c_glib \
|
|
--with-cpp \
|
|
--without-csharp \
|
|
--without-erlang \
|
|
--without-haskell \
|
|
--without-java \
|
|
--without-perl \
|
|
--without-php \
|
|
--without-php_extension \
|
|
--without-python \
|
|
--without-ruby
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${COMPILER_TYPE} == clang
|
|
USE_CXXSTD= c++11
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's,^pkgconfigdir = .*,pkgconfigdir=$${prefix}/libdata/pkgconfig,' ${WRKSRC}/lib/cpp/Makefile.am
|
|
|
|
post-install:
|
|
${LN} -sf libthrift-${PORTVERSION}.so ${STAGEDIR}${PREFIX}/lib/libthrift.so.0
|
|
${LN} -sf libthriftnb-${PORTVERSION}.so ${STAGEDIR}${PREFIX}/lib/libthriftnb.so.0
|
|
${LN} -sf libthriftz-${PORTVERSION}.so ${STAGEDIR}${PREFIX}/lib/libthriftz.so.0
|
|
.if ${PORT_OPTIONS:MQT4}
|
|
${LN} -sf libthriftqt-${PORTVERSION}.so ${STAGEDIR}${PREFIX}/lib/libthriftqt.so.0
|
|
.endif
|
|
|
|
.include "../thrift/bsd.thrift.mk"
|
|
.include <bsd.port.post.mk>
|