blob: baa43754b029988e03cbf94a84ab44fc9f440301 (
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
|
# Created by: Samy Al Bahra <sbahra@kerneled.org>
# $FreeBSD$
PORTNAME= xmobar
PORTVERSION= 0.17
CATEGORIES= x11 haskell
MAINTAINER= haskell@FreeBSD.org
COMMENT= Minimalistic text-based status bar
LICENSE= BSD
USE_CABAL= mtl>=2.0 parsec stm>=2.3 X11>=1.6.1
USE_XORG= xrandr
EXECUTABLE= xmobar
STANDALONE= yes
INSTALL_PORTDATA= ${INSTALL_DATA} ${WRKSRC}/samples/xmobar.config ${DATADIR}
OPTIONS_DEFINE= XFT UTF8 MPD INOTIFY DATEZONE THREADED
OPTIONS_DEFAULT= UTF8
XFT_DESC= Use Xft to render text (UTF-8 support included)
UTF8_DESC= UTF-8 support
MPD_DESC= mpd support
INOTIFY_DESC= inotify support
DATEZONE_DESC= Localized date support
THREADED_DESC= Use threaded runtime
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.options.mk"
# Disable unsupported options
CONFIGURE_ARGS+= --flags="-with_iwlib -with_dbus -with_mpris"
.if ${PORT_OPTIONS:MXFT}
CONFIGURE_ARGS+= --flags="with_xft"
USE_CABAL+= utf8-string X11-xft>=0.2
.else
CONFIGURE_ARGS+= --flags="-with_xft"
.endif
.if ${PORT_OPTIONS:MUTF8}
CONFIGURE_ARGS+= --flags="with_utf8"
.if empty(PORT_OPTIONS:MXFT)
USE_CABAL+= utf8-string
.endif
.else
CONFIGURE_ARGS+= --flags="-with_utf8"
.endif
.if ${PORT_OPTIONS:MMPD}
CONFIGURE_ARGS+= --flags="with_mpd"
USE_CABAL+= libmpd
.else
CONFIGURE_ARGS+= --flags="-with_mpd"
.endif
.if ${PORT_OPTIONS:MINOTIFY}
CONFIGURE_ARGS+= --flags="with_inotify"
USE_CABAL+= hinotify>=0.3
.else
CONFIGURE_ARGS+= --flags="-with_inotify"
.endif
.if ${PORT_OPTIONS:MDATEZONE}
CONFIGURE_ARGS+= --flags="with_datezone"
USE_CABAL+= timezone-olson>=0.1 timezone-series>=0.1
.else
CONFIGURE_ARGS+= --flags="-with_datezone"
.endif
.if ${PORT_OPTIONS:MTHREADED}
CONFIGURE_ARGS+= --flags="with_threaded"
.else
CONFIGURE_ARGS+= --flags="-with_threaded"
.endif
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
.include <bsd.port.mk>
|