# $MidnightBSD: trunk/comms/usbmuxd/Makefile 17221 2014-09-15 03:13:06Z laffer1 $

PORTNAME=	usbmuxd
PORTVERSION=	1.0.8
CATEGORIES=	comms
MASTER_SITES=	http://www.libimobiledevice.org/downloads/

MAINTAINER=	ports@MidnightBSD.org
COMMENT=	Daemon for multiplexing connections over USB to iPhone/iPod Touch

LIB_DEPENDS=	plist:${PORTSDIR}/devel/libplist

USES=		cmake pkgconfig tar:bzip2
USE_LDCONFIG=	yes

PORTDOCS=	AUTHORS README README.devel

OPTIONS_DEFINE=	INOTIFY

INOTIFY_DESC=	Use inotify instead of polling (saves energy)

.include <bsd.mport.options.mk>

.if ${PORT_OPTIONS:MINOTIFY}
LIB_DEPENDS+=	inotify:${PORTSDIR}/devel/libinotify
CMAKE_ARGS+=	-DWANT_INOTIFY:BOOL=TRUE
.else
CMAKE_ARGS+=	-DWANT_INOTIFY:BOOL=FALSE
.endif

.if ${OSVERSION} <= 4016
IGNORE=		requires libusb 1.0.3
.endif

post-patch:
	@${REINPLACE_CMD} -e 's,$${LIB_SUFFIX}/pkgconfig,data/pkgconfig,' \
		${WRKSRC}/CMakeLists.txt
	@${REINPLACE_CMD} -e 's,/usr/local,${LOCALBASE},g' \
		${WRKSRC}/Modules/FindInotify.cmake

pre-install:
	@${REINPLACE_CMD} -e '1 s,python,env python,' \
		${WRKSRC}/python-client/*.py

post-install:
	@${MKDIR} ${DATADIR}
	${INSTALL_SCRIPT} ${WRKSRC}/python-client/*.py ${DATADIR}
.if ${PORT_OPTIONS:MDOCS}
	@${MKDIR} ${DOCSDIR}
	${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}
.endif

.include <bsd.port.mk>
