blob: 7d9b254a1065998f5e17fa7945d6abb05e08161f (
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
|
# New ports collection makefile for: xmobar
# Date created: November 7, 2008
# Whom: Samy Al Bahra <sbahra@kerneled.org>
#
# $FreeBSD$
PORTNAME= xmobar
PORTVERSION= 0.12
CATEGORIES= x11 haskell
MAINTAINER= haskell@FreeBSD.org
COMMENT= A minimalistic text based status bar
LICENSE= BSD
USE_CABAL= mtl parsec stm X11>=1.3.0
USE_XORG= x11
EXECUTABLE= xmobar
STANDALONE= yes
PORTDATA= *
INSTALL_PORTDATA= ${INSTALL_DATA} ${WRKSRC}/samples/xmobar.config ${DATADIR}
OPTIONS= XFT "Use Xft to render text (UTF-8 support included)" off \
UTF8 "UTF-8 support" on \
MPD "mpd support" off
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.options.mk"
.include <bsd.port.options.mk>
# Disable Linux-only options
CONFIGURE_ARGS+= --flags="-with_inotify -with_iwlib"
.if defined(WITH_XFT)
CONFIGURE_ARGS+= --flags="with_xft"
USE_CABAL+= utf8-string X11-xft>=0.2
.else
CONFIGURE_ARGS+= --flags="-with_xft"
.endif
.if defined(WITH_UTF8)
CONFIGURE_ARGS+= --flags="with_utf8"
.if !defined(WITH_XFT)
USE_CABAL+= utf8-string
.endif
.else
CONFIGURE_ARGS+= --flags="-with_utf8"
.endif
.if defined(WITH_MPD)
CONFIGURE_ARGS+= --flags="with_mpd"
USE_CABAL+= libmpd
.else
CONFIGURE_ARGS+= --flags="-with_mpd"
.endif
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
.include <bsd.port.mk>
|