mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
183f2a3017
to the final release of KDE 2.0. Kevin Lo <kevlo@FreeBSD.org> will continue as the new maintainer. He has commit privileges on the KDE tree, making him an excellent candidate for this job. I'll be behind the scenes for awhile, since there are some structural changes I'd like to make but I'd rather have Kevin do the work. Please, people, direct your patches at Kevin and watch his "freetime deprivation process" _really_ start. :-P
72 lines
2.1 KiB
Makefile
72 lines
2.1 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.0
|
|
CATEGORIES= x11 x11-toolkits
|
|
MASTER_SITES= ${MASTER_SITE_KDE}
|
|
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/distribution/tar/generic/src
|
|
|
|
MAINTAINER= kevlo@FreeBSD.org
|
|
|
|
LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \
|
|
png.4:${PORTSDIR}/graphics/png \
|
|
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-dir=${X11BASE} --enable-shared \
|
|
--with-qt-includes=${X11BASE}/include/qt2 \
|
|
--with-qt-libraries=${X11BASE}/lib \
|
|
--with-extra-libs=${LOCALBASE}/lib
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${PREFIX}/include" \
|
|
MOC="${MOC}" LIBQT="-lqt2" LIBQTFILE="libqt2" \
|
|
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:
|
|
.for NUM in 1 3
|
|
(find ${WRKSRC} -name Makefile.in | xargs ${PERL} -pi -e \
|
|
"s@version-info ${NUM}:0@version-info ${SOMAJOR}:${SOMINOR}@g")
|
|
.endfor
|
|
|
|
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>
|