7277ec6a16
FreeBSD appears to use different pkg-config name for 0.1.x API but it doesn't matter much as 0.1, 1.0 and 2.0 share CFLAGS/LIBS.
40 lines
881 B
Makefile
40 lines
881 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= usbmuxd
|
|
DISTVERSION= 1.1.0
|
|
CATEGORIES= comms
|
|
MASTER_SITES= http://www.libimobiledevice.org/downloads/
|
|
|
|
MAINTAINER= avilla@FreeBSD.org
|
|
COMMENT= Daemon for multiplexing connections over USB to iPhone/iPod Touch
|
|
|
|
LICENSE= GPLv2 GPLv3
|
|
LICENSE_COMB= dual
|
|
|
|
LIB_DEPENDS= libplist.so:devel/libplist \
|
|
libimobiledevice.so:comms/libimobiledevice
|
|
|
|
USES= autoreconf cpe libtool pathfix pkgconfig tar:bzip2
|
|
CPE_VENDOR= nikias_bassen
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --without-systemd
|
|
|
|
PLIST_FILES= man/man1/${PORTNAME}.1.gz \
|
|
sbin/${PORTNAME}
|
|
|
|
PORTDOCS= AUTHORS NEWS README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
# TODO: add devd(8) rule.
|
|
@${REINPLACE_CMD} \
|
|
-e '/*cygwin*/ s,),|dragonfly*|*bsd*),' \
|
|
${WRKSRC}/configure.ac
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|