39 lines
922 B
Makefile
39 lines
922 B
Makefile
PORTNAME= simd-viterbi
|
|
PORTVERSION= 2.0.3
|
|
PORTREVISION= 2
|
|
CATEGORIES= math
|
|
MASTER_SITES= http://www.ka9q.net/code/fec/
|
|
|
|
MAINTAINER= freebsduser@paradisegreen.co.uk
|
|
COMMENT= Fast Viterbi CODEC library
|
|
WWW= http://www.ka9q.net/code/fec/
|
|
|
|
GNU_CONFIGURE= yes
|
|
GNU_CONFIGURE_MANPREFIX=${PREFIX}/share
|
|
USES= gmake
|
|
USE_LDCONFIG= yes
|
|
MAKEFILE= makefile
|
|
|
|
PLIST_FILES= include/parity.h include/viterbi27.h include/viterbi29.h \
|
|
lib/libviterbi.a lib/libviterbi.so lib/libviterbi.so.2 \
|
|
share/man/man3/simd-viterbi.3.gz
|
|
PLIST= ${WRKDIR}/pkg-plist
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} != i386 || defined(PACKAGE_BUILDING)
|
|
CONFIGURE_ARGS+= --enable-port
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|gcc|${CC}|' ${WRKSRC}/makefile.in
|
|
|
|
pre-install:
|
|
.for simd in sse2 sse mmx port
|
|
@if [ -f ${WRKSRC}/libviterbi_${simd}.a ]; then \
|
|
${ECHO_CMD} 'lib/libviterbi_${simd}.a' >> ${PLIST}; \
|
|
fi
|
|
.endfor
|
|
|
|
.include <bsd.port.post.mk>
|