mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
f564508406
kdeaccessibility4 and kdeutils4 are now meta ports. deskutils/kdepim4 updated to match KDE SC version, old kdepim preserved in deskutils/kdepim44. Follow UPDATING instruction! New ports: - accessibility/kaccessible - accessibility/kmag - accessibility/kmousetool - accessibility/kmouth - archivers/ark - comms/kremotecontrol - deskutils/kcharselect - deskutils/kdepim44 - deskutils/kdepim44-runtime - deskutils/superkaramba - devel/kdebindings4-perl-perlkde - devel/kdebindings4-perl-perlqt - math/analitza - math/kcalc - misc/kde4-l10n-fa - security/kgpg-kde4 - security/kwallet - sysutils/kdf - sysutils/kfloppy - sysutils/sweeper - vietnamese/kde4-l10n - x11-clocks/ktimer - x11/kactivities - x11/libkonq Removed ports: - devel/kdebindings4-kross-interpreters - devel/kdebindings4-python - devel/kdebindings4-ruby - devel/kdebindings4-smoke
105 lines
2.8 KiB
Makefile
105 lines
2.8 KiB
Makefile
# New ports collection makefile for: KDE4
|
|
# Date created: Sun May 14 2000 00:50:02
|
|
# Whom: Will Andrews <will@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= kde
|
|
PORTVERSION= ${KDE4_VERSION}
|
|
CATEGORIES= x11 kde
|
|
MASTER_SITES= # empty
|
|
DISTFILES= # none
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= The meta-port for KDE Software Compilation 4
|
|
|
|
LATEST_LINK= kde4
|
|
|
|
USE_KDE4= baseapps_run kdelibs_run kdeprefix oxygen_run \
|
|
pimlibs_run runtime_run workspace_run
|
|
NO_BUILD= yes
|
|
|
|
OPTIONS= KDEACCESSIBILITY "Accessibility applications" on \
|
|
KDEADMIN "Administration utilities" on \
|
|
KDEARTWORK "Additional screensavers and wallpapers" on \
|
|
KDEBINDINGS "Bindings for programming languages" off \
|
|
KDEEDU "Entertaining, educational programs" on \
|
|
KDEGAMES "Collection of games" on \
|
|
KDEGRAPHICS "Graphics utilities" on \
|
|
KDEMULTIMEDIA "Multimedia applications" on \
|
|
KDENETWORK "Network-related programs" on \
|
|
KDEPIM "Personal information management" on \
|
|
KDEPLASMA "Extra plasmoids and plugins for Plasma" on \
|
|
KDESDK "Software development kit" on \
|
|
KDETOYS "Miscellaneous small applications" on \
|
|
KDEUTILS "Set of generic utilities" on \
|
|
KDEWEBDEV "Web development environment" on
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.ifndef(WITHOUT_KDEACCESSIBILITY)
|
|
RUN_DEPENDS+= kdeaccessibility>=4.8.0:${PORTSDIR}/accessibility/kdeaccessibility4
|
|
.endif
|
|
|
|
.ifndef(WITHOUT_KDEADMIN)
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/bin/kuser:${PORTSDIR}/sysutils/kdeadmin4
|
|
.endif
|
|
|
|
.ifndef(WITHOUT_KDEARTWORK)
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/bin/kxsconfig:${PORTSDIR}/x11-themes/kdeartwork4
|
|
.endif
|
|
|
|
.ifdef(WITH_KDEBINDINGS)
|
|
RUN_DEPENDS+= kdebindings>=4.1.0:${PORTSDIR}/devel/kdebindings4
|
|
.endif
|
|
|
|
.ifndef(WITHOUT_KDEEDU)
|
|
RUN_DEPENDS+= kdeedu>=4.1.0:${PORTSDIR}/misc/kdeedu4
|
|
.endif
|
|
|
|
.ifndef(WITHOUT_KDEGAMES)
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/bin/kmines:${PORTSDIR}/games/kdegames4
|
|
.endif
|
|
|
|
.ifndef(WITHOUT_KDEGRAPHICS)
|
|
RUN_DEPENDS+= kdegraphics>=4.1.0:${PORTSDIR}/graphics/kdegraphics4
|
|
.endif
|
|
|
|
.ifndef(WITHOUT_KDEMULTIMEDIA)
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/bin/kmix:${PORTSDIR}/multimedia/kdemultimedia4
|
|
.endif
|
|
|
|
.ifndef(WITHOUT_KDENETWORK)
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/bin/kget:${PORTSDIR}/net/kdenetwork4
|
|
.endif
|
|
|
|
.ifndef(WITHOUT_KDEPIM)
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/bin/kmail:${PORTSDIR}/deskutils/kdepim44
|
|
.endif
|
|
|
|
.ifndef(WITHOUT_KDEPLASMA)
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/bin/lancelot:${PORTSDIR}/deskutils/kdeplasma-addons
|
|
.endif
|
|
|
|
.ifndef(WITHOUT_KDESDK)
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/bin/kompare:${PORTSDIR}/devel/kdesdk4
|
|
.endif
|
|
|
|
.ifndef(WITHOUT_KDETOYS)
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/bin/kteatime:${PORTSDIR}/x11-clocks/kdetoys4
|
|
.endif
|
|
|
|
.ifndef(WITHOUT_KDEUTILS)
|
|
RUN_DEPENDS+= kdeutils>=4.8.0:${PORTSDIR}/misc/kdeutils4
|
|
.endif
|
|
|
|
.ifndef(WITHOUT_KDEWEBDEV)
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/bin/klinkstatus:${PORTSDIR}/www/kdewebdev4
|
|
.endif
|
|
|
|
do-install:
|
|
${DO_NADA}
|
|
|
|
.include <bsd.port.mk>
|