mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
c6c79da969
- Split libusbmuxd.so into comms/libusbmuxd and update to 1.0.9. - Update libimobiledevice to 1.1.6. - Update usbmuxd to Git snapshot (~1.0.9). - Document usbmuxd upgrade process. This marks an important refactoring effort for proper iOS 7 support. It's packed with new features, tools, speed improvements, code refactoring, crash fixes, memory leak fixes and much more.
46 lines
943 B
Makefile
46 lines
943 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= libplist
|
|
PORTVERSION= 1.11
|
|
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
|
|
MAKE_JOBS_UNSAFE= yes
|
|
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>
|