freebsd-ports/comms/libimobiledevice/Makefile
Alberto Villa 1fd64ca33a - Update libplist to 1.12.
- Update libusbmuxd to 1.0.10.
- Update libimobiledevice to 1.2.0.
- Update usbmuxd to 1.1.0.

This marks an important milestone with proper iOS 8 support that is
packed with new features, tools, speed improvements, code refactoring,
crash fixes, memory leak fixes and much more.
2015-06-11 15:07:48 +00:00

49 lines
1 KiB
Makefile

# $FreeBSD$
PORTNAME= libimobiledevice
PORTVERSION= 1.2.0
PORTREVISION?= 0
CATEGORIES?= comms
MASTER_SITES= http://www.${PORTNAME}.org/downloads/
MAINTAINER?= avilla@FreeBSD.org
COMMENT?= Library to communicate with Apple iOS devices
LICENSE?= LGPL21
SLAVE_PORT?= no
USES+= cpe libtool pathfix pkgconfig tar:bzip2
USE_OPENSSL= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS+=openssl_CFLAGS="-I${OPENSSLINC}" \
openssl_LIBS="-L${OPENSSLLIB} -lssl -lcrypto"
CFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
INSTALL_TARGET= install-strip
.if ${SLAVE_PORT} == no
LIB_DEPENDS= libplist.so:${PORTSDIR}/devel/libplist \
libusbmuxd.so:${PORTSDIR}/comms/libusbmuxd
USE_GNOME= glib20
CONFIGURE_ARGS+=--without-cython
USE_CSTD= gnu89
USE_LDCONFIG= yes
PORTDOCS= AUTHORS NEWS README
OPTIONS_DEFINE= DOCS
post-patch:
@${REINPLACE_CMD} -e 's, *@ssl_requires@,,' \
${WRKSRC}/src/${PORTNAME}*.pc.in
post-install:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
.endif # ${SLAVE_PORT} == no
.include <bsd.port.mk>