mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
51 lines
1.1 KiB
Makefile
51 lines
1.1 KiB
Makefile
# Created by: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= hawkvoice
|
|
PORTVERSION= 0.91
|
|
CATEGORIES= audio devel
|
|
MASTER_SITES= http://www.hawksoft.com/download/files/
|
|
DISTNAME= HawkVoiceDI091src
|
|
|
|
MAINTAINER= acm@FreeBSD.org
|
|
COMMENT= Portable sound and speech compression library
|
|
|
|
USE_ZIP= yes
|
|
NO_STAGE= yes
|
|
USE_DOS2UNIX= yes
|
|
USES= gmake
|
|
MAKEFILE= makefile.linux
|
|
USE_CSTD= gnu89
|
|
USE_LDCONFIG= yes
|
|
|
|
LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS}
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
MAKE_ENV= MAKE="${GMAKE}"
|
|
|
|
WRKSRC= ${WRKDIR}/HawkVoiceDI/src
|
|
|
|
OPTIONS_DEFINE= OPTIMIZED_CFLAGS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${ARCH} == "amd64" || ${ARCH} == "ia64"
|
|
CFLAGS+= -fPIC -DPIC
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS}
|
|
CFLAGS+= -funroll-all-loops -ffast-math -fomit-frame-pointer -D_GNU_SOURCE -D_REENTRANT
|
|
.endif
|
|
|
|
post-patch:
|
|
@${FIND} ${WRKSRC} -type f -exec ${REINPLACE_CMD} -e 's|<malloc.h>|<stdlib.h>|g' "{}" \;
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for FILE in api.txt HVDIchanges.txt readme.txt cryptapi.txt
|
|
${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|