e63b4a59c9
Submitted by: pointyhat
52 lines
1.4 KiB
Makefile
52 lines
1.4 KiB
Makefile
# New ports collection makefile for: faad
|
|
# Date created: 8 January 2003
|
|
# Whom: Sean McGovern <sean@sfarc.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= faad2
|
|
PORTVERSION= 2.7
|
|
PORTREVISION= 1
|
|
PORTEPOCH= 1
|
|
CATEGORIES= audio
|
|
MASTER_SITES= SF/faac/${PORTNAME}-src/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= multimedia@FreeBSD.org
|
|
COMMENT= MPEG-2 and MPEG-4 AAC audio decoder
|
|
|
|
USE_BZIP2= yes
|
|
USE_DOS2UNIX= yes
|
|
USE_GMAKE= yes
|
|
MAKE_JOBS_SAFE= yes
|
|
USE_AUTOTOOLS= aclocal:110 autoheader:262 automake:110 autoconf:262 libtool:22
|
|
ACLOCAL_ARGS= -I . -I ${LOCALBASE}/share/aclocal
|
|
AUTOMAKE_ARGS= --add-missing
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \
|
|
LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}"
|
|
USE_LDCONFIG= yes
|
|
|
|
MAN1= faad.1
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-extract:
|
|
@${LN} -sf faad.man ${WRKSRC}/frontend/faad.1
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/AC_CONFIG_FILES(plugins/d' \
|
|
${WRKSRC}/configure.in
|
|
@${REINPLACE_CMD} -e 's|faad.man|faad.1|g' \
|
|
${WRKSRC}/frontend/Makefile.am
|
|
@${REINPLACE_CMD} -e 's|^AM_CFLAGS|AM_CPPFLAGS|g ; \
|
|
s|-iquote |-I|g' ${WRKSRC}/libfaad/Makefile.am
|
|
@${REINPLACE_CMD} -e 's|= -DUSE_|= -fPIC -DPIC -DUSE_|g' \
|
|
${WRKSRC}/common/mp4ff/Makefile.am
|
|
@${ECHO_CMD} "SUBDIRS = libfaad common frontend" > \
|
|
${WRKSRC}/Makefile.am
|
|
|
|
pre-configure:
|
|
@cd ${WRKSRC}; ${SETENV} ${AUTOTOOLS_ENV} ${LIBTOOLIZE} --automake
|
|
|
|
.include <bsd.port.post.mk>
|