mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
7227864d65
Details: - Update to upstream version 2.8.8 - Use REINPLACE_CMD to set FAAD2_VERSION definition for consumers like multimedia/libquicktime. This is, however, no longer supported upstream, see https://sourceforge.net/p/faac/bugs/236/ In future, consumers need to change their detection mechanism for faad2 PR: 224464 Submitted by: mi
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
# Created by: Sean McGovern <sean@sfarc.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= faad2
|
|
PORTVERSION= 2.8.8
|
|
PORTEPOCH= 1
|
|
CATEGORIES= audio
|
|
MASTER_SITES= SF/faac/${PORTNAME}-src/${PORTNAME}-${PORTVERSION:R}.0
|
|
|
|
MAINTAINER= multimedia@FreeBSD.org
|
|
COMMENT= MPEG-2 and MPEG-4 AAC audio decoder
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= autoreconf gmake libtool
|
|
INSTALL_TARGET= install-strip
|
|
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -lpthread -L${LOCALBASE}/lib
|
|
USE_LDCONFIG= yes
|
|
|
|
post-extract:
|
|
@${LN} -sf faad.man ${WRKSRC}/frontend/faad.1
|
|
|
|
post-patch:
|
|
@${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
|
|
@${REINPLACE_CMD} -E -e 's|(FAAD2_VERSION +)"unknown"|\1"${PORTVERSION:R}"|' \
|
|
${WRKSRC}/include/neaacdec.h
|
|
|
|
post-configure:
|
|
@${REINPLACE_CMD} "s/444/644/g" ${WRKSRC}/common/mp4ff/Makefile
|
|
|
|
.include <bsd.port.mk>
|