diff options
author | perky <perky@FreeBSD.org> | 2002-09-16 06:17:42 +0000 |
---|---|---|
committer | perky <perky@FreeBSD.org> | 2002-09-16 06:17:42 +0000 |
commit | 181577d130e6e44b835ae9f9c53af0f473c4aa2c (patch) | |
tree | cb76b66f440cc33956c04863bf60009bfece2cb9 /net/konverse/Makefile | |
parent | 0cb3d2990d3be0cb6e6bfe4f410dae02c3db89cb (diff) | |
download | FreeBSD-ports-181577d130e6e44b835ae9f9c53af0f473c4aa2c.zip FreeBSD-ports-181577d130e6e44b835ae9f9c53af0f473c4aa2c.tar.gz |
1. Update to use kdelibs3
2. Add patches to fix compilation under gcc3
Obtained from: konverse project CVS [2]
Diffstat (limited to 'net/konverse/Makefile')
-rw-r--r-- | net/konverse/Makefile | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/net/konverse/Makefile b/net/konverse/Makefile index 14e3bf7..1b42f0d 100644 --- a/net/konverse/Makefile +++ b/net/konverse/Makefile @@ -7,32 +7,32 @@ PORTNAME= konverse PORTVERSION= 0.2 +PORTREVISION= 1 CATEGORIES= net kde MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= perky@FreeBSD.org -USE_KDELIBS_VER=2 +USE_KDELIBS_VER=3 GNU_CONFIGURE= yes USE_GMAKE= yes +USE_REINPLACE= yes CONFIGURE_ARGS+=--with-extra-includes=${LOCALBASE}/include \ --x-includes=${X11BASE}/include \ - --x-libraries=${X11BASE}/lib - -REPATCH= cd ${WRKSRC} && ${SED} -REPATCHSUBST= -e 's/libqt\./lib${QTNAME}\./' \ - -e 's/-lqt/-l${QTNAME}/' \ - -e 's/\(LDADD.*\)-ldl/\1/' \ - -e 's/\(QDateTime.*\)timezone/\1local-\>tm_gmtoff/g' -REPATCHFILES= configure ${PORTNAME}/Makefile.in ${PORTNAME}/jabbercore.cpp -TMPSUFFIX= .temp + --x-libraries=${X11BASE}/lib \ + --with-qt-libraries=${QT_PREFIX}/lib pre-patch: -.for file in ${REPATCHFILES} - ${REPATCH} ${REPATCHSUBST} ${file} > ${file}${TMPSUFFIX} && \ - ${CAT} ${file}${TMPSUFFIX} > ${file} + ${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> |