cd5ac27b08
this involves is this: Cull GL from Qt by default, but still provide a Qt+GL library that may or may not have threads. Then also provide a Qt library that has threads but not GL. This allows us to make KDE2 depend on a library that will *not* have threads, ever. Threads will be revisited at a later date. Ports that require GL support need to be updated to use the hacked library, libqtgl.so.4. The net result is that we bloat our qt2 package by 1.5-2.5MB for compatability. Also, static qt will not have GL support. Introduce bsd.kde.mk, which will be tested on bento before becoming fully activated. Replace qt22-static with qt2-static, since it's just a proxy. Update qt-designer to depend on qt23. Also make the old hack to package the correct lib obsolete by using PLIST_SUB instead. Miscellaneous changes: remove LIBQTFILE from CONFIGURE_ENV, it's not used anymore. Solve namespace pollution problems with the devel/pth and devel/libgnugetopt ports. Hopefully. Suggested by: ade, asami, sobomax (bsd.kde.mk) Repocopied by: asami (qt22-static --> qt2-static)
68 lines
2 KiB
Makefile
68 lines
2 KiB
Makefile
# New ports collection makefile for: KDE libraries 2
|
|
# Date created: Fri Apr 14 2000 15:05:00 EDT
|
|
# Whom: will
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= kdelibs
|
|
PORTVERSION= 2.1
|
|
CATEGORIES= x11 kde
|
|
MASTER_SITES= ${MASTER_SITE_KDE}
|
|
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/distribution/tar/generic/src
|
|
|
|
MAINTAINER= will@FreeBSD.org
|
|
|
|
LIB_DEPENDS= tiff.4:${PORTSDIR}/graphics/tiff \
|
|
audiofile.0:${PORTSDIR}/audio/libaudiofile \
|
|
mimelib.3:${PORTSDIR}/converters/kdesupport2
|
|
|
|
USE_OPENSSL= yes
|
|
USE_QT2= yes
|
|
MOC?= ${X11BASE}/bin/moc2
|
|
SOMAJOR= 4
|
|
SOMINOR= 0
|
|
USE_BZIP2= yes
|
|
USE_NEWGCC= yes
|
|
INSTALLS_SHLIB= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
CONFIGURE_ARGS+=--with-qt-includes=${X11BASE}/include/qt2 \
|
|
--with-qt-libraries=${X11BASE}/lib \
|
|
--with-extra-libs=${LOCALBASE}/lib
|
|
CONFIGURE_ENV= MOC="${MOC}" LIBQT="-lqt2" \
|
|
CPPFLAGS="-I${LOCALBASE}/include -I${PREFIX}/include -D_GETOPT_H" \
|
|
LIBS="-Wl,-export-dynamic -L${LOCALBASE}/lib -ljpeg -lgcc -lstdc++"
|
|
USE_GMAKE= yes
|
|
MAKE_ENV= SOMAJOR="${SOMAJOR}" SOMINOR="${SOMINOR}"
|
|
PLIST_SUB+= LIBVER="${SOMAJOR}"
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
pre-fetch:
|
|
.if ${OSVERSION} <= 410002
|
|
@${ECHO}
|
|
@${ECHO} " NOTICE"
|
|
@${ECHO}
|
|
@${ECHO} "Your OpenSSL installation could be out of date. This is"
|
|
@${ECHO} "just a warning, but if your system's world was built on"
|
|
@${ECHO} "sources earlier than August 20 along RELENG_4 or older,"
|
|
@${ECHO} "then KDE2 will not build with SSL support."
|
|
@${ECHO}
|
|
.endif
|
|
|
|
pre-configure:
|
|
(find ${WRKSRC} -name Makefile.in | xargs ${PERL} -pi.orig -e \
|
|
"s@version-info 1:0@version-info ${SOMAJOR}:${SOMINOR}@g; \
|
|
s@version-info 3:0@version-info ${SOMAJOR}:${SOMINOR}@g")
|
|
|
|
post-install:
|
|
.for LIB in DCOP kab kdecore kdesu kdeui kfile kformula kio kjs \
|
|
kparts kspell ksycoca kjava
|
|
@${LN} -sf ${PREFIX}/lib/lib${LIB}.so.${SOMAJOR} ${PREFIX}/lib/lib${LIB}.so
|
|
.endfor
|
|
.for LIB in artsc artsflow artsflow_idl kmid kmedia2_idl qtmcop soundserver_idl
|
|
@${LN} -sf ${PREFIX}/lib/lib${LIB}.so.0 ${PREFIX}/lib/lib${LIB}.so
|
|
.endfor
|
|
|
|
.include <bsd.port.post.mk>
|