diff options
Diffstat (limited to 'graphics/php4-ffmpeg')
-rw-r--r-- | graphics/php4-ffmpeg/Makefile | 37 | ||||
-rw-r--r-- | graphics/php4-ffmpeg/distinfo | 3 | ||||
-rw-r--r-- | graphics/php4-ffmpeg/files/patch-config.m4 | 27 | ||||
-rw-r--r-- | graphics/php4-ffmpeg/pkg-descr | 11 |
4 files changed, 0 insertions, 78 deletions
diff --git a/graphics/php4-ffmpeg/Makefile b/graphics/php4-ffmpeg/Makefile deleted file mode 100644 index 80f78bcf317e..000000000000 --- a/graphics/php4-ffmpeg/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -# New ports collection makefile for: php4-ffmpeg -# Date created: 2006-10-19 -# Whom: Jose Alonso Cardenas Marquez <acm@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= ffmpeg -PORTVERSION= 0.5.1 -PORTREVISION= 1 -CATEGORIES= graphics -MASTER_SITES= SF/${PORTNAME}-php/${PORTNAME}-php/${PORTVERSION} -PKGNAMEPREFIX= php4- -DISTNAME= ${PORTNAME}-php-${PORTVERSION} -EXTRACT_SUFX= .tbz2 - -MAINTAINER= acm@FreeBSD.org -COMMENT= The ffmpeg shared extension for php - -LIB_DEPENDS= gd.4:${PORTSDIR}/graphics/gd \ - avutil.1:${PORTSDIR}/multimedia/ffmpeg - -BROKEN= does not compile with ffmpeg 0.5 and later -DEPRECATED= development continues only for php5 -EXPIRATION_DATE= 2009-10-12 - -CFLAGS+= -I${LOCALBASE}/include -DEFAULT_PHP_VER=4 -IGNORE_WITH_PHP=5 -USE_BZIP2= yes -USE_PHP= yes -USE_PHPIZE= yes -USE_PHPEXT= yes - -CONFIGURE_ARGS+= --with-ffmpeg=${LOCALBASE}/include - -.include <bsd.port.mk> diff --git a/graphics/php4-ffmpeg/distinfo b/graphics/php4-ffmpeg/distinfo deleted file mode 100644 index 7e4fa2aa54b8..000000000000 --- a/graphics/php4-ffmpeg/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (ffmpeg-php-0.5.1.tbz2) = 705e306c0687cf3fb4743c2a7e847c2f -SHA256 (ffmpeg-php-0.5.1.tbz2) = bbdb2091084129abb266e33b8dc3ea14b3870e8f3ab7a26141c322c6c1b86d8a -SIZE (ffmpeg-php-0.5.1.tbz2) = 1603431 diff --git a/graphics/php4-ffmpeg/files/patch-config.m4 b/graphics/php4-ffmpeg/files/patch-config.m4 deleted file mode 100644 index 3be77b9a5689..000000000000 --- a/graphics/php4-ffmpeg/files/patch-config.m4 +++ /dev/null @@ -1,27 +0,0 @@ ---- config.m4.orig 2006-09-30 02:14:15.000000000 +0800 -+++ config.m4 2008-07-28 15:53:18.099676966 +0800 -@@ -6,7 +6,11 @@ - - AC_MSG_CHECKING(for ffmpeg headers) - for i in $PHP_FFMPEG /usr/local /usr ; do -- if test -f $i/include/ffmpeg/avcodec.h; then -+ if test -f $i/include/libavcodec/avcodec.h; then -+ FFMPEG_DIR=$i -+ FFMPEG_INCDIR="$i/include/libavcodec $i/include/libavformat" -+ break -+ elif test -f $i/include/ffmpeg/avcodec.h; then - FFMPEG_DIR=$i - FFMPEG_INCDIR=$i/include/ffmpeg - break -@@ -45,7 +49,10 @@ - - PHP_ADD_LIBRARY_WITH_PATH(avcodec, $FFMPEG_LIBDIR, FFMPEG_SHARED_LIBADD) - PHP_ADD_LIBRARY_WITH_PATH(avformat, $FFMPEG_LIBDIR, FFMPEG_SHARED_LIBADD) -- PHP_ADD_INCLUDE($FFMPEG_INCDIR) -+ -+ for i in $FFMPEG_INCDIR; do -+ PHP_ADD_INCLUDE($i) -+ done - - PHP_NEW_EXTENSION(ffmpeg, ffmpeg-php.c ffmpeg_movie.c ffmpeg_frame.c ffmpeg_animated_gif.c, $ext_shared,, \\$(GDLIB_CFLAGS)) - PHP_SUBST(FFMPEG_SHARED_LIBADD) diff --git a/graphics/php4-ffmpeg/pkg-descr b/graphics/php4-ffmpeg/pkg-descr deleted file mode 100644 index d37829bb1543..000000000000 --- a/graphics/php4-ffmpeg/pkg-descr +++ /dev/null @@ -1,11 +0,0 @@ -The ffmpeg-php is an extension for PHP that adds an easy to use, -object-oriented API for accessing and retrieving information from video and -audio files. It has methods for returning frames from movie files as images -that can be manipulated using PHP's image functions. This works well for -automatically creating thumbnail images from movies. ffmpeg-php is also useful -for reporting the duration and bitrate of audio files (mp3, wma...). - -The ffmpeg-php can access many of the video formats supported by ffmpeg (mov, -avi, mpg, wmv...) - -WWW: http://ffmpeg-php.sourceforge.net/ |