diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2012-06-29 12:42:04 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2012-06-29 12:42:04 +0000 |
commit | 222461c302e52a3848555e999ecc7a10f98b278e (patch) | |
tree | 4fad0f8d9c328a570a49371daf5f0078d7075272 /misc/xosd | |
parent | b6155c63444b79580e9bd13727472581d1ed66f1 (diff) | |
download | ports-222461c302e52a3848555e999ecc7a10f98b278e.tar.gz ports-222461c302e52a3848555e999ecc7a10f98b278e.zip |
Notes
Diffstat (limited to 'misc/xosd')
-rw-r--r-- | misc/xosd/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/misc/xosd/Makefile b/misc/xosd/Makefile index dd5e7c2c540c..4d07d8f03f74 100644 --- a/misc/xosd/Makefile +++ b/misc/xosd/Makefile @@ -34,11 +34,13 @@ MAN3= xosd.3 xosd_create.3 xosd_destroy.3 xosd_display.3 \ xosd_set_shadow_offset.3 xosd_set_vertical_offset.3 \ xosd_show.3 xosd_uninit.3 -OPTIONS= XMMS "Install XMMS-OSD plugin" on +OPTIONS_DEFINE= XMMS +OPTIONS_DEFAULT= XMMS +XMMS_DESC= Install XMMS-OSD plugin .include <bsd.port.pre.mk> -.if !defined(WITHOUT_XMMS) +.if ${PORT_OPTIONS:MXMMS} LIB_DEPENDS+= xmms.4:${PORTSDIR}/multimedia/xmms \ gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf PLIST_SUB= WITH_XMMS="" @@ -54,4 +56,4 @@ pre-patch: @${REINPLACE_CMD} -e 's,^\(CFLAGS =\)\(.*\)$$,\1 -I.. \2,g' ${WRKSRC}/$f .endfor -.include <bsd.port.post.mk> +.include <bsd.port.mk> |