of KDE 3.5.10 for FreeBSD. The official KDE 3.5.10 release notes can be found at: http://www.kde.org/announcements/announce-3.5.10.php While not a very exciting release in terms of features, 3.5.10 brings a couple of nice bugfixes and translation updates to those who choose to stay with KDE 3.5. The fixes are thinly spread across KPDF with a number of crash fixes, KGPG and probably most interesting various fixes in kicker, KDE3's panel: * Improved visibility on transparent backgrounds * Themed arrow buttons in applets that were missing them * Layout and antialiasing fixes in various applets Approved by: portmgr (erwin/pav)
60 lines
1.7 KiB
Makefile
60 lines
1.7 KiB
Makefile
# New ports collection makefile for: xscreensaver-kde
|
|
# Date created: July 08 2004
|
|
# Whom: Michael Nottebrock <lofi@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xscreensaver-kde
|
|
PORTVERSION= ${KDE_VERSION}
|
|
PORTREVISION= 0
|
|
CATEGORIES= x11 kde
|
|
MASTER_SITES= ${MASTER_SITE_KDE}
|
|
MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src
|
|
PKGNAMEPREFIX= kdeartwork-
|
|
DISTNAME= kdeartwork-${PORTVERSION}
|
|
DIST_SUBDIR= KDE
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Support for xscreensaver blankers in KDE
|
|
|
|
CONFLICTS= kdeartwork-3.1.* kdeartwork-3.2.[0-3]
|
|
|
|
USE_KDELIBS_VER=3
|
|
PREFIX= ${KDE_PREFIX}
|
|
|
|
USE_BZIP2= yes
|
|
USE_AUTOTOOLS= libtool:15
|
|
USE_GMAKE= yes
|
|
WRKSRC= ${WRKDIR}/kdeartwork-${PORTVERSION}
|
|
|
|
USE_LDCONFIG= yes
|
|
LDCONFIG_DIRS+= %%PREFIX%%/lib %%PREFIX%%/lib/kde3
|
|
|
|
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if exists(${LOCALBASE}/share/applications/xscreensaver-properties.desktop)
|
|
WITH_XSGNOME= yes
|
|
.elif exists(${LOCALBASE}/bin/screensaver)
|
|
WITH_XSGNOME= yes
|
|
.else
|
|
WITH_XS= yes
|
|
.endif
|
|
|
|
.if defined(WITH_XS) && !defined(WITH_XSGNOME)
|
|
BUILD_DEPENDS+= xscreensaver:${PORTSDIR}/x11/xscreensaver
|
|
RUN_DEPENDS+= xscreensaver:${PORTSDIR}/x11/xscreensaver
|
|
.endif # defined(WITH_XS)
|
|
|
|
.if defined(WITH_XSGNOME)
|
|
BUILD_DEPENDS+= ${LOCALBASE}/share/applications/xscreensaver-properties.desktop:${PORTSDIR}/x11/xscreensaver-gnome
|
|
RUN_DEPENDS+= ${LOCALBASE}/share/applications/xscreensaver-properties.desktop:${PORTSDIR}/x11/xscreensaver-gnome
|
|
.endif # defined(WITH_XSGNOME)
|
|
|
|
pre-configure:
|
|
@${ECHO_CMD} "kscreensaver" > ${WRKSRC}/inst-apps
|
|
@${REINPLACE_CMD} -e 's|kdesavers||g' -e 's|kpartsaver||g' -e 's|xsavers||g' \
|
|
${WRKSRC}/kscreensaver/Makefile.in
|
|
|
|
.include <bsd.port.post.mk>
|