diff options
author | mezz <mezz@FreeBSD.org> | 2007-06-04 13:20:33 +0800 |
---|---|---|
committer | mezz <mezz@FreeBSD.org> | 2007-06-04 13:20:33 +0800 |
commit | 280a44a82d0ddd2c7456b102cc0dedfb1879f291 (patch) | |
tree | cb94cc1c331a9cf578263fc2124461d7956c702b /multimedia/mpeg4ip | |
parent | cc816a994bef843c33423f8c2dc1eec674c75feb (diff) | |
download | freebsd-ports-gnome-280a44a82d0ddd2c7456b102cc0dedfb1879f291.tar.gz freebsd-ports-gnome-280a44a82d0ddd2c7456b102cc0dedfb1879f291.tar.zst freebsd-ports-gnome-280a44a82d0ddd2c7456b102cc0dedfb1879f291.zip |
Get it links with -lavcodec instead of libavcodec.a to fix the runtime of
mp4player and gmp4player to run video file. Bump the PORTREVISION.
Reported by: Heiko Recktenwald <uzs106@uni-bonn.de>
Diffstat (limited to 'multimedia/mpeg4ip')
-rw-r--r-- | multimedia/mpeg4ip/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/multimedia/mpeg4ip/Makefile b/multimedia/mpeg4ip/Makefile index 127650ee954b..9af28075deff 100644 --- a/multimedia/mpeg4ip/Makefile +++ b/multimedia/mpeg4ip/Makefile @@ -7,7 +7,7 @@ PORTNAME= mpeg4ip PORTVERSION= 1.5.0.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= multimedia audio ipv6 net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -137,7 +137,7 @@ PLIST_SUB+= XVID="@comment " .endif post-patch: - ${TOUCH} -f ${WRKSRC}/bootstrapped + @${TOUCH} -f ${WRKSRC}/bootstrapped # don't compile or use libmp4v2 @${REINPLACE_CMD} -e 's|mp4v2||; s|gnu||; s|mp4av||' \ ${WRKSRC}/lib/Makefile.in @@ -182,6 +182,8 @@ post-patch: ${WRKSRC}/doc/mp4v2/Makefile.in # objformat @${FIND} ${WRKSRC} -name configure | ${XARGS} ${REINPLACE_CMD} -e 's|echo aout|echo elf|' + @${REINPLACE_CMD} -e 's|$${enable_ffmpeg}/lib/libavcodec.a|-lavcodec|g' \ + ${WRKSRC}/configure post-install: @${MKDIR} ${DATADIR} |