forked from Lainports/freebsd-ports
Based on the new policy of all maintained ports reset when maintaner is absent for 3 months. Bug#226400 for science/py-tensorflow is ignored since 2018-03-06 (3+ months). portscout database indicates that 48.94% of his ports aren't updated.
33 lines
830 B
Makefile
33 lines
830 B
Makefile
# Created by: jagapen@home.com
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libffcall
|
|
PORTVERSION= 1.13
|
|
CATEGORIES= devel
|
|
MASTER_SITES= GNU
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Foreign function call libraries
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BROKEN_armv6= fails to build: avcall-armhf.s:46:2: error: '.syntax divided' arm assembly not supported
|
|
BROKEN_armv7= fails to build: avcall-armhf.s:46:2: error: '.syntax divided' arm assembly not supported
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= gmake libtool
|
|
USE_LDCONFIG= yes
|
|
|
|
CONFIGURE_ARGS= --enable-shared
|
|
CONFIGURE_TARGET= ${ARCH:S/amd64/x86_64/}-portbld-${OPSYS:tl}${OSREL}
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
CFLAGS+= -fPIC
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libavcall.so \
|
|
${STAGEDIR}${PREFIX}/lib/libcallback.so \
|
|
${STAGEDIR}${PREFIX}/lib/libtrampoline.so
|
|
|
|
.include <bsd.port.mk>
|