mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
789d75c728
-Update libtool and libltdl to 2.2.6a. -Remove devel/libtool15 and devel/libltdl15. -Fix ports build with libtool22/libltdl22. -Bump ports that depend on libltdl22 due to shared library version change. -Explain what to do update in the UPDATING. It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop and applications in the runtime. With help: marcus and kwm Pointyhat-exp: a few times by pav Tested by: pgollucci, "Romain Tartière" <romain@blogreen.org>, and a few MarcusCom CVS users. Also, I might have missed a few. Repocopy by: marcus Approved by: portmgr
36 lines
945 B
Makefile
36 lines
945 B
Makefile
# New ports collection makefile for: konverse
|
|
# Date created: 30 May 2001
|
|
# Whom: Hye-Shik Chang <perky@python.or.kr>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= konverse
|
|
PORTVERSION= 0.2
|
|
PORTREVISION= 8
|
|
CATEGORIES= net-im kde
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= KDE Jabber Client
|
|
|
|
USE_KDELIBS_VER=3
|
|
USE_AUTOTOOLS= libtool:22
|
|
USE_GMAKE= yes
|
|
|
|
CONFIGURE_ARGS+=--with-extra-includes=${LOCALBASE}/include \
|
|
--with-qt-libraries=${QT_PREFIX}/lib
|
|
|
|
pre-patch:
|
|
${REINPLACE_CMD} -e 's|-lqt|-lqt-mt ${PTHREAD_LIBS}|' \
|
|
-e 's/libqt\.\*/libqt-mt.*/' ${WRKSRC}/configure
|
|
${REINPLACE_CMD} -e 's/\(LDADD.*\)-ldl/\1/' \
|
|
-e 's|-lqt|${PTHREAD_LIBS}|' ${WRKSRC}/konverse/Makefile.in
|
|
${REINPLACE_CMD} -e 's/\(QDateTime.*\)timezone/\1local-\>tm_gmtoff/g' \
|
|
${WRKSRC}/konverse/jabbercore.cpp
|
|
.for f in konverse/rostertree.h konverse/dlgchat.h
|
|
${REINPLACE_CMD} -e 's/ktmainwindow\.h/kmainwindow.h/g' ${WRKSRC}/${f}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|