freebsd-ports/net/twinkle/Makefile
Baptiste Daroussin 9250d94365 Convert USE_BISON to USES= bison
It brings bison as a build dependency in case it is set the following way:
USES= bison or USES= bison:build

it brings bison as a run dependency in case it is set the following way:
USES= bison:run

it brings bison both as a run and build dependency in case it the set the following way:
USES= bison:both

While here trim some headers
Convert some USE_GNOME= gnomehack to USES= pathfix
2013-03-08 11:32:11 +00:00

61 lines
1.5 KiB
Makefile

# Created by: Alonso Cardenas Marquez <acm@FreeBSD.org>
# $FreeBSD$
PORTNAME= twinkle
PORTVERSION= 1.4.2
PORTREVISION= 9
CATEGORIES= net
MASTER_SITES= http://mfnboer.home.xs4all.nl/twinkle/download/
MAINTAINER= acm@FreeBSD.org
COMMENT= Soft phone for your VoIP communications using the SIP protocol
BUILD_DEPENDS= qmake:${PORTSDIR}/devel/qmake
LIB_DEPENDS= ccgnu2:${PORTSDIR}/devel/commoncpp \
ccrtp:${PORTSDIR}/devel/ccrtp \
sndfile.1:${PORTSDIR}/audio/libsndfile \
boost_regex:${PORTSDIR}/devel/boost-libs \
speex.1:${PORTSDIR}/audio/speex \
ilbc.0:${PORTSDIR}/net/ilbc \
zrtpcpp:${PORTSDIR}/devel/libzrtpcpp
GNU_CONFIGURE= yes
USE_AUTOTOOLS= libtool
USES= bison
USE_XORG= xext
USE_GMAKE= yes
USE_GNOME= libxml2
USE_PERL5= yes
USE_QT_VER= 3
OPTIONS_DEFINE= KDE
KDE_DESC= Compile with kde3 features
CONFIGURE_ARGS= --with-qt-dir=${QT_PREFIX} QTDIR=${LOCALBASE}
CONFIGURE_ENV= QMAKESPEC="${QMAKESPEC}"
MAKE_ENV= QTDIR=${QT_PREFIX}
SUB_FILES= pkg-message
QMAKESPEC?= ${LOCALBASE}/share/qt/mkspecs/freebsd-g++
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MKDE}
USE_KDELIBS_VER=3
.else
CONFIGURE_ARGS+=--without-kde
.endif
post-patch:
@${REINPLACE_CMD} -e 's|-lresolv||g' -e 's|-lbind||g' \
-e 's|libccrtp1|libccrtp|g' ${WRKSRC}/${CONFIGURE_SCRIPT}
@${REINPLACE_CMD} -e 's|localtime_r|ost::localtime_r|g' \
${WRKSRC}/src/log.cpp
post-configure:
@${REINPLACE_CMD} -e 's|-lresolv||g' ${WRKSRC}/src/gui/${MAKEFILE}
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>