diff options
author | Michael Johnson <ahze@FreeBSD.org> | 2006-08-24 23:34:20 +0000 |
---|---|---|
committer | Michael Johnson <ahze@FreeBSD.org> | 2006-08-24 23:34:20 +0000 |
commit | 7fc90ea87d27d9658158498318a75761412bda32 (patch) | |
tree | fa24d220e7f56eed1db9c8ecb274a19286988c70 /audio/faac/Makefile | |
parent | cfb3d4c3ee89044494764dad022b073d5f87fd8f (diff) | |
download | ports-7fc90ea87d27d9658158498318a75761412bda32.tar.gz ports-7fc90ea87d27d9658158498318a75761412bda32.zip |
Notes
Diffstat (limited to 'audio/faac/Makefile')
-rw-r--r-- | audio/faac/Makefile | 25 |
1 files changed, 7 insertions, 18 deletions
diff --git a/audio/faac/Makefile b/audio/faac/Makefile index e7912465ddf3..af971a4cc117 100644 --- a/audio/faac/Makefile +++ b/audio/faac/Makefile @@ -6,8 +6,7 @@ # PORTNAME= faac -PORTVERSION= 1.24 -PORTREVISION= 6 +PORTVERSION= 1.25 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED} MASTER_SITE_SUBDIR= faac @@ -16,37 +15,27 @@ MAINTAINER= multimedia@FreeBSD.org COMMENT= MPEG-2 and MPEG-4 AAC audio encoder PATCH_DEPENDS= ${BUILD_DEPENDS} +LIB_DEPENDS= mp4v2.0:${PORTSDIR}/multimedia/mpeg4ip-libmp4v2 NO_PACKAGE= Distribution in binary form is prohibited - WRKSRC= ${WRKDIR}/${PORTNAME} +USE_DOS2UNIX= yes +GNU_CONFIGURE= yes +USE_LDCONFIG= yes USE_AUTOTOOLS= automake:15 autoheader:259 libtool:15 AUTOMAKE_ARGS= --add-missing USE_GMAKE= yes +USE_DOS2UNIX= yes CONFIGURE_TARGET=--build=${ARCH}-portbld-freebsd${OSREL} CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" \ - HAVECXX="yes" - -INSTALLS_SHLIB= yes - -OPTIONS= MPEG4IP "Enable mpeg4 audio encoding" On + LIBS="-lmp4v2" .include <bsd.port.pre.mk> -.if exists(${LOCALBASE}/lib/libmp4v2.a) -WITH_MPEG4IP=yes -.endif - -.if !defined(WITHOUT_MPEG4IP) || defined(WITH_MPEG4IP) -LIB_DEPENDS+= mp4v2.0:${PORTSDIR}/multimedia/mpeg4ip-libmp4v2 -.endif - post-patch: @${ECHO_CMD} "" >>${WRKSRC}/libfaac/psych.h @cd ${WRKSRC}; ${SETENV} ${AUTOMAKE_ENV} ${ACLOCAL} -I .; \ ${SETENV} ${SCRIPTS_ENV} ${LIBTOOLIZE} --automake - ${REINPLACE_CMD} -e 's|$$lt_target|$$host|' \ - ${WRKSRC}/aclocal.m4 .include <bsd.port.post.mk> |