diff options
author | lofi <lofi@FreeBSD.org> | 2004-03-10 03:41:12 +0800 |
---|---|---|
committer | lofi <lofi@FreeBSD.org> | 2004-03-10 03:41:12 +0800 |
commit | 344150edd9e7a3101f87e63d531bdae2b9dbb21f (patch) | |
tree | aa2a54a33e5e6163905ac68a0a01153dd9038687 /x11/kde3 | |
parent | 0bf4cb87335558d7d6c7a77212d01366ca69ca07 (diff) | |
download | freebsd-ports-gnome-344150edd9e7a3101f87e63d531bdae2b9dbb21f.tar.gz freebsd-ports-gnome-344150edd9e7a3101f87e63d531bdae2b9dbb21f.tar.zst freebsd-ports-gnome-344150edd9e7a3101f87e63d531bdae2b9dbb21f.zip |
Update to KDE 3.2.1 / QT 3.3.1
Important changes:
==================
KDE:
- Audio/arts does not install artswrapper anymore, instead it is provided by
audio/artswrapper. See UPDATING.
- misc/kdeaddons3 is now a metaport with
editors/kate-plugins
editors/vimpart
games/atlantikdesigner
misc/kaddressbook-plugins
misc/kfile-plugins
misc/kicker-applets
misc/knewsticker-scripts
misc/konq-plugins
misc/ksig
misc/renamedlgplugins
multimedia/noatun-plugins
net/kontact-plugins
as slave ports.
- A number of KDE ports now uses OPTIONS do make various WITH_* options more
visible.
- Plist fixes
- devel/kdevelop should be able to detect FreeBSD's autoconf/automake now for
newly created projects.
- kdebase will no longer remove previous KDM configurations. This won't take
effect during the update from 3.2.0 to 3.2.1 (as deinstalling 3.2.0 will still
remove the configuration), but subsequent updates will merge old configs.
QT:
- Previous versions of QT could be compiled with debugging-support enabled by
defining DEBUG. This switch has been renamed to the more unambiguous
WANT_QT_DEBUG (similar to WANT_KDE_DEBUG in the KDE ports).
Diffstat (limited to 'x11/kde3')
-rw-r--r-- | x11/kde3/Makefile.kde | 28 | ||||
-rw-r--r-- | x11/kde3/scripts/configure.kde3 | 2 |
2 files changed, 29 insertions, 1 deletions
diff --git a/x11/kde3/Makefile.kde b/x11/kde3/Makefile.kde index 1950b4f548d9..b814385ef3a3 100644 --- a/x11/kde3/Makefile.kde +++ b/x11/kde3/Makefile.kde @@ -92,6 +92,34 @@ CONFIGURE_ARGS+= --with-xinerama .endif .endif # !defined(_NO_KDE_XINERAMA) +.if defined(KDE_SPLIT) +KDE_SPLIT_VER?= ${KDE_VERSION} +# needed for case where src dir name != doc dir name +KDE_DOC_SPLIT?= ${KDE_SPLIT} +DISTNAME?= ${KDE_SPLIT_DIST}-${KDE_SPLIT_VER} +USE_REINPLACE= yes +.endif +# This must always be defined. +SPLITDEP_PREFIX?= ${PREFIX}/share/applications + +# Targets section +.if defined(KDE_SPLIT) +kde-split: + ${ECHO} "${KDE_SPLIT} doc" > ${WRKSRC}/inst-apps + ${REINPLACE_CMD} \ + "s,^SUBDIRS =.*${KDE_DOC_SPLIT}.*$$,SUBDIRS =\. ${KDE_DOC_SPLIT},g" \ + ${WRKSRC}/doc/Makefile.in + +kde-split-postinstall: + ${TOUCH} ${SPLITDEP_PREFIX}/${PKGNAME} + +.if !defined(KDE_SPLIT_NONSTANDARD) +pre-configure: kde-split +post-install: kde-split-postinstall +.endif +.endif + + .if defined(KDE_I18N) _NO_KDE_FIXPTHREAD= yes .endif diff --git a/x11/kde3/scripts/configure.kde3 b/x11/kde3/scripts/configure.kde3 index f42984b04304..bb2f49bf41c0 100644 --- a/x11/kde3/scripts/configure.kde3 +++ b/x11/kde3/scripts/configure.kde3 @@ -99,7 +99,7 @@ Please select what additional KDE modules you would like to install.\n\n" \ ## two files to get the delta and set that as shell variables. if [ -s $tempselection ]; then - ${CAT} $tempselection | ${SED} -E -e 's/KDEACCESS./KDEACCESSIBILITY/g' -e 's/[[:space:]]+/ /g' \ + ${CAT} $tempselection | ${SED} -E -e 's/[[:space:]]+/ /g' \ -e 's/"//g' | ${TR} '[:space:]' '\n' > $tempprocessed set `/usr/bin/comm -23 $tempallmodules $tempprocessed` fi |