blob: 32258bf29a479c4cd1f91e2c6ebd140a834470f9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
# 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>
|