1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-05 01:55:52 +00:00
freebsd-ports/devel/py-libplist/Makefile
Alberto Villa c6c79da969 - Update libplist to 1.11.
- 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.
2014-09-28 22:58:51 +00:00

41 lines
1.1 KiB
Makefile

# $FreeBSD$
PORTREVISION= 0
CATEGORIES= devel python
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= avilla@FreeBSD.org
COMMENT= Python bindings for libplist
LIB_DEPENDS= libplist.so:${PORTSDIR}/${MASTER_PORT}
BUILD_DEPENDS= cython:${PORTSDIR}/lang/cython
USES= python
CONFIGURE_ENV= PYTHON_LDFLAGS="`pkg-config --libs python-${PYTHON_VER}`"
SLAVE_PORT= yes
MASTERDIR= ${.CURDIR:H:H}/devel/libplist
# Required to reference installed libplist.
CFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
PLIST= ${.CURDIR}/pkg-plist
BUILD_WRKSRC= ${WRKSRC}/cython
INSTALL_WRKSRC= ${BUILD_WRKSRC}
PLIST_FILES= include/plist/cython/plist.pxd \
${PYTHONPREFIX_SITELIBDIR:S,^${PREFIX}/,,}/plist.a \
${PYTHONPREFIX_SITELIBDIR:S,^${PREFIX}/,,}/plist.so
pre-configure:
@${REINPLACE_CMD} -e 's,../src/libplist.la,-lplist,' \
-e 's,$$(plist_la_DEPENDENCIES),,' \
${BUILD_WRKSRC}/Makefile.in
post-install:
@${MKDIR} ${STAGEDIR}${PREFIX}/include/plist/cython
${INSTALL_DATA} ${INSTALL_WRKSRC}/plist.pxd \
${STAGEDIR}${PREFIX}/include/plist/cython
.include "${MASTERDIR}/Makefile"