blob: 03fde9765ec860f1dbb7ce0a38550cd590eca12d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# New ports collection makefile for: simd-viterbi
# Date created: 29 Jun 2005
# Whom: Thomas Sandford <freebsduser@paradisegreen.co.uk>
#
# $FreeBSD$
#
PORTNAME= simd-viterbi
PORTVERSION= 2.0.3
CATEGORIES= math
MASTER_SITES= http://www.ka9q.net/code/fec/
MAINTAINER= freebsduser@paradisegreen.co.uk
COMMENT= A fast Viterbi CODEC library
USE_REINPLACE= yes
GNU_CONFIGURE= yes
USE_GMAKE= yes
INSTALLS_SHLIB= yes
MAKEFILE= makefile
MAN3= simd-viterbi.3
PLIST_FILES= include/parity.h include/viterbi27.h include/viterbi29.h \
lib/libviterbi.a lib/libviterbi.so lib/libviterbi.so.2.0.1
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>
|