60d1a83c2a
- Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight
52 lines
1.4 KiB
Makefile
52 lines
1.4 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= libmpsse
|
|
PORTVERSION= 1.3
|
|
CATEGORIES= devel
|
|
MASTER_SITES= GOOGLE_CODE
|
|
|
|
MAINTAINER= uffe@uffe.org
|
|
COMMENT= Open source library for SPI/I2C control via FTDI chips
|
|
|
|
LICENSE= GPLv2
|
|
|
|
BUILD_DEPENDS= swig2.0:${PORTSDIR}/devel/swig20
|
|
LIB_DEPENDS= libftdi.so:${PORTSDIR}/devel/libftdi
|
|
|
|
USES= gmake pkgconfig python:2
|
|
USE_AUTOTOOLS= autoconf
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
CFLAGS+= -I${LOCALBASE}/include -fPIC
|
|
LDFLAGS+= -L${LOCALBASE}/lib -lftdi
|
|
|
|
CONFIGURE_WRKSRC= ${WRKSRC}/src
|
|
BUILD_WRKSRC= ${WRKSRC}/src
|
|
INSTALL_WRKSRC= ${WRKSRC}/src
|
|
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
CONFIGURE_ENV= SWIG="swig2.0"
|
|
|
|
MAKE_ARGS= CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
|
|
|
|
PORTDOCS= INSTALL COPYING README README.* AN_135_MPSSE_Basics.pdf
|
|
PORTEXAMPLES= *
|
|
|
|
PLIST_FILES= ${LOCALBASE}/lib/libmpsse.so ${LOCALBASE}/lib/libmpsse.a ${LOCALBASE}/include/mpsse.h \
|
|
${PYTHON_SITELIBDIR}/mpsse.py ${PYTHON_SITELIBDIR}/pylibmpsse.py ${PYTHON_SITELIBDIR}/_pylibmpsse.so
|
|
|
|
pre-install:
|
|
${MKDIR} ${STAGEDIR}/${LOCALBASE}/lib/
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}/${DOCSDIR}
|
|
(cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} "! -name Makefile")
|
|
${MKDIR} ${STAGEDIR}/${EXAMPLESDIR}
|
|
(cd ${WRKSRC}/src/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} "! -name Makefile")
|
|
|
|
post-stage:
|
|
${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/_pylibmpsse.so
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libmpsse.so
|
|
|
|
.include <bsd.port.mk>
|