diff options
author | Roman Bogorodskiy <novel@FreeBSD.org> | 2008-01-21 09:06:57 +0000 |
---|---|---|
committer | Roman Bogorodskiy <novel@FreeBSD.org> | 2008-01-21 09:06:57 +0000 |
commit | 258983ecaa56f5f50b08557fbd76839ba0c1e77c (patch) | |
tree | 8519527c5bf6ace645f7ab9264d5631518d0d56b /sysutils/conky | |
parent | 96b14bdcd4616b3a5ec3939bfdc85054cd00f683 (diff) | |
download | ports-258983ecaa56f5f50b08557fbd76839ba0c1e77c.tar.gz ports-258983ecaa56f5f50b08557fbd76839ba0c1e77c.zip |
Notes
Diffstat (limited to 'sysutils/conky')
-rw-r--r-- | sysutils/conky/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sysutils/conky/Makefile b/sysutils/conky/Makefile index 4df683c777dd..3bb1a698aa6a 100644 --- a/sysutils/conky/Makefile +++ b/sysutils/conky/Makefile @@ -64,6 +64,13 @@ CONFIGURE_ARGS+= --enable-mpd CONFIGURE_ARGS+= --disable-mpd .endif +.if defined(WITH_XMMS2) +LIB_DEPENDS+= xmmsclient.2:${PORTSDIR}/audio/xmms2 +CONFIGURE_ARGS+= --enable-xmms2 +.else +CONFIGURE_ARGS+= --disable-xmms2 +.endif + .if defined(WITHOUT_DOUBLE_BUFFER) CONFIGURE_ARGS+= --disable-double-buffer .endif @@ -80,6 +87,7 @@ pre-everything:: @${ECHO_MSG} "WITH_XFT=yes to enable XFT support" @${ECHO_MSG} "WITHOUT_OWN_WINDOW=yes to disable own window support" @${ECHO_MSG} "WITH_MPD=yes to enable MPD support" + @${ECHO_MSG} "WITH_XMMS2=yes to enable XMMS2 support" @${ECHO_MSG} "WITHOUT_DOUBLE_BUFFER=yes to disable double buffer support" @${ECHO_MSG} " " |