blob: f578bfdd9b892f39cefd6410de829f531b9f052d (
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
|
# Created by: Grzegorz Blach <gblach@FreeBSD.org>
# $FreeBSD$
PORTNAME= libmpdclient
PORTVERSION= 2.10
CATEGORIES= audio
MASTER_SITES= http://www.musicpd.org/download/libmpdclient/2/
MAINTAINER= gblach@FreeBSD.org
COMMENT= API library for interfacing MPD
GNU_CONFIGURE= yes
USES= tar:xz gmake libtool pathfix
USE_LDCONFIG= yes
INSTALL_TARGET= install-strip
OPTIONS_DEFINE= DOCS DOXYGEN
OPTIONS_SUB= yes
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MDOCS} && ${PORT_OPTIONS:MDOXYGEN}
BUILD_DEPENDS+= doxygen:${PORTSDIR}/devel/doxygen
.else
CONFIGURE_ARGS= --disable-documentation
.endif
.include <bsd.port.mk>
|