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
92 lines
2.4 KiB
Makefile
92 lines
2.4 KiB
Makefile
# New ports collection Makefile for: kdeutils
|
|
# Date created: 2008-01-31
|
|
# Whom: Martin Wilke <miwi@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= kdeutils
|
|
PORTVERSION= ${KDE4_VERSION}
|
|
CATEGORIES= misc kde
|
|
MASTER_SITES= # empty
|
|
DISTFILES= # empty
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Collection of utilities for KDE 4
|
|
|
|
LATEST_LINK= ${PORTNAME}4
|
|
|
|
USE_KDE4= kdeprefix
|
|
NO_BUILD= yes
|
|
|
|
OPTIONS= ARK "Install archiving tool Ark" on \
|
|
FILELIGHT "Install file system viewer Filelight" on \
|
|
KCALC "Install scientific calculator KCalc" on \
|
|
KCHARSELECT "Install character selector KCharSelect" on \
|
|
KDF "Install disk usage tool KDiskFree" on \
|
|
KFLOPPY "Install floppy formatter KFloppy" on \
|
|
KGPG "Install encryption tool KGpg" on \
|
|
KREMOTECONTROL "Install KRemoteControl" on \
|
|
KTIMER "Install countdown launcher KTimer" on \
|
|
KWALLET "Install password manager KWallet" on \
|
|
PRINTER_APPLET "Install printer system tray utility" on \
|
|
SUPERKARAMBA "Install widget framework SuperKaramba" on \
|
|
SWEEPER "Install system cleaner Sweeper" on
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.ifdef(WITH_ARK)
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/bin/ark:${PORTSDIR}/archivers/ark
|
|
.endif
|
|
|
|
.ifdef(WITH_FILELIGHT)
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/bin/filelight:${PORTSDIR}/sysutils/filelight-kde4
|
|
.endif
|
|
|
|
.ifdef(WITH_KCALC)
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/bin/kcalc:${PORTSDIR}/math/kcalc
|
|
.endif
|
|
|
|
.ifdef(WITH_KCHARSELECT)
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/bin/kcharselect:${PORTSDIR}/deskutils/kcharselect
|
|
.endif
|
|
|
|
.ifdef(WITH_KDF)
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/bin/kdf:${PORTSDIR}/sysutils/kdf
|
|
.endif
|
|
|
|
.ifdef(WITH_KFLOPPY)
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/bin/kfloppy:${PORTSDIR}/sysutils/kfloppy
|
|
.endif
|
|
|
|
.ifdef(WITH_KGPG)
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/bin/kgpg:${PORTSDIR}/security/kgpg-kde4
|
|
.endif
|
|
|
|
.ifdef(WITH_KREMOTECONTROL)
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/bin/krcdnotifieritem:${PORTSDIR}/comms/kremotecontrol
|
|
.endif
|
|
|
|
.ifdef(WITH_KTIMER)
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/bin/ktimer:${PORTSDIR}/x11-clocks/ktimer
|
|
.endif
|
|
|
|
.ifdef(WITH_KWALLET)
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/bin/kwalletmanager:${PORTSDIR}/security/kwallet
|
|
.endif
|
|
|
|
.ifdef(WITH_PRINTER_APPLET)
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/bin/printer-applet:${PORTSDIR}/print/kdeutils4-printer-applet
|
|
.endif
|
|
|
|
.ifdef(WITH_SUPERKARAMBA)
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/bin/superkaramba:${PORTSDIR}/deskutils/superkaramba
|
|
.endif
|
|
|
|
.ifdef(WITH_SWEEPER)
|
|
RUN_DEPENDS+= ${KDE4_PREFIX}/bin/sweeper:${PORTSDIR}/sysutils/sweeper
|
|
.endif
|
|
|
|
do-install:
|
|
${DO_NADA}
|
|
|
|
.include <bsd.port.mk>
|