mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
1fd64ca33a
- 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.
45 lines
921 B
Makefile
45 lines
921 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= libplist
|
|
PORTVERSION= 1.12
|
|
PORTREVISION?= 0
|
|
CATEGORIES?= devel
|
|
MASTER_SITES= http://www.libimobiledevice.org/downloads/
|
|
|
|
MAINTAINER?= avilla@FreeBSD.org
|
|
COMMENT?= Library to handle Apple Property List format
|
|
|
|
LICENSE?= LGPL21
|
|
|
|
SLAVE_PORT?= no
|
|
|
|
USES+= compiler libtool pathfix pkgconfig tar:bzip2
|
|
GNU_CONFIGURE= yes
|
|
INSTALL_TARGET= install-strip
|
|
|
|
.if ${SLAVE_PORT} == no
|
|
|
|
USE_GNOME= libxml2
|
|
CONFIGURE_ARGS= --without-cython
|
|
USE_LDCONFIG= ${LOCALBASE}/lib
|
|
|
|
PORTDOCS= AUTHORS NEWS README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.endif # ${SLAVE_PORT} == no
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
pre-build:
|
|
.if ${CHOSEN_COMPILER_TYPE} == gcc && ${COMPILER_VERSION} < 45
|
|
@${REINPLACE_CMD} -e '/__attribute__/ s,deprecated(x),deprecated(),' \
|
|
${WRKSRC}/include/plist/plist.h
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|