freebsd-ports/audio/faad/Makefile
Baptiste Daroussin 51c60ddf7f Convert to USES=dos2unix
While here stagify some of the ports
Modernize LIB_DEPENDS
Extract zip with bsdtar when possible
2013-11-18 13:45:44 +00:00

47 lines
1.3 KiB
Makefile

# Created by: Sean McGovern <sean@sfarc.net>
# $FreeBSD$
PORTNAME= faad2
PORTVERSION= 2.7
PORTREVISION= 4
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
USES= dos2unix gmake
USE_BZIP2= yes
USE_AUTOTOOLS= aclocal autoheader automake autoconf libtool
ACLOCAL_ARGS= -I . -I ${LOCALBASE}/share/aclocal
AUTOMAKE_ARGS= --add-missing
CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS}
LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS}
USE_LDCONFIG= yes
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
post-configure:
@${REINPLACE_CMD} "s/444/644/g" ${WRKSRC}/common/mp4ff/Makefile
post-install:
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libfaad.so.2
.include <bsd.port.mk>