0f583d8700
Plasma5 ports At the moment KDE ports use bsd.kde4.mk to handle their dependencies. When working on the ports for KDE Frameworks and Plasma5 it seemed to be more reasonable to create a new kde.mk instead of adding an bsd.kde5.mk. The kde.mk in this review is a stripped down version of the one we are using in the KDE Test repositories plasma5 branch [1] to only contain the parts relevant to the current KDE4 ports in the portstree [2]. Changes to the KDE Ports needed by this: Replace USE_KDE4 by USE_KDE [3] Add USES=kde:4 [4] [1] http://src.mouf.net/area51/view/branches/plasma5/KDE/Mk/Uses/kde.mk [2] The version in the plasma5 branch also handles frameworks/plasma5 and handles MASTER_SITES via a KDE_DIST variable similar to bsd.qt.mk for Qt Ports -- I chose to leave this out for now, as the diff is already large enough. [3] I chose USE_KDE instead of USE_KDE4, USE_KDE5, USE_KDEX as the version we want is already specified as argument to kde:<arg> [4] For KDE Frameworks and Plasma5 ports this would be kde:5 PR: 210667 Approved by: portmgr, mat (mentor), rakuco (mentor) Reviewed by: mat, rakuco Differential Revision: https://reviews.freebsd.org/D6961
57 lines
1.8 KiB
Makefile
57 lines
1.8 KiB
Makefile
# Created by: Martin Wilke <miwi@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= kdeutils
|
|
PORTVERSION= ${KDE4_VERSION}
|
|
CATEGORIES= misc kde
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Collection of utilities for KDE 4
|
|
|
|
USES= kde:4 metaport
|
|
|
|
OPTIONS_DEFINE= ARK FILELIGHT KCALC KCHARSELECT KDF KFLOPPY KGPG \
|
|
KREMOTECONTROL KTIMER KWALLET PRINTMANAGER \
|
|
SUPERKARAMBA SWEEPER
|
|
OPTIONS_DEFAULT= ${OPTIONS_DEFINE}
|
|
|
|
ARK_DESC= Archiving tool Ark
|
|
ARK_RUN_DEPENDS= ${KDE_PREFIX}/bin/ark:archivers/ark
|
|
|
|
FILELIGHT_DESC= File system viewer Filelight
|
|
FILELIGHT_RUN_DEPENDS= ${KDE_PREFIX}/bin/filelight:sysutils/filelight-kde4
|
|
|
|
KCALC_DESC= Scientific calculator KCalc
|
|
KCALC_RUN_DEPENDS= ${KDE_PREFIX}/bin/kcalc:math/kcalc
|
|
|
|
KCHARSELECT_DESC= Character selector KCharSelect
|
|
KCHARSELECT_RUN_DEPENDS= ${KDE_PREFIX}/bin/kcharselect:deskutils/kcharselect
|
|
|
|
KDF_DESC= Disk usage tool KDiskFree
|
|
KDF_RUN_DEPENDS= ${KDE_PREFIX}/bin/kdf:sysutils/kdf
|
|
|
|
KFLOPPY_DESC= Floppy formatter KFloppy
|
|
KFLOPPY_RUN_DEPENDS= ${KDE_PREFIX}/bin/kfloppy:sysutils/kfloppy
|
|
|
|
KGPG_DESC= Encryption tool KGpg
|
|
KGPG_RUN_DEPENDS= ${KDE_PREFIX}/bin/kgpg:security/kgpg-kde4
|
|
|
|
KREMOTECONTROL_DESC= KRemoteControl
|
|
KREMOTECONTROL_RUN_DEPENDS= ${KDE_PREFIX}/bin/krcdnotifieritem:comms/kremotecontrol
|
|
|
|
KTIMER_DESC= Countdown launcher KTimer
|
|
KTIMER_RUN_DEPENDS= ${KDE_PREFIX}/bin/ktimer:x11-clocks/ktimer
|
|
|
|
KWALLET_DESC= Password manager KWallet
|
|
KWALLET_RUN_DEPENDS= ${KDE_PREFIX}/bin/kwalletmanager:security/kwalletmanager
|
|
|
|
PRINTMANAGER_DESC= Print manager
|
|
PRINTMANAGER_RUN_DEPENDS= ${KDE_PREFIX}/lib/kde4/kcm_printer_manager.so:print/kde4-print-manager
|
|
|
|
SUPERKARAMBA_DESC= Widget framework SuperKaramba
|
|
SUPERKARAMBA_RUN_DEPENDS= ${KDE_PREFIX}/bin/superkaramba:deskutils/superkaramba
|
|
|
|
SWEEPER_DESC= System cleaner Sweeper
|
|
SWEEPER_RUN_DEPENDS= ${KDE_PREFIX}/bin/sweeper:sysutils/sweeper
|
|
|
|
.include <bsd.port.mk>
|