mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
0b055d47f2
- Switch to C++14 for libboost_system to support C++14 consumers Changes: http://www.boost.org/users/history/version_1_68_0.html PR: 229569 Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D16165
37 lines
1.0 KiB
Makefile
37 lines
1.0 KiB
Makefile
# Created by: Naram Qashat
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= subcommander
|
|
PORTVERSION= 2.0.0.b5.2
|
|
PORTREVISION= 10
|
|
CATEGORIES= devel
|
|
MASTER_SITES= DEBIAN
|
|
DISTNAME= ${PORTNAME}_${PORTVERSION:R:S,.b,~b,}p${PORTVERSION:E}.orig
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Qt4 based multiplatform subversion client, diff & merge tool
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libboost_thread.so:devel/boost-libs \
|
|
libsvn_client-1.so:devel/subversion
|
|
|
|
CONFLICTS= subcommander-1.*
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:R:S,.b,b,}p${PORTVERSION:E}
|
|
|
|
USES= autoreconf gmake dos2unix qmake:no_env qt:4 ssl
|
|
DOS2UNIX_GLOB= *.cpp *.h
|
|
USE_QT= corelib gui network qt3support moc_build rcc_build uic_build
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-boost=${LOCALBASE}/include \
|
|
--with-subversion=${LOCALBASE} --with-qt=${PREFIX} \
|
|
--with-apr=${LOCALBASE}/bin/apr-1-config \
|
|
--with-apr-util=${LOCALBASE}/bin/apu-1-config \
|
|
--with-openssl=${OPENSSLBASE}
|
|
|
|
CPPFLAGS+= -I${QT_INCDIR} -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${QT_LIBDIR} -L${LOCALBASE}/lib
|
|
|
|
.include <bsd.port.mk>
|