diff options
Diffstat (limited to 'multimedia')
161 files changed, 0 insertions, 7749 deletions
diff --git a/multimedia/ffmpeg-devel/Makefile b/multimedia/ffmpeg-devel/Makefile deleted file mode 100644 index dad98b383462..000000000000 --- a/multimedia/ffmpeg-devel/Makefile +++ /dev/null @@ -1,387 +0,0 @@ -# New ports collection makefile for: ffmpeg -# Date created: Tue Sep 25 15:52:09 BRT 2001 -# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= ffmpeg -DISTVERSION= 0.4.9-pre1 -PORTREVISION= 2 -CATEGORIES= multimedia audio net -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED} -MASTER_SITE_SUBDIR= ffmpeg - -MAINTAINER= lioux@FreeBSD.org -COMMENT= Hyper fast realtime audio/video encoder/converter, streaming server - -USE_GETOPT_LONG= yes -HAS_CONFIGURE= yes -USE_GMAKE= yes -USE_REINPLACE= yes -WANT_SDL= yes -CONFIGURE_ARGS= --cc="${CC}" --prefix="${PREFIX}" \ - --make="${GMAKE}" --enable-shared \ - --extra-ldflags="-L${LOCALBASE}/lib -L${X11BASE}/lib" \ - --extra-libs"-lm" \ - --disable-debug - -PLIST_SUB= SHLIB_VERSION=${SHLIB_VERSION} -INSTALLS_SHLIB= yes - -SHLIB_VERSION= 1 -# -DOC_FILES= COPYING Changelog README -# under subdir doc -DOC_DOCFILES= TODO faq.html ffmpeg-doc.html \ - ffplay-doc.html ffserver-doc.html \ - hooks.html optimization.txt -PORTDOCS= ${DOC_FILES} ${DOC_DOCFILES} -HEADER_FILES= libavcodec/avcodec.h libavcodec/common.h \ - libavcodec/dsputil.h -LIB_FILES= libavcodec/libavcodec.a libavformat/libavformat.a -MAN1= ffmpeg.1 - -.include <bsd.port.pre.mk> - -.if ${ARCH} == "alpha" -BROKEN= "Does not compile on alpha" -.endif - -.if exists(${LOCALBASE}/lib/libavformat.so.0) -BROKEN= Please remove previous version of ${PORTNAME} to continue build -.endif - -## -## arch detection -## -.if ${ARCH} != "i386" -WITHOUT_MMX= yes -.else -# only for i386 -EXTRA_PATCHES+= ${FILESDIR}/extra-bktr-patch-libavformat::Makefile -#. if ${OSVERSION} >= 502000 && !defined(WITH_OPTIMIZED_CFLAGS) -#CFLAGS+=-fomit-frame-pointer -#WITH_OPTIMIZED_CFLAGS=yes -#. endif -.endif - -## lib detection -## -## -## SDL -.if ${HAVE_SDL:Msdl} -WITH_SDL=yes -.endif -## faac -.if exists(${LOCALBASE}/lib/libfaac.so.0) -WITH_FAAC=yes -.endif -## freetype2 -.if exists(${LOCALBASE}/lib/libfreetype.so) -WITH_FREETYPE2=yes -.endif -## imlib2 -.if exists(${X11BASE}/lib/libImlib2.so) -WITH_IMLIB2=yes -.endif -## lame mp3 -.if exists(${LOCALBASE}/lib/libmp3lame.so.0) -WITH_MP3=yes -.endif -## vorbis -.if exists(${LOCALBASE}/lib/libvorbisenc.so.2) -WITH_VORBIS=yes -.endif -.if exists(${LOCALBASE}/lib/libfaad.so.0) -WITH_FAAD=yes -.endif - -## support activation -## -## PORTDOCS -.ifndef(NOPORTDOCS) -BUILD_DEPENDS+= texi2html:${PORTSDIR}/textproc/texi2html -.endif -## disable a52 -#.ifndef(WITHOUT_LIBA52) -#LIB_DEPENDS+= a52.0:${PORTSDIR}/audio/liba52 -# -#CONFIGURE_ARGS+= --enable-a52 \ -# --enable-a52bin -#.else -#CONFIGURE_ARGS+= --enable-a52 \ -# --disable-a52bin -#.endif -GPLLIBS= yes -# --enable-a52bin breaks build -CONFIGURE_ARGS+= --enable-a52 -## enable freetype2 -.if defined(WITH_FREETYPE2) -LIB_DEPENDS+= freetype.9:${PORTSDIR}/print/freetype2 - -PLIST_SUB+= DRAWTEXT="" -.else -PLIST_SUB+= DRAWTEXT="@comment " -.endif -## enable imlib2 -.if !defined(WITHOUT_VHOOK) && defined(WITH_IMLIB2) -LIB_DEPENDS+= Imlib2.3:${PORTSDIR}/graphics/imlib2 - -PLIST_SUB+= IMLIB2="" -.else -PLIST_SUB+= IMLIB2="@comment " -.endif -## disable mmx -.ifdef(WITHOUT_MMX) -CONFIGURE_ARGS+= --disable-mmx -.endif -## SDL -.ifdef(WITH_SDL) -USE_SDL= sdl - -MAN1+= ffplay.1 - -PLIST_SUB+= SDL="" -.else -PLIST_SUB+= SDL="@comment " -.endif -## mp3 -.ifdef(WITH_MP3) -LIB_DEPENDS+= mp3lame.0:${PORTSDIR}/audio/lame - -CONFIGURE_ARGS+= --enable-mp3lame -.endif -## optimization -.if ${OSVERSION} > 502124 -. ifdef(WITH_OPTIMIZED_CFLAGS) -CONFIGURE_ARGS+= --extra-cflags="-fPIC -DPIC -I${LOCALBASE}/include \ - -I${X11BASE}/include \ - -ffast-math -fomit-frame-pointer -fno-unit-at-a-time" \ - --extra-ldflags="-L${LOCALBASE}/lib -L${X11BASE}/lib -lm" -. else -CONFIGURE_ARGS+= --extra-cflags="-fPIC -DPIC -I${LOCALBASE}/include \ - -I${X11BASE}/include \ - -fomit-frame-pointer -fno-unit-at-a-time" \ - --extra-ldflags="-L${LOCALBASE}/lib -L${X11BASE}/lib -lm " -# --disable-opts -. endif -.else -CONFIGURE_ARGS+= --extra-cflags="-fPIC -DPIC -I${LOCALBASE}/include \ - -I${X11BASE}/include \ - -ffast-math -fomit-frame-pointer" \ - --extra-ldflags="-L${LOCALBASE}/lib -L${X11BASE}/lib -lm" -. else -CONFIGURE_ARGS+= --extra-cflags="-fPIC -DPIC -I${LOCALBASE}/include \ - -I${X11BASE}/include" \ - --extra-ldflags="-L${WRKSRC}/libavcodec -L${LOCALBASE}/lib -L${X11BASE}/lib -lm " -.endif - -## vhook -.ifndef(WITHOUT_VHOOK) -PLIST_SUB+= VHOOK="" -.else -CONFIGURE_ARGS+= -disable-vhook - -PLIST_SUB+= VHOOK="@comment " -.endif -## vorbis -.ifdef(WITH_VORBIS) -LIB_DEPENDS+= vorbisenc.2:${PORTSDIR}/audio/libvorbis - -CONFIGURE_ARGS+= --enable-vorbis -.endif -## faac -.ifdef(WITH_FAAC) -LIB_DEPENDS+= faac.0:${PORTSDIR}/audio/faac - -CONFIGURE_ARGS+= --enable-faac -.endif -## faad -.ifdef(WITH_FAAD) -LIB_DEPENDS+= faad.0:${PORTSDIR}/audio/faad - -CONFIGURE_ARGS+= --enable-faad --enable-faadbin -GPLLIBS= yes -.endif -## GPLLIBS -.ifdef(GPLLIBS) -CONFIGURE_ARGS+= --enable-gpl -.endif -## post processing -.ifndef(WITHOUT_POSTPROCESS) -CONFIGURE_ARGS+= --enable-shared-pp -PLIST_FILES+= include/ffmpeg/postproc/postprocess.h -PLIST_DIRS+= include/ffmpeg/postproc -.endif -## ffserver -.ifdef(WITHOUT_FFMPEG_FFSERVER) -CONFIGURE_ARGS+= --disable-ffserver - -PLIST_SUB+= FFSERVER="@comment " -.else -USE_RC_SUBR= yes -MAN1+= ffserver.1 - -PLIST_SUB+= FFSERVER="" -.endif -PLIST_DIRS+= include/ffmpeg - -pre-everything:: -.ifndef(WITH_FREETYPE2) - @${ECHO_MSG} 'Define WITH_FREETYPE2 to enable drawtext FREETYPE2 codec' - @${ECHO_MSG} -.endif -.ifndef(WITHOUT_LIBA52) - @${ECHO_MSG} "You can disable liba52 support by defining WITHOUT_LIBA52" - @${ECHO_MSG} -.endif -.ifndef(WITHOUT_MMX) - @${ECHO_MSG} "Define WITHOUT_MMX if your system does not support MMX" - @${ECHO_MSG} -.endif -.ifndef(WITH_SDL) - @${ECHO_MSG} 'Define WITH_SDL to enable ffplay SDL version' - @${ECHO_MSG} -.endif -.ifndef(WITH_MP3) - @${ECHO_MSG} 'Define WITH_MP3 to enable lame MP3 codec' - @${ECHO_MSG} -.endif -.ifndef(WITH_OPTIMIZED_CFLAGS) - @${ECHO_MSG} 'You can enable additional compilation optimizations' - @${ECHO_MSG} 'by defining WITH_OPTIMIZED_CFLAGS' - @${ECHO_MSG} -.endif -.ifndef(WITHOUT_POSTPROCESS) - @${ECHO_MSG} 'You can disable post process support by defining' - @${ECHO_MSG} 'WITHOUT_POSTPROCESS' - @${ECHO_MSG} 'Beware that this might break some ports that require it' - @${ECHO_MSG} -.endif -.ifndef(WITHOUT_VHOOK) - @${ECHO_MSG} 'You can disable vhook support by defining WITHOUT_VHOOK' - @${ECHO_MSG} -.endif -.ifndef(WITH_VORBIS) - @${ECHO_MSG} 'Define WITH_VORBIS to enable libvorbisenc VORBIS codec' - @${ECHO_MSG} -.endif -.ifndef(WITH_FAAC) - @${ECHO_MSG} 'Define WITH_FAAC to enable libfaac' - @${ECHO_MSG} -.endif -.ifndef(WITH_FAAD) - @${ECHO_MSG} 'Define WITH_FAAD to enable libfaad codec' - @${ECHO_MSG} -.endif -.ifndef(WITHOUT_FFMPEG_FFSERVER) - @${ECHO_MSG} 'Define WITHOUT_FFMPEG_FFSERVER to disable ffserver build' - @${ECHO_MSG} -.endif -.if ${ARCH} == "i386" -.if !(defined(WITH_BKTR_FORMAT) && defined(WITH_BKTR_DEV)) - @${ECHO_MSG} - @${ECHO_MSG} 'If you want to capture from a bktr(4) supported card' - @${ECHO_MSG} 'you will probably need to set the input device and format' - @${ECHO_MSG} 'You can set WITH_BKTR_FORMAT to NTSC or PAL and you can set' - @${ECHO_MSG} 'WITH_BKTR_DEV to 0, 1, 2 or 3 (1 is usually the tuner)' - @${ECHO_MSG} 'so for a PAL tuner make WITH_BKTR_FORMAT=PAL WITH_BKTR_DEV=1' - @${ECHO_MSG} - @${ECHO_MSG} 'Warning: invalid settings will probably dump cores' - @${ECHO_MSG} -.endif -.endif # ${ARCH} == i386 - -post-extract: -.if ${ARCH} == "i386" -# install booktree extension - @${CP} ${FILESDIR}/grab_bsdbktr.c ${WRKSRC}/libavformat/ -.endif # ${ARCH} == i386 - -post-patch: -# force detection of texi2html -.ifndef(NOPORTDOCS) - @${REINPLACE_CMD} -E \ - -e 's|^(texi2html=)no|\1yes|' \ - ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} -.endif -.ifndef(WITHOUT_FFMPEG_FFSERVER) - @${SED} -e 's|%%PREFIX%%|${PREFIX}|; s|%%RC_SUBR%%|${RC_SUBR}|' \ - ${FILESDIR}/ffserver.sh >${WRKDIR}/ffserver.sh - @${REINPLACE_CMD} -e "s!/etc/ffserver.conf!${PREFIX}/etc/ffserver.conf!g" \ - ${WRKSRC}/ffserver.c ${WRKSRC}/doc/ffserver-doc.texi - @${REINPLACE_CMD} -e 's!NoDaemon!# NoDaemon!g' \ - ${WRKSRC}/doc/ffserver.conf -.endif -.if ${ARCH} == "i386" -# we support "v4l" per default through Steve O'Hara-Smith's bktr(4) -# patch - @${REINPLACE_CMD} -E -e \ - 's|^(v4l).*$$|\1="yes"|' \ - ${WRKSRC}/configure -.ifdef(WITH_BKTR_FORMAT) - @${REINPLACE_CMD} -e \ - "s!VIDEO_FORMAT NTSC!VIDEO_FORMAT ${WITH_BKTR_FORMAT}!" \ - ${WRKSRC}/libavformat/grab_bsdbktr.c -.endif -.ifdef(WITH_BKTR_DEV) - @${REINPLACE_CMD} -e \ - "s!idev = 0!idev = ${WITH_BKTR_DEV}!" \ - ${WRKSRC}/libavformat/grab_bsdbktr.c -.endif -.endif # ${ARCH} == i386 -# malloc.h was deprecated in favor of stdlib.h - @${FIND} ${WRKSRC} -type f | \ - ${XARGS} -n 10 ${REINPLACE_CMD} -e \ - 's|malloc\.h|stdlib\.h|' -.ifndef(WITHOUT_LIBA52) - @${REINPLACE_CMD} -e 's|-ldl||' \ - ${WRKSRC}/configure -.endif -.ifdef(WITH_SDL) - @${REINPLACE_CMD} -E \ - -e 's|sdl-config|${SDL_CONFIG}|g' \ - ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} - @${FIND} ${WRKSRC} -type f | \ - ${XARGS} -n 10 ${REINPLACE_CMD} -E \ - -e 's|#include <SDL|#include <SDL11/SDL|' -.endif - -post-install: -.ifndef(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} -.for file in ${DOC_FILES} - @${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} -.endfor -.for file in ${DOC_DOCFILES} - @${INSTALL_DATA} ${WRKSRC}/doc/${file} ${DOCSDIR} -.endfor -.endif -.ifndef(WITHOUT_FFMPEG_FFSERVER) - @${INSTALL_DATA} ${WRKSRC}/doc/ffserver.conf \ - ${PREFIX}/etc/ffserver.conf.sample - @${INSTALL_SCRIPT} ${WRKDIR}/ffserver.sh ${PREFIX}/etc/rc.d -.endif -.for file in ${HEADER_FILES} -# fix header references prior to installation - @${REINPLACE_CMD} -e 's|"common.h"|<ffmpeg/common.h>|; \ - s|"avcodec.h"|<ffmpeg/avcodec.h>|' \ - ${WRKSRC}/${file} - @${INSTALL_DATA} ${WRKSRC}/${file} \ - ${PREFIX}/include/ffmpeg/${file:T} -# change headers back so reinstall target works - @${REINPLACE_CMD} -e 's|<ffmpeg/common.h>|"common.h"|; \ - s|<ffmpeg/avcodec.h>|"avcodec.h"|' \ - ${WRKSRC}/${file} -.endfor -.for file in ${LIB_FILES} - @${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/lib/${file:T} -.endfor -.ifndef(WITHOUT_POSTPROCESS) - @${MKDIR} ${PREFIX}/include/ffmpeg/postproc - @${INSTALL_DATA} ${WRKSRC}/libavcodec/libpostproc/postprocess.h \ - ${PREFIX}/include/ffmpeg/postproc/postprocess.h -.endif - -.include <bsd.port.post.mk> diff --git a/multimedia/ffmpeg-devel/distinfo b/multimedia/ffmpeg-devel/distinfo deleted file mode 100644 index 81f3247203c6..000000000000 --- a/multimedia/ffmpeg-devel/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (ffmpeg-0.4.9-pre1.tar.gz) = ea5587e3c66d50b1503b82ac4179c303 -SIZE (ffmpeg-0.4.9-pre1.tar.gz) = 1611332 diff --git a/multimedia/ffmpeg-devel/files/extra-bktr-patch-libavformat::Makefile b/multimedia/ffmpeg-devel/files/extra-bktr-patch-libavformat::Makefile deleted file mode 100644 index 25f7c23de3a0..000000000000 --- a/multimedia/ffmpeg-devel/files/extra-bktr-patch-libavformat::Makefile +++ /dev/null @@ -1,11 +0,0 @@ ---- libavformat/Makefile.orig Wed Jan 1 21:00:22 2003 -+++ libavformat/Makefile Wed Jan 1 21:01:27 2003 -@@ -21,7 +21,7 @@ - endif - - ifeq ($(CONFIG_VIDEO4LINUX),yes) --OBJS+= grab.o -+OBJS+= grab_bsdbktr.o - endif - - ifeq ($(CONFIG_AUDIO_OSS),yes) diff --git a/multimedia/ffmpeg-devel/files/ffserver.sh b/multimedia/ffmpeg-devel/files/ffserver.sh deleted file mode 100644 index 0ec0f5b65cf6..000000000000 --- a/multimedia/ffmpeg-devel/files/ffserver.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh -# -# $FreeBSD: /tmp/pcvs/ports/multimedia/ffmpeg-devel/files/Attic/ffserver.sh,v 1.1 2004-12-05 18:12:41 lioux Exp $ -# - -# PROVIDE: ffserver -# REQUIRE: NETWORKING -# KEYWORD: FreeBSD shutdown - -# -# Add the following lines to /etc/rc.conf to enable ffserver: -# -#ffserver_enable="YES" -# -ffserver_enable="NO" - -. %%RC_SUBR%% - -name=ffserver -rcvar=`set_rcvar` - -command=%%PREFIX%%/bin/${name} -required_files=%%PREFIX%%/etc/ffserver.conf - -load_rc_config ${name} -run_rc_command "$1" diff --git a/multimedia/ffmpeg-devel/files/grab_bsdbktr.c b/multimedia/ffmpeg-devel/files/grab_bsdbktr.c deleted file mode 100644 index 853cf55221f4..000000000000 --- a/multimedia/ffmpeg-devel/files/grab_bsdbktr.c +++ /dev/null @@ -1,320 +0,0 @@ -/* - * FreeBSD video grab interface - * Copyright (c) 2002 Steve O'Hara-Smith - * based on - * Linux video grab interface - * Copyright (c) 2000,2001 Gerard Lantau. - * and - * simple_grab.c Copyright (c) 1999 Roger Hardiman - * - * GPL virus inherited: - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - */ -#include "avformat.h" -#if __FreeBSD__ >= 502100 -#include <dev/bktr/ioctl_meteor.h> -#include <dev/bktr/ioctl_bt848.h> -#else -#include <machine/ioctl_meteor.h> -#include <machine/ioctl_bt848.h> -#endif -#include <unistd.h> -#include <fcntl.h> -#include <sys/ioctl.h> -#include <sys/mman.h> -#include <sys/time.h> -#include <signal.h> - -typedef struct { - int fd; - int tuner_fd; - int frame_format; /* see VIDEO_PALETTE_xxx */ - int width, height; - int frame_rate; - int frame_rate_base; - int64_t per_frame; -} VideoData; - -const char *video_device = "/dev/bktr0"; - -#define PAL 1 -#define PALBDGHI 1 -#define NTSC 2 -#define NTSCM 2 -#define SECAM 3 -#define PALN 4 -#define PALM 5 -#define NTSCJ 6 - -/* PAL is 768 x 576. NTSC is 640 x 480 */ -#define PAL_HEIGHT 576 -#define SECAM_HEIGHT 576 -#define NTSC_HEIGHT 480 - -#ifndef VIDEO_FORMAT -#define VIDEO_FORMAT NTSC -#endif - -static int bktr_dev[] = { METEOR_DEV0, METEOR_DEV1, METEOR_DEV2, - METEOR_DEV3, METEOR_DEV_SVIDEO }; - -static u_int8_t *video_buf; -static int nsignals = 0; -static void catchsignal(int signal) -{ - nsignals++; - return; -} - -static int bktr_init (const char *video_device, int width, int height, - int format, u_int8_t **video_buf, int *video_fd, int *tuner_fd, - int idev, double frequency) -{ - struct meteor_geomet geo; - int h_max; - long ioctl_frequency; - char *arg; - int c; - struct sigaction act,old; - - if (idev < 0 || idev > 4) - { - arg = getenv ("BKTR_DEV"); - if (arg) - idev = atoi (arg); - if (idev < 0 || idev > 4) - idev = 0; - } - - if (format < 1 || format > 6) - { - arg = getenv ("BKTR_FORMAT"); - if (arg) - format = atoi (arg); - if (format < 1 || format > 6) - format = VIDEO_FORMAT; - } - - if (frequency <= 0) - { - arg = getenv ("BKTR_FREQUENCY"); - if (arg) - frequency = atof (arg); - if (frequency <= 0) - frequency = 0.0; - } - - memset(&act,0,sizeof(act)); - sigemptyset(&act.sa_mask); - act.sa_handler = catchsignal; - sigaction(SIGUSR1,&act,&old); - - *tuner_fd = open ("/dev/tuner0", O_RDONLY); - if (*tuner_fd < 0) { - perror("Warning: Tuner not opened continuing"); - } - - *video_fd = open (video_device, O_RDONLY); - if (*video_fd < 0) { - perror (video_device); - return -1; - } - - geo.rows = height; - geo.columns = width; - geo.frames = 1; -// geo.oformat = METEOR_GEO_YUV_422 | METEOR_GEO_YUV_12; - geo.oformat = METEOR_GEO_YUV_PACKED; - - switch (format) { - case PAL: h_max = PAL_HEIGHT; c = BT848_IFORM_F_PALBDGHI; break; - case PALN: h_max = PAL_HEIGHT; c = BT848_IFORM_F_PALN; break; - case PALM: h_max = PAL_HEIGHT; c = BT848_IFORM_F_PALM; break; - case SECAM: h_max = SECAM_HEIGHT; c = BT848_IFORM_F_SECAM; break; - case NTSC: h_max = NTSC_HEIGHT; c = BT848_IFORM_F_NTSCM; break; - case NTSCJ: h_max = NTSC_HEIGHT; c = BT848_IFORM_F_NTSCJ; break; - default: h_max = PAL_HEIGHT; c = BT848_IFORM_F_PALBDGHI; break; - } - if (height <= h_max/2) { - geo.oformat |= METEOR_GEO_EVEN_ONLY; - } - - if (ioctl(*video_fd, METEORSETGEO, &geo) < 0) { - perror ("METEORSETGEO"); - return -1; - } - - if (ioctl(*video_fd, BT848SFMT, &c) < 0) { - perror ("BT848SFMT"); - return -1; - } - - c = bktr_dev[idev]; - if (ioctl(*video_fd, METEORSINPUT, &c) < 0) { - perror ("METEORSINPUT"); - return -1; - } - *video_buf = (u_int8_t *) mmap((caddr_t)0, width*height*2, - PROT_READ, MAP_SHARED, *video_fd, (off_t) 0); - if (*video_buf == MAP_FAILED) { - perror ("mmap"); - return -1; - } - if (frequency != 0.0) { - ioctl_frequency = (unsigned long)(frequency*16); - if (ioctl(*tuner_fd, TVTUNER_SETFREQ, &ioctl_frequency)<0) - perror("TVTUNER_SETFREQ"); - } - c = METEOR_CAP_CONTINOUS; - ioctl(*video_fd, METEORCAPTUR, &c); - c = SIGUSR1; - ioctl (*video_fd, METEORSSIGNAL, &c); - return 0; -} - -static void bktr_getframe(u_int64_t per_frame) -{ - u_int64_t curtime; - static u_int64_t last_frame_time = 0; - - curtime = av_gettime(); - if (!last_frame_time - || ((last_frame_time + per_frame) > curtime)) { - if (!usleep (last_frame_time + per_frame + per_frame/8 - curtime)) { - if (!nsignals) - printf ("\nSLEPT NO signals - %d microseconds late\n", - (int) (av_gettime() - last_frame_time - per_frame)); - } - } - nsignals = 0; - - last_frame_time = curtime; -} - -void bf_memcpy (char *dest, char *src, int size) -{ - while (size -= 2) - { - dest[0] = src[1]; - dest[1] = src[0]; - dest += 2; - src += 2; - } -} - -/* note: we support only one picture read at a time */ -static int grab_read_packet(AVFormatContext *s1, AVPacket *pkt) -{ - VideoData *s = s1->priv_data; - int size, halfsize; - - size = s->width * s->height; - halfsize = size << 1; - -// if (av_new_packet(pkt, size + halfsize) < 0) - if (av_new_packet(pkt, size + size) < 0) - return -EIO; - - bktr_getframe (s->per_frame); - pkt->pts = av_gettime() & ((1LL << 48) - 1); - bf_memcpy (pkt->data, video_buf, size + size); -// bf_memcpy (pkt->data, video_buf, size + halfsize); - -// return size + halfsize; - return size + size; -} - -static int grab_read_header (AVFormatContext *s1, AVFormatParameters *ap) -{ - VideoData *s = s1->priv_data; - AVStream *st; - int width, height; - int frame_rate; - int frame_rate_base; - int format = -1; - - if (!ap || ap->width <= 0 || ap->height <= 0 || ap->frame_rate <= 0) - return -1; - - width = ap->width; - height = ap->height; - frame_rate = ap->frame_rate; - frame_rate_base = ap->frame_rate_base; - - st = av_new_stream(s1, 0); - if (!st) - return -ENOMEM; - - s->width = width; - s->height = height; - s->frame_rate = frame_rate; - s->frame_rate_base = frame_rate_base; - s->per_frame = ((int64_t)1000000 * s->frame_rate_base) / s->frame_rate; - - st->codec.codec_type = CODEC_TYPE_VIDEO; -// st->codec.pix_fmt = PIX_FMT_YUV420P; - st->codec.pix_fmt = PIX_FMT_YUV422; - st->codec.codec_id = CODEC_ID_RAWVIDEO; - st->codec.width = width; - st->codec.height = height; - st->codec.frame_rate = frame_rate; - st->codec.frame_rate_base = frame_rate_base; - - av_set_pts_info(s1, 48, 1, 1000000); /* 48 bits pts in use */ - - if (ap->standard) { - if (!strcasecmp(ap->standard, "pal")) - format = PAL; - if (!strcasecmp(ap->standard, "secam")) - format = SECAM; - if (!strcasecmp(ap->standard, "ntsc")) - format = NTSC; - } - - if (bktr_init (video_device, width, height, format, &video_buf, - &(s->fd), &(s->tuner_fd), -1, 0.0) < 0) - return -EIO; - return 0; -} - -static int grab_read_close (AVFormatContext *s1) -{ - VideoData *s = s1->priv_data; - - int c = METEOR_CAP_STOP_CONT; - ioctl(s->fd, METEORCAPTUR, &c); - close(s->fd); - close(s->tuner_fd); - av_free(s); - return 0; -} - -AVInputFormat video_grab_device_format = { - "video4linux", - "video grab", - sizeof(VideoData), - NULL, - grab_read_header, - grab_read_packet, - grab_read_close, - flags: AVFMT_NOFILE, -}; - -int video_grab_init(void) -{ - av_register_input_format(&video_grab_device_format); - return 0; -} diff --git a/multimedia/ffmpeg-devel/files/patch-Makefile b/multimedia/ffmpeg-devel/files/patch-Makefile deleted file mode 100644 index a04053123a5f..000000000000 --- a/multimedia/ffmpeg-devel/files/patch-Makefile +++ /dev/null @@ -1,14 +0,0 @@ ---- Makefile.orig Sat Jul 17 11:05:15 2004 -+++ Makefile Sat Jul 17 11:04:42 2004 -@@ -81,8 +81,9 @@ - all: lib $(PROG) $(PROGTEST) $(VHOOK) $(QTFASTSTART) $(DOC) - - lib: -- $(MAKE) -C libavcodec all -- $(MAKE) -C libavformat all -+ $(MAKE) LDFLAGS="$(LDFLAGS)" -C libavcodec all -+ $(MAKE) LDFLAGS="$(LDFLAGS)" -C libavformat all -+ - - ffmpeg_g$(EXESUF): ffmpeg.o cmdutils.o .libs - $(CC) $(LDFLAGS) -o $@ ffmpeg.o cmdutils.o $(FFLIBS) $(EXTRALIBS) diff --git a/multimedia/ffmpeg-devel/files/patch-configure b/multimedia/ffmpeg-devel/files/patch-configure deleted file mode 100644 index 8aa0caaa7940..000000000000 --- a/multimedia/ffmpeg-devel/files/patch-configure +++ /dev/null @@ -1,29 +0,0 @@ ---- configure.orig Mon Jul 5 15:05:54 2004 -+++ configure Sun Dec 5 15:49:57 2004 -@@ -88,7 +88,7 @@ - mandir="" - bindir="" - cross_prefix="" --cc="gcc" -+cc="$CC" - ar="ar" - ranlib="ranlib" - make="make" -@@ -187,7 +187,7 @@ - BeOS) - prefix="/boot/home/config" - # helps building libavcodec --CFLAGS="-DPIC -fomit-frame-pointer" -+CFLAGS="$CFLAGS -DPIC -fomit-frame-pointer" - # 3 gcc releases known for BeOS, each with ugly bugs - gcc_version="`$cc -v 2>&1 | grep version | cut -d ' ' -f3-`" - case "$gcc_version" in -@@ -857,7 +857,7 @@ - EOF - - imlib2=no --if $cc -o $TMPE $TMPC -lImlib2 -lm > /dev/null 2>&1 ; then -+if $cc $CFLAGS $LDFLAGS -o $TMPE $TMPC -lImlib2 -lm > /dev/null 2>&1 ; then - imlib2=yes - fi - diff --git a/multimedia/ffmpeg-devel/files/patch-libavcodec::Makefile b/multimedia/ffmpeg-devel/files/patch-libavcodec::Makefile deleted file mode 100644 index 4ed42ea46e9d..000000000000 --- a/multimedia/ffmpeg-devel/files/patch-libavcodec::Makefile +++ /dev/null @@ -1,22 +0,0 @@ ---- libavcodec/Makefile.orig Sat Jul 17 11:07:57 2004 -+++ libavcodec/Makefile Sat Jul 17 11:09:21 2004 -@@ -197,7 +197,7 @@ - $(CC) $(SHFLAGS) -Wl,--output-def,$(@:.dll=.def) -o $@ $(OBJS) $(EXTRALIBS) $(AMREXTRALIBS) - -lib /machine:i386 /def:$(@:.dll=.def) - else -- $(CC) $(SHFLAGS) -o $@ $(OBJS) $(EXTRALIBS) $(AMREXTRALIBS) $(LDFLAGS) -+ $(CC) $(SHFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(EXTRALIBS) $(AMREXTRALIBS) - endif - - dsputil.o: dsputil.c dsputil.h -@@ -269,8 +269,8 @@ - install -s -m 755 $(SLIB) "$(prefix)" - else - install -d $(prefix)/lib -- install -s -m 755 $(SLIB) $(prefix)/lib/libavcodec-$(VERSION).so -- ln -sf libavcodec-$(VERSION).so $(prefix)/lib/libavcodec.so -+ install -s -m 755 $(SLIB) $(prefix)/lib/libavcodec.so.1 -+ cd $(prefix)/lib && ln -s libavcodec.so.1 libavcodec.so - ldconfig || true - endif - else diff --git a/multimedia/ffmpeg-devel/files/patch-libavcodec::alpha::simple_idct_alpha.c b/multimedia/ffmpeg-devel/files/patch-libavcodec::alpha::simple_idct_alpha.c deleted file mode 100644 index 9595454fd081..000000000000 --- a/multimedia/ffmpeg-devel/files/patch-libavcodec::alpha::simple_idct_alpha.c +++ /dev/null @@ -1,19 +0,0 @@ ---- libavcodec/alpha/simple_idct_alpha.c.bak Fri Dec 27 12:35:23 2002 -+++ libavcodec/alpha/simple_idct_alpha.c Tue May 13 21:21:42 2003 -@@ -24,8 +24,16 @@ - * and Falk Hueffner <falk@debian.org> - */ - -+#if (defined(__unix__) || defined(unix)) && !defined(USG) -+#include <sys/param.h> -+#endif -+ - #include "asm.h" - #include "../dsputil.h" -+ -+#if defined(__FreeBSD__) && __FreeBSD_version < 500000 -+typedef __int32_t int_fast32_t; -+#endif - - extern void (*put_pixels_clamped_axp_p)(const DCTELEM *block, uint8_t *pixels, - int line_size); diff --git a/multimedia/ffmpeg-devel/files/patch-libavcodec::bswap.h b/multimedia/ffmpeg-devel/files/patch-libavcodec::bswap.h deleted file mode 100644 index 8bef16c36abc..000000000000 --- a/multimedia/ffmpeg-devel/files/patch-libavcodec::bswap.h +++ /dev/null @@ -1,53 +0,0 @@ ---- libavcodec/bswap.h.orig Sun Dec 5 16:03:35 2004 -+++ libavcodec/bswap.h Sun Dec 5 16:06:48 2004 -@@ -10,6 +10,14 @@ - #include <byteswap.h> - #else - -+#if (defined(__unix__) || defined(unix)) && !defined(USG) -+#include <sys/param.h> -+#endif -+ -+#if defined(__FreeBSD__) && __FreeBSD_version >= 470000 -+#include <sys/endian.h> -+#endif -+ - #ifdef ARCH_X86 - static inline unsigned short ByteSwap16(unsigned short x) - { -@@ -18,7 +26,11 @@ - "0" (x)); - return x; - } -+#if defined(__FreeBSD__) && __FreeBSD_version >= 470000 -+#define bswap_16(x) (be16toh(x)) -+#else - #define bswap_16(x) ByteSwap16(x) -+#endif - - static inline unsigned int ByteSwap32(unsigned int x) - { -@@ -34,7 +46,11 @@ - "0" (x)); - return x; - } -+#if defined(__FreeBSD__) && __FreeBSD_version >= 470000 -+#define bswap_32(x) (be32toh(x)) -+#else - #define bswap_32(x) ByteSwap32(x) -+#endif - - static inline unsigned long long int ByteSwap64(unsigned long long int x) - { -@@ -45,7 +61,11 @@ - "0"(bswap_32((unsigned long)x)),"1"(bswap_32((unsigned long)(x>>32)))); - return __x.__ll; - } -+#if defined(__FreeBSD__) && __FreeBSD_version >= 510000 -+#define bswap_64(x) (be64toh(x)) -+#else - #define bswap_64(x) ByteSwap64(x) -+#endif - - #elif defined(ARCH_SH4) - diff --git a/multimedia/ffmpeg-devel/files/patch-libavformat::Makefile b/multimedia/ffmpeg-devel/files/patch-libavformat::Makefile deleted file mode 100644 index 36a7674c28e5..000000000000 --- a/multimedia/ffmpeg-devel/files/patch-libavformat::Makefile +++ /dev/null @@ -1,13 +0,0 @@ ---- libavformat/Makefile.orig Thu Sep 11 22:55:10 2003 -+++ libavformat/Makefile Thu Sep 11 23:12:50 2003 -@@ -88,8 +88,8 @@ - install: all - ifeq ($(BUILD_SHARED),yes) - install -d $(prefix)/lib -- install -s -m 755 $(SLIB) $(prefix)/lib/libavformat-$(VERSION).so -- ln -sf libavformat-$(VERSION).so $(prefix)/lib/libavformat.so -+ install -s -m 755 $(SLIB) $(prefix)/lib/libavformat.so.1 -+ ln -sf libavformat.so.1 $(prefix)/lib/libavformat.so - ldconfig || true - mkdir -p $(prefix)/include/ffmpeg - install -m 644 $(VPATH)/avformat.h $(prefix)/include/ffmpeg/avformat.h diff --git a/multimedia/ffmpeg-devel/files/patch-vhook::Makefile b/multimedia/ffmpeg-devel/files/patch-vhook::Makefile deleted file mode 100644 index cea89f3f74e5..000000000000 --- a/multimedia/ffmpeg-devel/files/patch-vhook::Makefile +++ /dev/null @@ -1,19 +0,0 @@ ---- vhook/Makefile.orig Fri Dec 5 20:07:04 2003 -+++ vhook/Makefile Fri Dec 5 20:07:55 2003 -@@ -29,13 +29,13 @@ - install -s -m 755 $(HOOKS) $(INSTDIR) - - imlib2.so: imlib2.o -- $(CC) -g -o $@ $(SHFLAGS) $< -lImlib2 -+ $(CC) -o $@ $(LDFLAGS) $(SHFLAGS) $< -lImlib2 - - drawtext.so: drawtext.o -- $(CC) -g -o $@ $(SHFLAGS) $< `freetype-config --libs` -+ $(CC) -o $@ $(LDFLAGS) $(SHFLAGS) $< `freetype-config --libs` - - %.so: %.o -- $(CC) -g -o $@ $(SHFLAGS) $< -+ $(CC) -o $@ $(LDFLAGS) $(SHFLAGS) $< - - clean: - rm -f *.o *.d .depend *.so *~ diff --git a/multimedia/ffmpeg-devel/pkg-descr b/multimedia/ffmpeg-devel/pkg-descr deleted file mode 100644 index cdb037459048..000000000000 --- a/multimedia/ffmpeg-devel/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ -[ excerpt (with adaptations) from developer's README ] -ffmpeg is a hyper fast realtime audio/video encoder, a streaming -server and a generic audio and video file converter. - -It can convert a standard video source into several file formats -based on DCT/motion compensation encoding. Sound is compressed in -MPEG audio layer 2 or using an AC3 compatible stream. - -What makes ffmpeg interesting ? -- Simple and efficient video encoder: outputs MPEG1, H263, Real - Video(tm), MPEG4, DIVX and MJPEG compatible bitstreams using the - same encoder core. -- Hyper fast MPEG audio layer 2 compression (50 times faster than - realtime on a K6 500). -[snip -> rest on website below] - -ffmpeg is made of two programs: -* ffmpeg: soft VCR which encodes in real time to several formats. - It can also encode from any supported input file format to any - input supported format. -* ffserver: high performance live broadcast streaming server based - on the ffmpeg core encoders. - -WWW: http://ffmpeg.sourceforge.net/ diff --git a/multimedia/ffmpeg-devel/pkg-plist b/multimedia/ffmpeg-devel/pkg-plist deleted file mode 100644 index 6bad3c0fbd6c..000000000000 --- a/multimedia/ffmpeg-devel/pkg-plist +++ /dev/null @@ -1,26 +0,0 @@ -bin/ffmpeg -%%SDL%%bin/ffplay -%%FFSERVER%%bin/ffserver -%%FFSERVER%%etc/ffserver.conf.sample -%%FFSERVER%%etc/rc.d/ffserver.sh -include/ffmpeg/avcodec.h -include/ffmpeg/avformat.h -include/ffmpeg/avio.h -include/ffmpeg/common.h -include/ffmpeg/dsputil.h -include/ffmpeg/rational.h -include/ffmpeg/rtp.h -include/ffmpeg/rtsp.h -include/ffmpeg/rtspcodes.h -lib/libavcodec.a -lib/libavcodec.so -lib/libavcodec.so.%%SHLIB_VERSION%% -lib/libavformat.a -lib/libavformat.so -lib/libavformat.so.%%SHLIB_VERSION%% -%%VHOOK%%%%DRAWTEXT%%lib/vhook/drawtext.so -%%VHOOK%%lib/vhook/fish.so -%%VHOOK%%%%IMLIB2%%lib/vhook/imlib2.so -%%VHOOK%%lib/vhook/null.so -%%VHOOK%%lib/vhook/ppm.so -%%VHOOK%%@dirrm lib/vhook diff --git a/multimedia/gstreamer-ffmpeg80/Makefile b/multimedia/gstreamer-ffmpeg80/Makefile deleted file mode 100644 index a84222c302b0..000000000000 --- a/multimedia/gstreamer-ffmpeg80/Makefile +++ /dev/null @@ -1,54 +0,0 @@ -# New ports collection makefile for: gstreamer ffmpeg -# Date created: Thu Feb 26 20:10:39 CET 2004 -# Whom: Koop Mast <kwm@rainbow-runner.nl> -# -# $FreeBSD$ -# - -PORTNAME= gstreamer -PORTVERSION= 0.8.4 -CATEGORIES= multimedia -MASTER_SITES= http://gstreamer.freedesktop.org/src/gst-ffmpeg/ -PKGNAMESUFFIX= -ffmpeg -DISTNAME= gst-ffmpeg-${PORTVERSION} - -MAINTAINER= kwm@FreeBSD.org -COMMENT= GStreamer plug-in for manipulating MPEG video streams - -LIB_DEPENDS= gstreamer-0.8.5:${PORTSDIR}/multimedia/gstreamer - -USE_X_PREFIX= yes -USE_BZIP2= yes -USE_REINPLACE= yes -USE_GMAKE= yes -USE_GNOME= gnomehack \ - gnometarget \ - gnomeprefix -USE_LIBTOOL_VER=15 -CONFIGURE_ENV= PKG_CONFIG=${PKG_CONFIG} \ - CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \ - LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" -PLIST_SUB= \ - VERSION="${GST_VERSION}" -WITHOUT_CPU_CFLAGS= yes - -PKG_CONFIG?="${LOCALBASE}/bin/pkg-config" -GST_VERSION=${PORTVERSION:C/..$//} - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 500000 -EXTRA_PATCHES= ${PATCHDIR}/extra-patch-gst-libs_ext_ffmpeg_libavformat_nut.c -.endif - -post-patch: - @${REINPLACE_CMD} -e \ - 's|make|${GMAKE}|' \ - ${WRKSRC}/gst-libs/ext/Makefile.in - -post-install: -# register plugins - -@${X11BASE}/bin/gst-register-${GST_VERSION} \ - --gst-registry=${PREFIX}/share/gnome/cache/gstreamer-${GST_VERSION}/registry.xml 2>/dev/null - -.include <bsd.port.post.mk> diff --git a/multimedia/gstreamer-ffmpeg80/distinfo b/multimedia/gstreamer-ffmpeg80/distinfo deleted file mode 100644 index 0c26235ac083..000000000000 --- a/multimedia/gstreamer-ffmpeg80/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (gst-ffmpeg-0.8.4.tar.bz2) = 2260b732c563de7db984d9e5e440174d -SIZE (gst-ffmpeg-0.8.4.tar.bz2) = 1808120 diff --git a/multimedia/gstreamer-ffmpeg80/files/extra-patch-gst-libs_ext_ffmpeg_libavformat_nut.c b/multimedia/gstreamer-ffmpeg80/files/extra-patch-gst-libs_ext_ffmpeg_libavformat_nut.c deleted file mode 100644 index 1c1fc628e17a..000000000000 --- a/multimedia/gstreamer-ffmpeg80/files/extra-patch-gst-libs_ext_ffmpeg_libavformat_nut.c +++ /dev/null @@ -1,12 +0,0 @@ ---- gst-libs/ext/ffmpeg/libavformat/nut.c.orig Wed Apr 14 20:38:02 2004 -+++ gst-libs/ext/ffmpeg/libavformat/nut.c Sun Jul 11 18:14:19 2004 -@@ -59,6 +59,9 @@ - #define FLAG_FULL_PTS 4 - #define FLAG_KEY_FRAME 32 - -+// UINT64_MAX isn't defined on FreeBSD 4.x borrow it from 5.x -+#define UINT64_MAX 0xffffffffffffffffULL -+ - typedef struct { - uint8_t flags; - uint8_t stream_id_plus1; diff --git a/multimedia/gstreamer-ffmpeg80/files/patch-configure b/multimedia/gstreamer-ffmpeg80/files/patch-configure deleted file mode 100644 index 9bfbd28d15fd..000000000000 --- a/multimedia/gstreamer-ffmpeg80/files/patch-configure +++ /dev/null @@ -1,20 +0,0 @@ ---- configure.orig Thu Feb 26 19:28:07 2004 -+++ configure Thu Feb 26 21:10:52 2004 -@@ -19472,7 +19473,7 @@ - echo $ECHO_N "checking to see if compiler understands -Werror... $ECHO_C" >&6 - - save_CFLAGS="$CFLAGS" -- CFLAGS="$CFLAGS -Werror" -+ CFLAGS="$CFLAGS" - - cat >conftest.$ac_ext <<_ACEOF - #line $LINENO "configure" -@@ -19513,7 +19514,7 @@ - CFLAGS="$save_CFLAGS" - - if test "X$flag_ok" = Xyes ; then -- GST_ERROR="$GST_ERROR -Werror" -+ GST_ERROR="$GST_ERROR" - true - else - GST_ERROR="$GST_ERROR" diff --git a/multimedia/gstreamer-ffmpeg80/files/patch-ext_ffmpeg_Makefile.in b/multimedia/gstreamer-ffmpeg80/files/patch-ext_ffmpeg_Makefile.in deleted file mode 100644 index ec9dfaf853a2..000000000000 --- a/multimedia/gstreamer-ffmpeg80/files/patch-ext_ffmpeg_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- ext/ffmpeg/Makefile.in.orig Wed Mar 9 19:50:50 2005 -+++ ext/ffmpeg/Makefile.in Wed Mar 9 19:51:23 2005 -@@ -164,7 +164,7 @@ - INSTALL_PROGRAM = @INSTALL_PROGRAM@ - INSTALL_SCRIPT = @INSTALL_SCRIPT@ - INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ --LDFLAGS = @LDFLAGS@ -+LDFLAGS = @LDFLAGS@ -Wl,-Bsymbolic -lc - LIBOBJS = @LIBOBJS@ - LIBS = @LIBS@ - LIBTOOL = @LIBTOOL@ diff --git a/multimedia/gstreamer-ffmpeg80/pkg-descr b/multimedia/gstreamer-ffmpeg80/pkg-descr deleted file mode 100644 index b8a091e3522f..000000000000 --- a/multimedia/gstreamer-ffmpeg80/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -The Gstreamer ffmpeg package provides mpeg support for Gstreamer. -It includes codecs for most popular formats, and optimized -colourspace conversion. - -WWW: http://gstreamer.freedesktop.org/ diff --git a/multimedia/gstreamer-ffmpeg80/pkg-plist b/multimedia/gstreamer-ffmpeg80/pkg-plist deleted file mode 100644 index 82aec7a0bbca..000000000000 --- a/multimedia/gstreamer-ffmpeg80/pkg-plist +++ /dev/null @@ -1,3 +0,0 @@ -@exec %D/bin/gst-register --gst-registry=%D/share/gnome/cache/gstreamer-%%VERSION%%/registry.xml 2>/dev/null || true -lib/gstreamer-%%VERSION%%/libgstffmpeg.so -@unexec %D/bin/gst-register --gst-registry=%D/share/gnome/cache/gstreamer-%%VERSION%%/registry.xml 2>/dev/null || true diff --git a/multimedia/gstreamer-plugins-core80/Makefile b/multimedia/gstreamer-plugins-core80/Makefile deleted file mode 100644 index fc0263f26572..000000000000 --- a/multimedia/gstreamer-plugins-core80/Makefile +++ /dev/null @@ -1,68 +0,0 @@ -# New ports collection makefile for: gstreamer-plugins-core -# Date created: 2004-11-15 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= gstreamer-plugins-core -PORTVERSION= 0.8 -PORTREVISION= 2 -CATEGORIES= multimedia audio -MASTER_SITES= # empty -DISTFILES= # empty -EXTRACT_ONLY= # empty - -MAINTAINER= gnome@FreeBSD.org -COMMENT= Core set of typical audio and video gstreamer-plugins - -USE_X_PREFIX= yes -NO_BUILD= yes - -GST_DIR= lib/gstreamer-${PORTVERSION} -PLIST_FILES= ${GST_DIR}/.gstreamer-plugins-core.keep - -WANT_GSTREAMER= yes - -.include <bsd.port.pre.mk> - -# Audio plugins -USE_GSTREAMER+= mad vorbis - -# Graphics plugins -USE_GSTREAMER+= libpng - -# Misc plugins -USE_GSTREAMER+= gconf - -# Multimedia plugins -USE_GSTREAMER+= ffmpeg - -.if ${OSVERSION} > 500035 || defined(WITH_XVID) -USE_GSTREAMER+= xvid -.endif - -.if !defined(WITHOUT_DVD) -# Audio plugins -USE_GSTREAMER+= a52dec - -# Multimedia plugins -USE_GSTREAMER+= dts dvd -.endif - -pre-everything:: - @${ECHO_MSG} "" - @${ECHO_MSG} " Disable DVD plugins by defining WITHOUT_DVD" - @${ECHO_MSG} "" -.if ${OSVERSION} < 500035 && !defined(WITH_XVID) - @${ECHO_MSG} " Enable XVID plugins by defining WITH_XVID" - @${ECHO_MSG} "" -.endif - -do-install: - if [ ! -d ${PREFIX}/${GST_DIR} ]; then \ - ${MKDIR} ${PREFIX}/${GST_DIR} ; \ - fi - ${TOUCH} -f ${PREFIX}/${GST_DIR}/.gstreamer-plugins-core.keep - -.include <bsd.port.post.mk> diff --git a/multimedia/gstreamer-plugins-core80/pkg-descr b/multimedia/gstreamer-plugins-core80/pkg-descr deleted file mode 100644 index 90895a218dc8..000000000000 --- a/multimedia/gstreamer-plugins-core80/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Meta-port to core "typical" gstreamer-plugins - -WWW: http://gstreamer.net diff --git a/multimedia/gstreamer-plugins-dirac80/Makefile b/multimedia/gstreamer-plugins-dirac80/Makefile deleted file mode 100644 index f2ce5086eb95..000000000000 --- a/multimedia/gstreamer-plugins-dirac80/Makefile +++ /dev/null @@ -1,12 +0,0 @@ -# New ports collection makefile for: gstreamer-plugins-dirac -# Date created: 3 Oct 2004 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# - -GST_PLUGIN= dirac - -MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer-plugins - -.include "${MASTERDIR}/Makefile" diff --git a/multimedia/gstreamer-plugins-dv80/Makefile b/multimedia/gstreamer-plugins-dv80/Makefile deleted file mode 100644 index db7efb12ea3f..000000000000 --- a/multimedia/gstreamer-plugins-dv80/Makefile +++ /dev/null @@ -1,12 +0,0 @@ -# New ports collection makefile for: gstreamer-plugins-dv -# Date created: 3 Oct 2004 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# - -GST_PLUGIN= dv - -MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer-plugins - -.include "${MASTERDIR}/Makefile" diff --git a/multimedia/gstreamer-plugins-dvd80/Makefile b/multimedia/gstreamer-plugins-dvd80/Makefile deleted file mode 100644 index bcb207a64053..000000000000 --- a/multimedia/gstreamer-plugins-dvd80/Makefile +++ /dev/null @@ -1,12 +0,0 @@ -# New ports collection makefile for: gstreamer-plugins-dvd -# Date created: 3 Oct 2004 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# - -GST_PLUGIN= dvd - -MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer-plugins - -.include "${MASTERDIR}/Makefile" diff --git a/multimedia/gstreamer-plugins-libfame80/Makefile b/multimedia/gstreamer-plugins-libfame80/Makefile deleted file mode 100644 index 6a3fbd386aa8..000000000000 --- a/multimedia/gstreamer-plugins-libfame80/Makefile +++ /dev/null @@ -1,12 +0,0 @@ -# New ports collection makefile for: gstreamer-plugins-libfame -# Date created: 3 Oct 2004 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# - -GST_PLUGIN= libfame - -MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer-plugins - -.include "${MASTERDIR}/Makefile" diff --git a/multimedia/gstreamer-plugins-mpeg2dec80/Makefile b/multimedia/gstreamer-plugins-mpeg2dec80/Makefile deleted file mode 100644 index 44c0659e1ce2..000000000000 --- a/multimedia/gstreamer-plugins-mpeg2dec80/Makefile +++ /dev/null @@ -1,12 +0,0 @@ -# New ports collection makefile for: gstreamer-plugins-mpeg2dec -# Date created: 3 Oct 2004 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# - -GST_PLUGIN= mpeg2dec - -MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer-plugins - -.include "${MASTERDIR}/Makefile" diff --git a/multimedia/gstreamer-plugins-mpeg2enc80/Makefile b/multimedia/gstreamer-plugins-mpeg2enc80/Makefile deleted file mode 100644 index 5da0a2fb7389..000000000000 --- a/multimedia/gstreamer-plugins-mpeg2enc80/Makefile +++ /dev/null @@ -1,12 +0,0 @@ -# New ports collection makefile for: gstreamer-plugins-mpeg2enc -# Date created: 3 Oct 2004 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# - -GST_PLUGIN= mpeg2enc - -MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer-plugins - -.include "${MASTERDIR}/Makefile" diff --git a/multimedia/gstreamer-plugins-mplex80/Makefile b/multimedia/gstreamer-plugins-mplex80/Makefile deleted file mode 100644 index 03f3d0b70a16..000000000000 --- a/multimedia/gstreamer-plugins-mplex80/Makefile +++ /dev/null @@ -1,12 +0,0 @@ -# New ports collection makefile for: gstreamer-plugins-mplex -# Date created: 7 Oct 2004 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# - -GST_PLUGIN= mplex - -MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer-plugins - -.include "${MASTERDIR}/Makefile" diff --git a/multimedia/gstreamer-plugins-theora80/Makefile b/multimedia/gstreamer-plugins-theora80/Makefile deleted file mode 100644 index 50e2f4566208..000000000000 --- a/multimedia/gstreamer-plugins-theora80/Makefile +++ /dev/null @@ -1,12 +0,0 @@ -# New ports collection makefile for: gstreamer-plugins-theora -# Date created: 3 Oct 2004 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# - -GST_PLUGIN= theora - -MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer-plugins - -.include "${MASTERDIR}/Makefile" diff --git a/multimedia/gstreamer-plugins-xvid80/Makefile b/multimedia/gstreamer-plugins-xvid80/Makefile deleted file mode 100644 index bdea9fbf1940..000000000000 --- a/multimedia/gstreamer-plugins-xvid80/Makefile +++ /dev/null @@ -1,12 +0,0 @@ -# New ports collection makefile for: gstreamer-plugins-xvid -# Date created: 3 Oct 2004 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# - -GST_PLUGIN= xvid - -MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer-plugins - -.include "${MASTERDIR}/Makefile" diff --git a/multimedia/gstreamer-plugins80/Makefile b/multimedia/gstreamer-plugins80/Makefile deleted file mode 100644 index d787fdeb9176..000000000000 --- a/multimedia/gstreamer-plugins80/Makefile +++ /dev/null @@ -1,163 +0,0 @@ -# New ports collection makefile for: gstreamer plugins -# Date created: Wed Jul 10 23:38:01 UTC 2002 -# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= gstreamer -PORTVERSION= 0.8.8 -PORTREVISION?= 3 -CATEGORIES?= multimedia audio -MASTER_SITES= ${MASTER_SITE_GNOME} \ - http://gstreamer.freedesktop.org/src/gst-plugins/ -MASTER_SITE_SUBDIR= sources/gst-plugins/0.8 -PKGNAMESUFFIX= -plugins${GST_PLUGIN_SUFFIX} -DISTNAME= gst-plugins-${PORTVERSION} -DIST_SUBDIR= gnome2 - -MAINTAINER= lioux@FreeBSD.org -COMMENT?= GStreamer written collection of plugins handling several media types - -LIB_DEPENDS+= gstreamer-0.8.5:${PORTSDIR}/multimedia/gstreamer \ - popt.0:${PORTSDIR}/devel/popt - -SHLIB_VERSION= 1 -VERSION= 0.8 - -WANT_GSTREAMER= yes -USE_X_PREFIX= yes -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME+= gnomehack \ - gnomeprefix \ - gnometarget \ - pkgconfig -USE_REINPLACE= yes -USE_LIBTOOL_VER=15 -GST_PLUGIN?= base - -CONFIGURE_ENV= PKG_CONFIG=${PKG_CONFIG} \ - CFLAGS="${CFLAGS} -I${LOCALBASE}/include" \ - CPPFLAGS="${CPPFLAGS} -I${X11BASE}/include -I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ - LDFLAGS="${LDFLAGS} -L${X11BASE}/lib -L${LOCALBASE}/lib ${EXTRA_LIBS} ${PTHREAD_LIBS}" - -.include <bsd.port.pre.mk> -.include "${MASTERDIR}/Makefile.common" - -.if !defined(WITH_CPUFLAGS) -WITHOUT_CPU_CFLAGS= yes -.endif - -.if ${GST_PLUGIN} == "base" - -INSTALLS_SHLIB= yes - -PLIST_SUB= VERSION="${VERSION}" \ - SHLIB_VERSION="${SHLIB_VERSION}" - -MAN1= gst-launch-ext-0.8.1 gst-visualise-0.8.1 - -## Additional directories which should be both built and installed -## but configure neglected to correctly identify them -# cdrom/vcd support -EXTRA_BUILD_DIR+= sys/vcd -# modplug -EXTRA_BUILD_DIR+= gst/modplug -.else -.for f in ${GST_PLUGIN_DIR} -GST_PLUGIN_MAKEFILES+= ${f}/Makefile -.endfor -.endif - -# cdrom default device -.ifdef(WITH_CDROM_DEVICE) -DEFAULT_CDROM_DEVICE=${WITH_CDROM_DEVICE} -.else -. if ${OSVERSION} < 500000 -DEFAULT_CDROM_DEVICE=/dev/acd0c -. else -DEFAULT_CDROM_DEVICE=/dev/acd0 -. endif -.endif - -# dvd default device -.ifdef(WITH_DVD_DEVICE) -DEFAULT_DVD_DEVICE=${WITH_DVD_DEVICE} -.else -. if ${OSVERSION} < 500000 -DEFAULT_DVD_DEVICE=/dev/acd0c -. else -DEFAULT_DVD_DEVICE=/dev/acd0 -. endif -.endif - -pre-everything:: -.if !defined(WITH_CPUFLAGS) - @${ECHO_MSG} "" - @${ECHO_MSG} "If you want to compile with CPUFLAGS" - @${ECHO_MSG} "hit Ctrl+C now and use make \"WITH_CPUFLAGS=yes\"" - @${ECHO_MSG} "NOTE: This option may cause build, install, and/or" - @${ECHO_MSG} "runtime failures. If this option does not work for you" - @${ECHO_MSG} "please do not use it." - @${ECHO_MSG} "" -.endif - -post-extract: -# for cdrom/vcd support -# taken from mplayer distfile -# MD5 (MPlayer-1.0pre4.tar.bz2) = 83ebac0f05b192516a41fca2350ca01a - @${CP} ${FILESDIR}/bsdi_dvd.h ${WRKSRC}/sys/vcd/ - -post-patch: - @${FIND} ${WRKSRC} -type f | \ - ${XARGS} -n 10 ${REINPLACE_CMD} -e \ - 's|malloc\.h|stdlib.h|; \ - s|stdint\.h|inttypes.h|; \ - s|%%VERSION%%|${VERSION}|' -# cdrom default device - @${REINPLACE_CMD} -e 's|/dev/cdrom|${DEFAULT_CDROM_DEVICE}|' \ - ${WRKSRC}/ext/cdparanoia/gstcdparanoia.c \ - ${WRKSRC}/sys/cdrom/gstcdplayer.c \ - ${WRKSRC}/sys/vcd/vcdsrc.c -# dvd default device - @${REINPLACE_CMD} -e 's|/dev/dvd|${DEFAULT_DVD_DEVICE}|' \ - ${WRKSRC}/ext/dvdnav/dvdnavsrc.c \ - ${WRKSRC}/ext/dvdread/dvdreadsrc.c -# cdrom/vcd support - @${REINPLACE_CMD} -e 's|<linux/cdrom.h>|"bsdi_dvd.h"|' \ - ${WRKSRC}/sys/cdrom/gstcdplayer_ioctl.c \ - ${WRKSRC}/sys/vcd/vcdsrc.c \ - ${WRKSRC}/sys/vcd/vcdsrc.h -# mplex fix -- gst configure does not use mjpegtool's config to find include. - @${REINPLACE_CMD} -E \ - -e 's|PFLAGS@|PFLAGS@ -I${LOCALBASE}/include/mjpegtools -I${LOCALBASE}/include/mjpegtools/mplex|' \ - ${WRKSRC}/ext/mplex/Makefile.in -.if ${GST_PLUGIN}!="base" - @${REINPLACE_CMD} -E -e 's|ac_config_files=\"*\"|ac_config_files="$$ac_config_files Makefile ${GST_PLUGIN_MAKEFILES}" #|' \ - ${WRKSRC}/configure -.else -.for f in ${GST_ALL_PLUGINS} - @${REINPLACE_CMD} -e 's|ext/${f}/Makefile||g' \ - ${WRKSRC}/configure -.endfor -.endif - -post-build: -.ifdef(EXTRA_BUILD_DIR) -. for dir in ${EXTRA_BUILD_DIR} - @cd ${WRKSRC}/${dir}; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET} -. endfor -.endif - -post-install: -.ifdef(EXTRA_BUILD_DIR) -. for dir in ${EXTRA_BUILD_DIR} - @cd ${WRKSRC}/${dir}; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET} -. endfor -.endif -# register plugins - -@${X11BASE}/bin/gst-register-${VERSION} \ - --gst-registry=${PREFIX}/share/gnome/cache/gstreamer-${VERSION}/registry.xml 2>/dev/null - -.include <bsd.port.post.mk> diff --git a/multimedia/gstreamer-plugins80/Makefile.common b/multimedia/gstreamer-plugins80/Makefile.common deleted file mode 100644 index 8b9af7982af3..000000000000 --- a/multimedia/gstreamer-plugins80/Makefile.common +++ /dev/null @@ -1,479 +0,0 @@ -GST_ALL_PLUGINS= \ - a52dec \ - aalib \ - aalibtest \ - amrnb \ - arts \ - artstest \ - artsc \ - audiofile \ - audioresample \ - cairo \ - cdaudio \ - cdparanoia \ - dirac \ - directfb \ - divx \ - dts \ - dvdnav \ - dvdread \ - dxr3 \ - esd \ - esdtest \ - faac \ - faad \ - flac \ - gconf \ - gdk_pixbuf \ - gnome_vfs \ - gsm \ - hermes \ - ivorbis \ - jack \ - jpeg \ - ladspa \ - lame \ - lcs \ - libcaca \ - libdv \ - libfame \ - libfametest\ - libmng \ - libmms \ - libpng \ - librfb \ - libvisual \ - mad \ - mikmod \ - libmikmodtest \ - mpeg2dec \ - mpeg2enc \ - mplex \ - musepack \ - musicbrainz \ - nas \ - ogg \ - oggtest \ - opengl \ - pango \ - polyp \ - dv1394 \ - qcam \ - raw1394 \ - sdl \ - sdltest \ - shout \ - shout2 \ - shout2test \ - sidplay \ - smoothwave \ - sndfile \ - speex \ - swfdec \ - tarkin \ - theora \ - vcd \ - vorbis \ - xine \ - vorbistest \ - xvid - -# Disable all plugins by default\ -.for d in ${GST_ALL_PLUGINS} -CONFIGURE_ARGS+= --disable-${d} -.endfor - -CONFIGURE_ARGS+=--disable-tests \ - --disable-examples \ - --disable-alsa \ - --disable-http \ - --enable-cdrom \ - --disable-gconf \ - --disable-gconftool \ - --disable-schemas-install \ - --enable-oss \ - --disable-osx_audio \ - --disable-osx_video \ - --enable-static \ - --disable-sunaudio \ - --disable-gst_v4l \ - --disable-gst_v4l2 \ - --enable-x \ - --enable-xshm \ - --enable-xvideo - -.if ${GST_PLUGIN}!="base" - -GST_PLUGIN_SUFFIX?= -${GST_PLUGIN} - -COMMENT= Gstreamer ${GST_PLUGIN} plugin - -# Enable the right plugin - -CONFIGURE_ARGS:=${CONFIGURE_ARGS:S|--disable-${p}|--enable-${p}|} - -# Build/Install directory. defaults to ext/${GST_PLUGIN} -# few plugins are in sys/ -GST_PLUGIN_DIR?= ext/${GST_PLUGIN} - -# -GST_LIB_DIR= lib/gstreamer-${VERSION} - -# Auto create PLIST -PLIST= ${NONEXISTENT} -PLIST_FILES?= ${GST_LIB_DIR}/libgst${GST_PLUGIN}${GST_PLIST_SUFFIX}.so - -# aalib -.if ${GST_PLUGIN}=="aalib" -LIB_DEPENDS+= aa.1:${PORTSDIR}/graphics/aalib -PLIST_FILES= ${GST_LIB_DIR}/libgstaasink.so -.endif - -# artsd -.if ${GST_PLUGIN}=="artsd" -LIB_DEPENDS+= artsc.0:${PORTSDIR}/audio/arts -GST_PLIST_SUFFIX= sink -.endif - -# cairo -.if ${GST_PLUGIN}=="cairo" -LIB_DEPENDS+= cairo.1:${PORTSDIR}/graphics/cairo -.endif - -# cdparanoia -.if ${GST_PLUGIN}=="cdparanoia" -LIB_DEPENDS+= cdda_interface.0:${PORTSDIR}/audio/cdparanoia -.endif - -# dirac -.if ${GST_PLUGIN}=="dirac" -LIB_DEPENDS+= dirac_encoder.0:${PORTSDIR}/multimedia/dirac -.endif - -# dts -.if ${GST_PLUGIN}=="dts" -BUILD_DEPENDS+= ${LOCALBASE}/lib/libdts_pic.a:${PORTSDIR}/multimedia/libdts -RUN_DEPENDS+= ${LOCALBASE}/lib/libdts_pic.a:${PORTSDIR}/multimedia/libdts -GST_PLIST_SUFFIX= dec -.endif - -# esound -.if ${GST_PLUGIN}=="esound" -USE_GNOME+= esound -GST_PLUGIN_DIR= ext/esd -PLIST_FILES= ${GST_LIB_DIR}/libgstesd.so -.endif - -# faac -.if ${GST_PLUGIN}=="faac" -LIB_DEPENDS+= faac.0:${PORTSDIR}/audio/faac -.endif - -# faad -.if ${GST_PLUGIN}=="faad" -LIB_DEPENDS+= faad.0:${PORTSDIR}/audio/faad -.endif - -# flac -.if ${GST_PLUGIN}=="flac" -LIB_DEPENDS+= FLAC.7:${PORTSDIR}/audio/flac -.endif - -# gconf -.if ${GST_PLUGIN}=="gconf" -USE_GNOME+= gconf2 -GST_PLUGIN_DIR= gst-libs/gst/gconf \ - ext/gconf \ - gconf -GCONF_SCHEMAS= gstreamer-0.8.schemas - -PLIST_FILES= include/gstreamer-0.8/gst/gconf/gconf.h \ - lib/gstreamer-0.8/libgstgconfelements.so \ - lib/libgstgconf-0.8.a \ - lib/libgstgconf-0.8.so \ - lib/libgstgconf-0.8.so.1 \ - libdata/pkgconfig/gstreamer-gconf-0.8.pc \ - '@unexec rmdir %D/include/gstreamer-0.8/gst/gconf 2>/dev/null || true' -.endif - -# gdkpixbuf -.if ${GST_PLUGIN}=="gdkpixbuf" -USE_GNOME+= gtk20 -GST_PLUGIN_DIR= ext/gdk_pixbuf -.endif - -# gnomevfs -.if ${GST_PLUGIN}=="gnomevfs" -USE_GNOME+= gnomevfs2 -.endif - -# gsm -.if ${GST_PLUGIN}=="gsm" -LIB_DEPENDS+= gsm.1:${PORTSDIR}/audio/gsm -.endif - -# jack -.if ${GST_PLUGIN}=="jack" -LIB_DEPENDS+= jack.0:${PORTSDIR}/audio/jack -.endif - -# libcdaudio -.if ${GST_PLUGIN}=="cdaudio" -LIB_DEPENDS+= cdaudio.1:${PORTSDIR}/audio/libcdaudio -.endif - -# libvisual -.if ${GST_PLUGIN}=="libvisual" -LIB_DEPENDS+= visual.0:${PORTSDIR}/graphics/libvisual -.endif - -# musepack -.if ${GST_PLUGIN}=="musepack" -LIB_DEPENDS+= musepack.2:${PORTSDIR}/audio/libmusepack -.endif - -# hermes -.if ${GST_PLUGIN}=="hermes" -LIB_DEPENDS+= Hermes.1:${PORTSDIR}/graphics/Hermes -PLIST_FILES= ${GST_LIB_DIR}/libgsthermescolorspace.so -.endif - -# jpeg -.if ${GST_PLUGIN}=="jpeg" -LIB_DEPENDS+= jpeg.9:${PORTSDIR}/graphics/jpeg -CONFLICTS+= gstreamer-plugins-jpeg-mmx-* -.endif - -# jpeg-mmx -.if ${GST_PLUGIN}=="jpeg-mmx" -LIB_DEPENDS+= jpeg-mmx.62:${PORTSDIR}/graphics/jpeg-mmx -CONFLICTS+= gstreamer-plugins-jpeg-*.* - -GST_PLUGIN_DIR= ext/jpeg -PLIST_FILES= ${GST_LIB_DIR}/libgstjpeg.so -.endif - -# ladspa -.if ${GST_PLUGIN}=="ladspa" -BUILD_DEPENDS+= ${LOCALBASE}/include/ladspa.h:${PORTSDIR}/audio/ladspa -.endif - -# lame -.if ${GST_PLUGIN}=="lame" -LIB_DEPENDS+= mp3lame.0:${PORTSDIR}/audio/lame -.endif - -# a52dec -.if ${GST_PLUGIN}=="a52dec" -LIB_DEPENDS+= a52.0:${PORTSDIR}/audio/liba52 -.endif - -# audiofile -.if ${GST_PLUGIN}=="audiofile" -LIB_DEPENDS+= audiofile.0:${PORTSDIR}/audio/libaudiofile -.endif - -# libcaca -.if ${GST_PLUGIN}=="libcaca" -BUILD_DEPENDS+= ${LOCALBASE}/lib/libcaca.a:${PORTSDIR}/graphics/libcaca -PLIST_FILES= ${GST_LIB_DIR}/libgstcacasink.so -.endif - -# dv -.if ${GST_PLUGIN}=="dv" -LIB_DEPENDS+= dv.4:${PORTSDIR}/multimedia/libdv -GST_PLIST_SUFFIX= dec -.endif - -# dvd (dvdnav dvdread) -.if ${GST_PLUGIN}=="dvd" -EXTRA_LIBS+= -ldvdnav -LIB_DEPENDS+= dvdnav.3:${PORTSDIR}/multimedia/libdvdnav -GST_PLUGIN_DIR= ext/dvdnav \ - ext/dvdread -PLIST_FILES= ${GST_LIB_DIR}/libgstdvdnavsrc.so \ - ${GST_LIB_DIR}/libgstdvdreadsrc.so -.endif - -# libfame -.if ${GST_PLUGIN}=="libfame" -LIB_DEPENDS+= fame-0.9.1:${PORTSDIR}/multimedia/libfame -.endif - -# libmms -.if ${GST_PLUGIN}=="libmms" -LIB_DEPENDS+= mms.0:${PORTSDIR}/net/libmms -PLIST_FILES= ${GST_LIB_DIR}/libgstmms.so -.endif - -# libmng -.if ${GST_PLUGIN}=="libmng" -LIB_DEPENDS+= mng.1:${PORTSDIR}/graphics/libmng -PLIST_FILES= ${GST_LIB_DIR}/libgstmng.so -.endif - -# mikmod -.if ${GST_PLUGIN}=="mikmod" -LIB_DEPENDS+= mikmod.2:${PORTSDIR}/audio/libmikmod -.endif - -# mpeg2dec -.if ${GST_PLUGIN}=="mpeg2dec" -LIB_DEPENDS+= mpeg2.0:${PORTSDIR}/multimedia/libmpeg2 -.endif - -# mplex -.if ${GST_PLUGIN}=="mplex" -LIB_DEPENDS+= lavjpeg-1.6.2:${PORTSDIR}/multimedia/mjpegtools -.endif - -# musicbrainz -.if ${GST_PLUGIN}=="musicbrainz" -LIB_DEPENDS+= musicbrainz.4:${PORTSDIR}/audio/libmusicbrainz -PLIST_FILES= lib/gstreamer-${VERSION}/libgsttrm.so -.endif - -# shout -.if ${GST_PLUGIN}=="shout" -LIB_DEPENDS+= shout.2:${PORTSDIR}/audio/libshout -.endif - -# shout2 -.if ${GST_PLUGIN}=="shout2" -LIB_DEPENDS+= shout.3:${PORTSDIR}/audio/libshout2 -.endif - -# sidplay -.if ${GST_PLUGIN}=="sidplay" -LIB_DEPENDS+= sidplay.1:${PORTSDIR}/audio/libsidplay -PLIST_FILES= ${GST_LIB_DIR}/libgstsid.so -.endif - -# sndfile -.if ${GST_PLUGIN}=="sndfile" -LIB_DEPENDS+= sndfile.1:${PORTSDIR}/audio/libsndfile -.endif - -# theora -.if ${GST_PLUGIN}=="theora" -LIB_DEPENDS+= theora.1:${PORTSDIR}/multimedia/libtheora -.endif - -# mad -.if ${GST_PLUGIN}=="mad" -LIB_DEPENDS+= mad.2:${PORTSDIR}/audio/libmad \ - id3tag.2:${PORTSDIR}/audio/libid3tag -.endif - -# mpeg2enc -.if ${GST_PLUGIN}=="mpeg2enc" -USE_GSTREAMER+= mplex -LIB_DEPENDS+= lavjpeg-1.6.2:${PORTSDIR}/multimedia/mjpegtools - -# XXX - make sure CONFIGURE works with mpeg2enc even with "ccache -# c++" ... weird but necessary -CONFIGURE_ENV+= HAVE_CXX=yes -.endif - -# nas -.if ${GST_PLUGIN}=="nas" -LIB_DEPENDS+= audio.2:${PORTSDIR}/audio/nas -GST_PLIST_SUFFIX= sink -.endif - -# ogg -.if ${GST_PLUGIN}=="ogg" -LIB_DEPENDS+= ogg.5:${PORTSDIR}/audio/libogg -.endif - -# pango -.if ${GST_PLUGIN}=="pango" -USE_GNOME+= pango -PLIST_FILES= ${GST_LIB_DIR}/libgsttextoverlay.so \ - ${GST_LIB_DIR}/libgsttimeoverlay.so -.endif - -# libpng -.if ${GST_PLUGIN}=="libpng" -LIB_DEPENDS+= png.5:${PORTSDIR}/graphics/png -GST_PLUGIN_DIR= ext/libpng \ - ext/snapshot -PLIST_FILES= ${GST_LIB_DIR}/libgstpng.so \ - ${GST_LIB_DIR}/libgstsnapshot.so -.endif - -# polypaudio -.if ${GST_PLUGIN}=="polypaudio" -LIB_DEPENDS+= polyp-0.7.0:${PORTSDIR}/audio/polypaudio -PLIST_FILES= ${GST_LIB_DIR}/libpolypaudio.so -GST_PLUGIN_DIR= ext/polyp -.endif - -# sdl -.if ${GST_PLUGIN}=="sdl" -USE_SDL+= sdl -GST_PLIST_SUFFIX= videosink -.endif - -# smoothwave -.if ${GST_PLUGIN}=="smoothwave" -USE_GNOME+= gtk20 -.endif - -# speex -.if ${GST_PLUGIN}=="speex" -LIB_DEPENDS+= speex.3:${PORTSDIR}/audio/speex -.endif - -# swfdec -.if ${GST_PLUGIN}=="swfdec" -LIB_DEPENDS+= swfdec-0.3.0:${PORTSDIR}/graphics/swfdec -.endif - -# vorbis -.if ${GST_PLUGIN}=="vorbis" -USE_GSTREAMER+= ogg -LIB_DEPENDS+= vorbis.3:${PORTSDIR}/audio/libvorbis -.endif - -# ivorbis -.if ${GST_PLUGIN}=="ivorbis" -LIB_DEPENDS+= vorbisidec.1:${PORTSDIR}/audio/libtremor -.endif - -# xine -.if ${GST_PLUGIN}=="xine" -LIB_DEPENDS+= xine.12:${PORTSDIR}/multimedia/libxine -.endif - -# xvid -.if ${GST_PLUGIN}=="xvid" -LIB_DEPENDS+= xvidcore.4:${PORTSDIR}/multimedia/xvid -.endif - -LIB_DEPENDS+= gstplay-${VERSION}.${SHLIB_VERSION}:${PORTSDIR}/multimedia/gstreamer-plugins - -PLIST_FILES+= '@exec %D/bin/gst-register --gst-registry=%D/share/gnome/cache/gstreamer-${VERSION}/registry.xml 2>/dev/null || true' -PLIST_FILES+= '@unexec %D/bin/gst-register --gst-registry=%D/share/gnome/cache/gstreamer-${VERSION}/registry.xml 2>/dev/null || true' - -do-build: -.if ${GST_PLUGIN} == "gconf" - @cd ${WRKSRC}/pkgconfig && ../config.status & -.endif -.for dir in ${GST_PREBUILD_DIR} ${GST_PLUGIN_DIR} ${GST_POSTBUILD_DIR} - @cd ${WRKSRC}/${dir}; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} \ - ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET} -.endfor - -do-install: -.for dir in ${GST_PLUGIN_DIR} - @cd ${WRKSRC}/${dir}; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} \ - ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET} -.endfor -.if ${GST_PLUGIN} == "gconf" - @cd ${WRKSRC}/pkgconfig && ${GMAKE} gstreamer-gconf-0.8.pc - @${INSTALL_SCRIPT} ${WRKSRC}/pkgconfig/gstreamer-gconf-0.8.pc \ - ${PREFIX}/libdata/pkgconfig/gstreamer-gconf-0.8.pc -.endif - -.endif diff --git a/multimedia/gstreamer-plugins80/distinfo b/multimedia/gstreamer-plugins80/distinfo deleted file mode 100644 index 1b58081ff696..000000000000 --- a/multimedia/gstreamer-plugins80/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (gnome2/gst-plugins-0.8.8.tar.bz2) = 4f6e7e730fa674ecd6ec713f937b8acb -SIZE (gnome2/gst-plugins-0.8.8.tar.bz2) = 2214274 diff --git a/multimedia/gstreamer-plugins80/files/bsdi_dvd.h b/multimedia/gstreamer-plugins80/files/bsdi_dvd.h deleted file mode 100644 index ff61ebd252f6..000000000000 --- a/multimedia/gstreamer-plugins80/files/bsdi_dvd.h +++ /dev/null @@ -1,340 +0,0 @@ -#ifndef _DVD_H_ -#define _DVD_H_ - -#include <sys/cdefs.h> -#include <machine/endian.h> -#include <sys/ioctl.h> - -__BEGIN_DECLS -int dvd_cdrom_ioctl(int, unsigned long, void *); -int cdrom_blocksize(int, int); -void dvd_cdrom_debug(int); -__END_DECLS - -#define ioctl(a,b,c) dvd_cdrom_ioctl((a),(b),(c)) - -typedef unsigned char __u8; -typedef unsigned short __u16; -typedef unsigned int __u32; - -#define DVD_READ_STRUCT 0x5390 /* Read structure */ -#define DVD_WRITE_STRUCT 0x5391 /* Write structure */ -#define DVD_AUTH 0x5392 /* Authentication */ - -#define DVD_STRUCT_PHYSICAL 0x00 -#define DVD_STRUCT_COPYRIGHT 0x01 -#define DVD_STRUCT_DISCKEY 0x02 -#define DVD_STRUCT_BCA 0x03 -#define DVD_STRUCT_MANUFACT 0x04 - -struct dvd_layer { - __u8 book_version : 4; - __u8 book_type : 4; - __u8 min_rate : 4; - __u8 disc_size : 4; - __u8 layer_type : 4; - __u8 track_path : 1; - __u8 nlayers : 2; - __u8 track_density : 4; - __u8 linear_density : 4; - __u8 bca : 1; - __u32 start_sector; - __u32 end_sector; - __u32 end_sector_l0; -}; - -struct dvd_physical { - __u8 type; - __u8 layer_num; - struct dvd_layer layer[4]; -}; - -struct dvd_copyright { - __u8 type; - - __u8 layer_num; - __u8 cpst; - __u8 rmi; -}; - -struct dvd_disckey { - __u8 type; - - unsigned agid : 2; - __u8 value[2048]; -}; - -struct dvd_bca { - __u8 type; - - int len; - __u8 value[188]; -}; - -struct dvd_manufact { - __u8 type; - - __u8 layer_num; - int len; - __u8 value[2048]; -}; - -typedef union { - __u8 type; - - struct dvd_physical physical; - struct dvd_copyright copyright; - struct dvd_disckey disckey; - struct dvd_bca bca; - struct dvd_manufact manufact; -} dvd_struct; - -/* - * DVD authentication ioctl - */ - -/* Authentication states */ -#define DVD_LU_SEND_AGID 0 -#define DVD_HOST_SEND_CHALLENGE 1 -#define DVD_LU_SEND_KEY1 2 -#define DVD_LU_SEND_CHALLENGE 3 -#define DVD_HOST_SEND_KEY2 4 - -/* Termination states */ -#define DVD_AUTH_ESTABLISHED 5 -#define DVD_AUTH_FAILURE 6 - -/* Other functions */ -#define DVD_LU_SEND_TITLE_KEY 7 -#define DVD_LU_SEND_ASF 8 -#define DVD_INVALIDATE_AGID 9 -#define DVD_LU_SEND_RPC_STATE 10 -#define DVD_HOST_SEND_RPC_STATE 11 - -/* State data */ -typedef __u8 dvd_key[5]; /* 40-bit value, MSB is first elem. */ -typedef __u8 dvd_challenge[10]; /* 80-bit value, MSB is first elem. */ - -struct dvd_lu_send_agid { - __u8 type; - unsigned agid : 2; -}; - -struct dvd_host_send_challenge { - __u8 type; - unsigned agid : 2; - - dvd_challenge chal; -}; - -struct dvd_send_key { - __u8 type; - unsigned agid : 2; - - dvd_key key; -}; - -struct dvd_lu_send_challenge { - __u8 type; - unsigned agid : 2; - - dvd_challenge chal; -}; - -#define DVD_CPM_NO_COPYRIGHT 0 -#define DVD_CPM_COPYRIGHTED 1 - -#define DVD_CP_SEC_NONE 0 -#define DVD_CP_SEC_EXIST 1 - -#define DVD_CGMS_UNRESTRICTED 0 -#define DVD_CGMS_SINGLE 2 -#define DVD_CGMS_RESTRICTED 3 - -struct dvd_lu_send_title_key { - __u8 type; - unsigned agid : 2; - - dvd_key title_key; - int lba; - unsigned cpm : 1; - unsigned cp_sec : 1; - unsigned cgms : 2; -}; - -struct dvd_lu_send_asf { - __u8 type; - unsigned agid : 2; - - unsigned asf : 1; -}; - -struct dvd_host_send_rpcstate { - __u8 type; - __u8 pdrc; -}; - -struct dvd_lu_send_rpcstate { - __u8 type : 2; - __u8 vra : 3; - __u8 ucca : 3; - __u8 region_mask; - __u8 rpc_scheme; -}; - -typedef union { - __u8 type; - - struct dvd_lu_send_agid lsa; - struct dvd_host_send_challenge hsc; - struct dvd_send_key lsk; - struct dvd_lu_send_challenge lsc; - struct dvd_send_key hsk; - struct dvd_lu_send_title_key lstk; - struct dvd_lu_send_asf lsasf; - struct dvd_host_send_rpcstate hrpcs; - struct dvd_lu_send_rpcstate lrpcs; -} dvd_authinfo; - - -typedef struct { - __u16 report_key_length; - __u8 reserved1; - __u8 reserved2; -#if BYTE_ORDER == BIG_ENDIAN - __u8 type_code : 2; - __u8 vra : 3; - __u8 ucca : 3; -#elif BYTE_ORDER == LITTLE_ENDIAN - __u8 ucca : 3; - __u8 vra : 3; - __u8 type_code : 2; -#endif - __u8 region_mask; - __u8 rpc_scheme; - __u8 reserved3; -} rpc_state_t; - -/* - * Stuff for the CDROM ioctls -*/ - -#define CDROMREADTOCHDR 0x5305 /* Read TOC header (cdrom_tochdr) */ -#define CDROMREADTOCENTRY 0x5306 /* Read TOC entry (cdrom_tocentry) */ -#define CDROMEJECT 0x5309 /* Ejects the cdrom media */ -#define CDROMCLOSETRAY 0x5319 /* Reverse of CDROMEJECT */ -#define CDROM_DRIVE_STATUS 0x5326 /* Get tray position, etc. */ -#define CDROM_DISC_STATUS 0x5327 /* Get disc type, etc. */ -#define CDROMREADMODE2 0x530c /* Read CDROM mode 2 data (2336 Bytes) */ -#define CDROMREADMODE1 0x530d /* Read CDROM mode 1 data (2048 Bytes) */ -#define CDROMREADRAW 0x5314 /* read data in raw mode (2352 bytes) */ - -#define CD_MINS 74 /* max. minutes per CD, not really a limit */ -#define CD_SECS 60 /* seconds per minute */ -#define CD_FRAMES 75 /* frames per second */ -#define CD_MSF_OFFSET 150 /* MSF numbering offset of first frame */ - -#define CD_HEAD_SIZE 4 /* header (address) bytes per raw data frame */ -#define CD_SYNC_SIZE 12 /* 12 sync bytes per raw data frame */ -#define CD_FRAMESIZE 2048 /* bytes per frame, "cooked" mode */ -#define CD_FRAMESIZE_RAW 2352 /* bytes per frame, "raw" mode */ -#define CD_FRAMESIZE_RAW0 (CD_FRAMESIZE_RAW-CD_SYNC_SIZE-CD_HEAD_SIZE) /*2336*/ -#define CD_FRAMESIZE_RAW1 (CD_FRAMESIZE_RAW-CD_SYNC_SIZE) /*2340*/ - -/* CD-ROM address types (cdrom_tocentry.cdte_format) */ -#define CDROM_LBA 0x01 /* logical block: first frame is #0 */ -#define CDROM_MSF 0x02 /* minute-second-frame: binary. not bcd here!*/ - -/* bit to tell whether track is data or audio (cdrom_tocentry.cdte_ctrl) */ -#define CDROM_DATA_TRACK 0x04 - -/* The leadout track is always 0xAA, regardless of # of tracks on disc */ -#define CDROM_LEADOUT 0xAA - -/* drive status returned by CDROM_DRIVE_STATUS ioctl */ -#define CDS_NO_INFO 0 /* if not implemented */ -#define CDS_NO_DISC 1 -#define CDS_TRAY_OPEN 2 -#define CDS_DRIVE_NOT_READY 3 -#define CDS_DISC_OK 4 - -/* - * Return values for CDROM_DISC_STATUS ioctl. - * Can also return CDS_NO_INFO and CDS_NO_DISC from above -*/ -#define CDS_AUDIO 100 -#define CDS_DATA_1 101 -#define CDS_DATA_2 102 -#define CDS_XA_2_1 103 -#define CDS_XA_2_2 104 -#define CDS_MIXED 105 - -/* For compile compatibility only - we don't support changers */ -#define CDSL_NONE ((int) (~0U>>1)-1) -#define CDSL_CURRENT ((int) (~0U>>1)) - -struct cdrom_msf -{ - __u8 cdmsf_min0; /* start minute */ - __u8 cdmsf_sec0; /* start second */ - __u8 cdmsf_frame0; /* start frame */ - __u8 cdmsf_min1; /* end minute */ - __u8 cdmsf_sec1; /* end second */ - __u8 cdmsf_frame1; /* end frame */ -}; - -struct cdrom_tochdr - { - __u8 cdth_trk0; /* start track */ - __u8 cdth_trk1; /* end track */ - }; - -struct cdrom_msf0 -{ - __u8 minute; - __u8 second; - __u8 frame; -}; - -union cdrom_addr -{ - struct cdrom_msf0 msf; - int lba; -}; - -struct cdrom_tocentry -{ - __u8 cdte_track; - __u8 cdte_adr :4; - __u8 cdte_ctrl :4; - __u8 cdte_format; - union cdrom_addr cdte_addr; - __u8 cdte_datamode; -}; - -struct modesel_head -{ - __u8 reserved1; - __u8 medium; - __u8 reserved2; - __u8 block_desc_length; - __u8 density; - __u8 number_of_blocks_hi; - __u8 number_of_blocks_med; - __u8 number_of_blocks_lo; - __u8 reserved3; - __u8 block_length_hi; - __u8 block_length_med; - __u8 block_length_lo; -}; - -typedef struct -{ - int data; - int audio; - int cdi; - int xa; - int error; -} tracktype; - -#endif /* _DVD_H_ */ diff --git a/multimedia/gstreamer-plugins80/files/patch-configure b/multimedia/gstreamer-plugins80/files/patch-configure deleted file mode 100644 index 92b1deb51a64..000000000000 --- a/multimedia/gstreamer-plugins80/files/patch-configure +++ /dev/null @@ -1,12 +0,0 @@ ---- configure.orig Wed Jun 23 21:30:24 2004 -+++ configure Wed Jun 23 21:30:25 2004 -@@ -46068,7 +46068,8 @@ - echo $ECHO_N "(cached) $ECHO_C" >&6 - else - ac_check_lib_save_LIBS=$LIBS --LIBS="-laudio $X_LIBS $LIBS" -+#xxx fix the non x case is er niet... -+LIBS="-laudio -lm -lXt $X_LIBS $LIBS" - cat >conftest.$ac_ext <<_ACEOF - /* confdefs.h. */ - _ACEOF diff --git a/multimedia/gstreamer-plugins80/files/patch-ext::ivorbis::vorbisenc.h b/multimedia/gstreamer-plugins80/files/patch-ext::ivorbis::vorbisenc.h deleted file mode 100644 index 90d39a1a29b2..000000000000 --- a/multimedia/gstreamer-plugins80/files/patch-ext::ivorbis::vorbisenc.h +++ /dev/null @@ -1,103 +0,0 @@ ---- /dev/null Thu Feb 12 22:22:00 2004 -+++ ext/ivorbis/vorbisenc.h Thu Feb 12 22:24:08 2004 -@@ -0,0 +1,100 @@ -+/* GStreamer -+ * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu> -+ * -+ * This library is free software; you can redistribute it and/or -+ * modify it under the terms of the GNU Library General Public -+ * License as published by the Free Software Foundation; either -+ * version 2 of the License, or (at your option) any later version. -+ * -+ * This library is distributed in the hope that it will be useful, -+ * but WITHOUT ANY WARRANTY; without even the implied warranty of -+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -+ * Library General Public License for more details. -+ * -+ * You should have received a copy of the GNU Library General Public -+ * License along with this library; if not, write to the -+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330, -+ * Boston, MA 02111-1307, USA. -+ */ -+ -+ -+#ifndef __VORBISENC_H__ -+#define __VORBISENC_H__ -+ -+ -+#include <gst/gst.h> -+ -+#include <tremor/ivorbiscodec.h> -+ -+#ifdef __cplusplus -+extern "C" { -+#endif /* __cplusplus */ -+ -+#define GST_TYPE_VORBISENC \ -+ (vorbisenc_get_type()) -+#define GST_VORBISENC(obj) \ -+ (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_VORBISENC,VorbisEnc)) -+#define GST_VORBISENC_CLASS(klass) \ -+ (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_VORBISENC,VorbisEncClass)) -+#define GST_IS_VORBISENC(obj) \ -+ (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_VORBISENC)) -+#define GST_IS_VORBISENC_CLASS(obj) \ -+ (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_VORBISENC)) -+ -+typedef struct _VorbisEnc VorbisEnc; -+typedef struct _VorbisEncClass VorbisEncClass; -+ -+struct _VorbisEnc { -+ GstElement element; -+ -+ GstPad *sinkpad, -+ *srcpad; -+ -+ ogg_stream_state os; /* take physical pages, weld into a logical -+ stream of packets */ -+ ogg_page og; /* one Ogg bitstream page. Vorbis packets are inside */ -+ ogg_packet op; /* one raw packet of data for decode */ -+ -+ vorbis_info vi; /* struct that stores all the static vorbis bitstream -+ settings */ -+ vorbis_comment vc; /* struct that stores all the user comments */ -+ -+ vorbis_dsp_state vd; /* central working state for the packet->PCM decoder */ -+ vorbis_block vb; /* local working space for packet->PCM decode */ -+ -+ gboolean eos; -+ -+ gboolean managed; -+ gint bitrate; -+ gint min_bitrate; -+ gint max_bitrate; -+ gfloat quality; -+ gboolean quality_set; -+ gint serial; -+ -+ gint channels; -+ gint frequency; -+ -+ guint64 samples_in; -+ guint64 bytes_out; -+ -+ GstCaps *metadata; -+ -+ gboolean setup; -+ gboolean flush_header; -+ gchar *last_message; -+}; -+ -+struct _VorbisEncClass { -+ GstElementClass parent_class; -+}; -+ -+GType vorbisenc_get_type(void); -+ -+ -+#ifdef __cplusplus -+} -+#endif /* __cplusplus */ -+ -+ -+#endif /* __VORBISENC_H__ */ diff --git a/multimedia/gstreamer-plugins80/files/patch-ext_libcaca_Makefile.in b/multimedia/gstreamer-plugins80/files/patch-ext_libcaca_Makefile.in deleted file mode 100644 index 0ee53a92ecd6..000000000000 --- a/multimedia/gstreamer-plugins80/files/patch-ext_libcaca_Makefile.in +++ /dev/null @@ -1,23 +0,0 @@ ---- ext/libcaca/Makefile.in.orig Mon Oct 4 00:07:18 2004 -+++ ext/libcaca/Makefile.in Mon Oct 4 00:07:59 2004 -@@ -76,8 +76,7 @@ - pluginLTLIBRARIES_INSTALL = $(INSTALL) - LTLIBRARIES = $(plugin_LTLIBRARIES) - am__DEPENDENCIES_1 = --libgstcacasink_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \ -- $(top_builddir)/gst-libs/gst/libgstinterfaces-$(GST_MAJORMINOR).la -+libgstcacasink_la_DEPENDENCIES = $(am__DEPENDENCIES_1) - am_libgstcacasink_la_OBJECTS = libgstcacasink_la-gstcacasink.lo - libgstcacasink_la_OBJECTS = $(am_libgstcacasink_la_OBJECTS) - DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -@@ -616,9 +615,7 @@ - plugin_LTLIBRARIES = libgstcacasink.la - libgstcacasink_la_SOURCES = gstcacasink.c - libgstcacasink_la_CFLAGS = $(GST_CFLAGS) $(LIBCACA_CFLAGS) --libgstcacasink_la_LIBADD = $(LIBCACA_LIBS) \ -- $(top_builddir)/gst-libs/gst/libgstinterfaces-$(GST_MAJORMINOR).la -- -+libgstcacasink_la_LIBADD = $(LIBCACA_LIBS) -lgstinterfaces-%%VERSION%% - libgstcacasink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) - noinst_HEADERS = gstcacasink.h - all: all-am diff --git a/multimedia/gstreamer-plugins80/files/patch-ext_mpeg2enc_gstmpeg2encoptions.cc b/multimedia/gstreamer-plugins80/files/patch-ext_mpeg2enc_gstmpeg2encoptions.cc deleted file mode 100644 index aabbc2971c4d..000000000000 --- a/multimedia/gstreamer-plugins80/files/patch-ext_mpeg2enc_gstmpeg2encoptions.cc +++ /dev/null @@ -1,26 +0,0 @@ ---- ext/mpeg2enc/gstmpeg2encoptions.cc.orig Mon Jul 5 19:54:18 2004 -+++ ext/mpeg2enc/gstmpeg2encoptions.cc Mon Jul 5 20:05:37 2004 -@@ -267,11 +267,23 @@ - * Class init stuff. - */ - -+#if !defined(_SC_NPROCESSORS_ONLN) && defined(__FreeBSD__) -+#include <sys/types.h> -+#include <sys/sysctl.h> -+#endif -+ - GstMpeg2EncOptions::GstMpeg2EncOptions (): - MPEG2EncOptions () - { - /* autodetect number of CPUs */ -+#if !defined(_SC_NPROCESSORS_ONLN) && defined(__FreeBSD__) -+ /* We need to use a sysctl to get the number of CPUs. */ -+ size_t len = sizeof (num_cpus); -+ -+ sysctlbyname ("hw.ncpu", &num_cpus, &len, NULL, 0); -+#else - num_cpus = sysconf (_SC_NPROCESSORS_ONLN); -+#endif - if (num_cpus < 0) - num_cpus = 1; - if (num_cpus > 32) diff --git a/multimedia/gstreamer-plugins80/files/patch-ext_sdl_Makefile.in b/multimedia/gstreamer-plugins80/files/patch-ext_sdl_Makefile.in deleted file mode 100644 index c943042ad72a..000000000000 --- a/multimedia/gstreamer-plugins80/files/patch-ext_sdl_Makefile.in +++ /dev/null @@ -1,23 +0,0 @@ ---- ext/sdl/Makefile.in.orig Mon Oct 4 00:56:57 2004 -+++ ext/sdl/Makefile.in Mon Oct 4 00:57:47 2004 -@@ -76,8 +76,7 @@ - pluginLTLIBRARIES_INSTALL = $(INSTALL) - LTLIBRARIES = $(plugin_LTLIBRARIES) - am__DEPENDENCIES_1 = --libgstsdlvideosink_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \ -- $(top_builddir)/gst-libs/gst/libgstinterfaces-@GST_MAJORMINOR@.la -+libgstsdlvideosink_la_DEPENDENCIES = $(am__DEPENDENCIES_1) - am_libgstsdlvideosink_la_OBJECTS = \ - libgstsdlvideosink_la-sdlvideosink.lo - libgstsdlvideosink_la_OBJECTS = $(am_libgstsdlvideosink_la_OBJECTS) -@@ -617,9 +616,7 @@ - plugin_LTLIBRARIES = libgstsdlvideosink.la - libgstsdlvideosink_la_SOURCES = sdlvideosink.c - libgstsdlvideosink_la_CFLAGS = $(GST_CFLAGS) $(SDL_CFLAGS) --libgstsdlvideosink_la_LIBADD = $(SDL_LIBS) \ -- $(top_builddir)/gst-libs/gst/libgstinterfaces-@GST_MAJORMINOR@.la -- -+libgstsdlvideosink_la_LIBADD = $(SDL_LIBS) -lgstinterfaces-%%VERSION%% - libgstsdlvideosink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) - noinst_HEADERS = sdlvideosink.h - all: all-am diff --git a/multimedia/gstreamer-plugins80/files/patch-gst_ffmpegcolorspace_Makefile.in b/multimedia/gstreamer-plugins80/files/patch-gst_ffmpegcolorspace_Makefile.in deleted file mode 100644 index fb2afdfb0ef3..000000000000 --- a/multimedia/gstreamer-plugins80/files/patch-gst_ffmpegcolorspace_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- gst/ffmpegcolorspace/Makefile.in.orig Wed Mar 9 01:40:27 2005 -+++ gst/ffmpegcolorspace/Makefile.in Wed Mar 9 01:41:10 2005 -@@ -360,7 +360,7 @@ - LAME_LIBS = @LAME_LIBS@ - LCS_CFLAGS = @LCS_CFLAGS@ - LCS_LIBS = @LCS_LIBS@ --LDFLAGS = @LDFLAGS@ -+LDFLAGS = @LDFLAGS@ -Wl,-Bsymbolic -lc - LIBCACA_CFLAGS = @LIBCACA_CFLAGS@ - LIBCACA_CONFIG = @LIBCACA_CONFIG@ - LIBCACA_LIBS = @LIBCACA_LIBS@ diff --git a/multimedia/gstreamer-plugins80/files/patch-sys_cdrom_gstcdplayer-ioctl-bsd.h b/multimedia/gstreamer-plugins80/files/patch-sys_cdrom_gstcdplayer-ioctl-bsd.h deleted file mode 100644 index daaefac5eb5d..000000000000 --- a/multimedia/gstreamer-plugins80/files/patch-sys_cdrom_gstcdplayer-ioctl-bsd.h +++ /dev/null @@ -1,72 +0,0 @@ ---- sys/cdrom/gstcdplayer_ioctl_bsd.h.orig Mon Mar 1 06:52:03 2004 -+++ sys/cdrom/gstcdplayer_ioctl_bsd.h Tue Mar 9 16:05:36 2004 -@@ -142,6 +142,7 @@ - { - struct ioc_toc_header toc_header; - struct ioc_read_toc_entry toc_entry; -+ struct cd_toc_entry toc_entry_data; - guint i; - - cd->fd = open(device,O_RDONLY | O_NONBLOCK); -@@ -151,7 +152,7 @@ - } - - /* get the toc header information */ -- if (ioctl(cd->fd,CDIOREADTOCHDR,&toc_header) != 0) { -+ if (ioctl(cd->fd,CDIOREADTOCHEADER,&toc_header) != 0) { - close(cd->fd); - cd->fd = -1; - return FALSE; -@@ -161,6 +162,8 @@ - for (i = 1; i <= toc_header.ending_track; i++) { - toc_entry.address_format = CD_MSF_FORMAT; - toc_entry.starting_track = i; -+ toc_entry.data = &toc_entry_data; -+ toc_entry.data_len = sizeof(toc_entry_data); - - if (ioctl(cd->fd,CDIOREADTOCENTRYS,&toc_entry) != 0) { - close(cd->fd); -@@ -168,9 +171,9 @@ - return FALSE; - } - -- cd->tracks[i].minute = toc_entry.entry.addr.msf.minute; -- cd->tracks[i].second = toc_entry.entry.addr.msf.second; -- cd->tracks[i].frame = toc_entry.entry.addr.msf.frame; -+ cd->tracks[i].minute = toc_entry.data->addr.msf.minute; -+ cd->tracks[i].second = toc_entry.data->addr.msf.second; -+ cd->tracks[i].frame = toc_entry.data->addr.msf.frame; - cd->tracks[i].data_track = (toc_entry.data->control & 4) == 4; - } - -@@ -186,9 +189,9 @@ - return FALSE; - } - -- cd->tracks[LEADOUT].minute = toc_entry.entry.addr.msf.minute; -- cd->tracks[LEADOUT].second = toc_entry.entry.addr.msf.second; -- cd->tracks[LEADOUT].frame = toc_entry.entry.addr.msf.frame; -+ cd->tracks[LEADOUT].minute = toc_entry.data->addr.msf.minute; -+ cd->tracks[LEADOUT].second = toc_entry.data->addr.msf.second; -+ cd->tracks[LEADOUT].frame = toc_entry.data->addr.msf.frame; - - cd->num_tracks = toc_header.ending_track; - -@@ -224,6 +227,8 @@ - return FALSE; - } - -+ /* lets return TRUE and lets see what happes (may not be correct)*/ -+ return TRUE; - } - - gboolean cd_pause(struct cd *cd) -@@ -321,7 +326,7 @@ - return -1; - } - --#ifdef __NetBSD__ -+#if defined(__NetBSD__) || defined(__FreeBSD__) - return sub_channel.data->what.track_info.track_number; - #else - return sub_channel.data->track_number; diff --git a/multimedia/gstreamer-plugins80/files/patch-sys_oss_gstosselement.h b/multimedia/gstreamer-plugins80/files/patch-sys_oss_gstosselement.h deleted file mode 100644 index 30258ba113c1..000000000000 --- a/multimedia/gstreamer-plugins80/files/patch-sys_oss_gstosselement.h +++ /dev/null @@ -1,10 +0,0 @@ ---- sys/oss/gstosselement.h.orig Tue Mar 9 16:46:05 2004 -+++ sys/oss/gstosselement.h Tue Mar 9 16:46:14 2004 -@@ -23,6 +23,7 @@ - #ifndef __GST_OSS_ELEMENT_H__ - #define __GST_OSS_ELEMENT_H__ - -+#include <sys/types.h> - #include <gst/gst.h> - - /* debugging category */ diff --git a/multimedia/gstreamer-plugins80/pkg-descr b/multimedia/gstreamer-plugins80/pkg-descr deleted file mode 100644 index 80300084cfa4..000000000000 --- a/multimedia/gstreamer-plugins80/pkg-descr +++ /dev/null @@ -1,17 +0,0 @@ -[ excerpt from developer's site ] - -This is a collection of plugins written with the GStreamer framework. -Some features of these plugins are: - -- Dynamically loaded plugins provide elements and media types, - demand-loaded via an XML registry, similar to ld.so.cache -- Element interface handles all known types of sources, filters, - sinks -- Capabilities system allows verification of element compatibility - using MIME types and media-specific properties -- Autoplugging uses capabilities system to complete complex paths - automatically -- Pipelines can be saved to XML and loaded back to working state -- Resource friendly plugins don't waste RAM - -WWW: http://gstreamer.sourceforge.net/ diff --git a/multimedia/gstreamer-plugins80/pkg-plist b/multimedia/gstreamer-plugins80/pkg-plist deleted file mode 100644 index 34c1cb99238e..000000000000 --- a/multimedia/gstreamer-plugins80/pkg-plist +++ /dev/null @@ -1,183 +0,0 @@ -bin/gst-launch-ext-%%VERSION%% -bin/gst-visualise-%%VERSION%% -include/gstreamer-%%VERSION%%/gst/audio/audio.h -include/gstreamer-%%VERSION%%/gst/audio/audioclock.h -include/gstreamer-%%VERSION%%/gst/audio/multichannel-enumtypes.h -include/gstreamer-%%VERSION%%/gst/audio/multichannel.h -include/gstreamer-%%VERSION%%/gst/audio/gstaudiofilter.h -include/gstreamer-%%VERSION%%/gst/colorbalance/colorbalance-enumtypes.h -include/gstreamer-%%VERSION%%/gst/colorbalance/colorbalance.h -include/gstreamer-%%VERSION%%/gst/colorbalance/colorbalancechannel.h -include/gstreamer-%%VERSION%%/gst/floatcast/floatcast.h -include/gstreamer-%%VERSION%%/gst/idct/idct.h -include/gstreamer-%%VERSION%%/gst/media-info/media-info.h -include/gstreamer-%%VERSION%%/gst/mixer/mixer-enumtypes.h -include/gstreamer-%%VERSION%%/gst/mixer/mixer.h -include/gstreamer-%%VERSION%%/gst/mixer/mixeroptions.h -include/gstreamer-%%VERSION%%/gst/mixer/mixertrack.h -include/gstreamer-%%VERSION%%/gst/navigation/navigation.h -include/gstreamer-%%VERSION%%/gst/play/play-enumtypes.h -include/gstreamer-%%VERSION%%/gst/play/play.h -include/gstreamer-%%VERSION%%/gst/propertyprobe/propertyprobe.h -include/gstreamer-%%VERSION%%/gst/resample/resample.h -include/gstreamer-%%VERSION%%/gst/riff/riff-ids.h -include/gstreamer-%%VERSION%%/gst/riff/riff-media.h -include/gstreamer-%%VERSION%%/gst/riff/riff-read.h -include/gstreamer-%%VERSION%%/gst/tag/tag.h -include/gstreamer-%%VERSION%%/gst/tuner/tuner-enumtypes.h -include/gstreamer-%%VERSION%%/gst/tuner/tuner.h -include/gstreamer-%%VERSION%%/gst/tuner/tunerchannel.h -include/gstreamer-%%VERSION%%/gst/tuner/tunernorm.h -include/gstreamer-%%VERSION%%/gst/video/video.h -include/gstreamer-%%VERSION%%/gst/video/videosink.h -include/gstreamer-%%VERSION%%/gst/xoverlay/xoverlay.h -include/gstreamer-%%VERSION%%/gst/xwindowlistener/xwindowlistener.h -lib/gstreamer-%%VERSION%%/libgstac3parse.so -lib/gstreamer-%%VERSION%%/libgstadder.so -lib/gstreamer-%%VERSION%%/libgstalaw.so -lib/gstreamer-%%VERSION%%/libgstalpha.so -lib/gstreamer-%%VERSION%%/libgstalphacolor.so -lib/gstreamer-%%VERSION%%/libgstapetag.so -lib/gstreamer-%%VERSION%%/libgstasf.so -lib/gstreamer-%%VERSION%%/libgstaudio.so -lib/gstreamer-%%VERSION%%/libgstaudioconvert.so -lib/gstreamer-%%VERSION%%/libgstaudiofilter.so -lib/gstreamer-%%VERSION%%/libgstaudiorate.so -lib/gstreamer-%%VERSION%%/libgstaudioscale.so -lib/gstreamer-%%VERSION%%/libgstauparse.so -lib/gstreamer-%%VERSION%%/libgstautodetect.so -lib/gstreamer-%%VERSION%%/libgstavi.so -lib/gstreamer-%%VERSION%%/libgstcdplayer.so -lib/gstreamer-%%VERSION%%/libgstcdxaparse.so -lib/gstreamer-%%VERSION%%/libgstchart.so -lib/gstreamer-%%VERSION%%/libgstcolorspace.so -lib/gstreamer-%%VERSION%%/libgstcutter.so -lib/gstreamer-%%VERSION%%/libgstdebug.so -lib/gstreamer-%%VERSION%%/libgstdecodebin.so -lib/gstreamer-%%VERSION%%/libgstdeinterlace.so -lib/gstreamer-%%VERSION%%/libgstdvdlpcmdec.so -lib/gstreamer-%%VERSION%%/libgstefence.so -lib/gstreamer-%%VERSION%%/libgsteffectv.so -lib/gstreamer-%%VERSION%%/libgstequalizer.so -lib/gstreamer-%%VERSION%%/libgstfestival.so -lib/gstreamer-%%VERSION%%/libgstffmpegcolorspace.so -lib/gstreamer-%%VERSION%%/libgstfilter.so -lib/gstreamer-%%VERSION%%/libgstflxdec.so -lib/gstreamer-%%VERSION%%/libgstgamma.so -lib/gstreamer-%%VERSION%%/libgstgoom.so -lib/gstreamer-%%VERSION%%/libgstidct.so -lib/gstreamer-%%VERSION%%/libgstinterleave.so -lib/gstreamer-%%VERSION%%/libgstlevel.so -lib/gstreamer-%%VERSION%%/libgstmatroska.so -lib/gstreamer-%%VERSION%%/libgstmedian.so -lib/gstreamer-%%VERSION%%/libgstmixmatrix.so -lib/gstreamer-%%VERSION%%/libgstmodplug.so -lib/gstreamer-%%VERSION%%/libgstmonoscope.so -lib/gstreamer-%%VERSION%%/libgstmp1videoparse.so -lib/gstreamer-%%VERSION%%/libgstmpeg1systemencode.so -lib/gstreamer-%%VERSION%%/libgstmpeg2subt.so -lib/gstreamer-%%VERSION%%/libgstmpegaudio.so -lib/gstreamer-%%VERSION%%/libgstmpegaudioparse.so -lib/gstreamer-%%VERSION%%/libgstmpegstream.so -lib/gstreamer-%%VERSION%%/libgstmulaw.so -lib/gstreamer-%%VERSION%%/libgstmultifilesink.so -lib/gstreamer-%%VERSION%%/libgstmultipart.so -lib/gstreamer-%%VERSION%%/libgstnavigationtest.so -lib/gstreamer-%%VERSION%%/libgstossaudio.so -lib/gstreamer-%%VERSION%%/libgstoverlay.so -lib/gstreamer-%%VERSION%%/libgstpassthrough.so -lib/gstreamer-%%VERSION%%/libgstplaybin.so -lib/gstreamer-%%VERSION%%/libgstplayondemand.so -lib/gstreamer-%%VERSION%%/libgstpuzzle.so -lib/gstreamer-%%VERSION%%/libgstqtdemux.so -lib/gstreamer-%%VERSION%%/libgstresample.so -lib/gstreamer-%%VERSION%%/libgstrfbsrc.so -lib/gstreamer-%%VERSION%%/libgstriff.so -lib/gstreamer-%%VERSION%%/libgstrmdemux.so -lib/gstreamer-%%VERSION%%/libgstrtjpeg.so -lib/gstreamer-%%VERSION%%/libgstrtp.so -lib/gstreamer-%%VERSION%%/libgstsilence.so -lib/gstreamer-%%VERSION%%/libgstsinesrc.so -lib/gstreamer-%%VERSION%%/libgstsmooth.so -lib/gstreamer-%%VERSION%%/libgstsmpte.so -lib/gstreamer-%%VERSION%%/libgstspectrum.so -lib/gstreamer-%%VERSION%%/libgstspeed.so -lib/gstreamer-%%VERSION%%/libgststereo.so -lib/gstreamer-%%VERSION%%/libgstsubparse.so -lib/gstreamer-%%VERSION%%/libgstswitch.so -lib/gstreamer-%%VERSION%%/libgstsynaesthesia.so -lib/gstreamer-%%VERSION%%/libgsttagedit.so -lib/gstreamer-%%VERSION%%/libgsttcp.so -lib/gstreamer-%%VERSION%%/libgsttta.so -lib/gstreamer-%%VERSION%%/libgsttypefindfunctions.so -lib/gstreamer-%%VERSION%%/libgstudp.so -lib/gstreamer-%%VERSION%%/libgstvbidec.so -lib/gstreamer-%%VERSION%%/libgstvcdsrc.so -lib/gstreamer-%%VERSION%%/libgstvideo.so -lib/gstreamer-%%VERSION%%/libgstvideobalance.so -lib/gstreamer-%%VERSION%%/libgstvideobox.so -lib/gstreamer-%%VERSION%%/libgstvideocrop.so -lib/gstreamer-%%VERSION%%/libgstvideodrop.so -lib/gstreamer-%%VERSION%%/libgstvideofilter.so -lib/gstreamer-%%VERSION%%/libgstvideoflip.so -lib/gstreamer-%%VERSION%%/libgstvideomixer.so -lib/gstreamer-%%VERSION%%/libgstvideorate.so -lib/gstreamer-%%VERSION%%/libgstvideoscale.so -lib/gstreamer-%%VERSION%%/libgstvideotestsrc.so -lib/gstreamer-%%VERSION%%/libgstvolenv.so -lib/gstreamer-%%VERSION%%/libgstvolume.so -lib/gstreamer-%%VERSION%%/libgstwavenc.so -lib/gstreamer-%%VERSION%%/libgstwavparse.so -lib/gstreamer-%%VERSION%%/libgstximagesink.so -lib/gstreamer-%%VERSION%%/libgstxvimagesink.so -lib/gstreamer-%%VERSION%%/libgstxwindowlistener.so -lib/gstreamer-%%VERSION%%/libgsty4menc.so -lib/libgstinterfaces-%%VERSION%%.a -lib/libgstinterfaces-%%VERSION%%.so -lib/libgstinterfaces-%%VERSION%%.so.%%SHLIB_VERSION%% -lib/libgstmedia-info-%%VERSION%%.a -lib/libgstmedia-info-%%VERSION%%.so -lib/libgstmedia-info-%%VERSION%%.so.%%SHLIB_VERSION%% -lib/libgstplay-%%VERSION%%.a -lib/libgstplay-%%VERSION%%.so -lib/libgstplay-%%VERSION%%.so.%%SHLIB_VERSION%% -libdata/pkgconfig/gstreamer-interfaces-%%VERSION%%.pc -libdata/pkgconfig/gstreamer-libs-%%VERSION%%.pc -libdata/pkgconfig/gstreamer-media-info-%%VERSION%%.pc -libdata/pkgconfig/gstreamer-play-%%VERSION%%.pc -libdata/pkgconfig/gstreamer-plugins-%%VERSION%%.pc -share/locale/af/LC_MESSAGES/gst-plugins-%%VERSION%%.mo -share/locale/az/LC_MESSAGES/gst-plugins-%%VERSION%%.mo -share/locale/cs/LC_MESSAGES/gst-plugins-%%VERSION%%.mo -share/locale/en_GB/LC_MESSAGES/gst-plugins-%%VERSION%%.mo -share/locale/hu/LC_MESSAGES/gst-plugins-%%VERSION%%.mo -share/locale/it/LC_MESSAGES/gst-plugins-%%VERSION%%.mo -share/locale/nb/LC_MESSAGES/gst-plugins-%%VERSION%%.mo -share/locale/nl/LC_MESSAGES/gst-plugins-%%VERSION%%.mo -share/locale/or/LC_MESSAGES/gst-plugins-%%VERSION%%.mo -share/locale/sq/LC_MESSAGES/gst-plugins-%%VERSION%%.mo -share/locale/sr/LC_MESSAGES/gst-plugins-%%VERSION%%.mo -share/locale/sv/LC_MESSAGES/gst-plugins-%%VERSION%%.mo -share/locale/uk/LC_MESSAGES/gst-plugins-%%VERSION%%.mo -share/locale/vi/LC_MESSAGES/gst-plugins-%%VERSION%%.mo -@dirrm lib/gstreamer-%%VERSION%% -@dirrm include/gstreamer-%%VERSION%%/gst/xwindowlistener -@dirrm include/gstreamer-%%VERSION%%/gst/xoverlay -@dirrm include/gstreamer-%%VERSION%%/gst/video -@dirrm include/gstreamer-%%VERSION%%/gst/tuner -@dirrm include/gstreamer-%%VERSION%%/gst/tag -@dirrm include/gstreamer-%%VERSION%%/gst/riff -@dirrm include/gstreamer-%%VERSION%%/gst/resample -@dirrm include/gstreamer-%%VERSION%%/gst/propertyprobe -@dirrm include/gstreamer-%%VERSION%%/gst/play -@dirrm include/gstreamer-%%VERSION%%/gst/navigation -@dirrm include/gstreamer-%%VERSION%%/gst/mixer -@dirrm include/gstreamer-%%VERSION%%/gst/media-info -@dirrm include/gstreamer-%%VERSION%%/gst/idct -@dirrm include/gstreamer-%%VERSION%%/gst/floatcast -@dirrm include/gstreamer-%%VERSION%%/gst/colorbalance -@dirrm include/gstreamer-%%VERSION%%/gst/audio -@unexec rmdir %D/include/gstreamer-%%VERSION%%/gst 2>/dev/null || true -@unexec rmdir %D/include/gstreamer-%%VERSION%% 2>/dev/null || true -@exec %D/bin/gst-register --gst-registry=%D/share/gnome/cache/gstreamer-%%VERSION%%/registry.xml 2>/dev/null || true -@unexec %D/bin/gst-register --gst-registry=%D/share/gnome/cache/gstreamer-%%VERSION%%/registry.xml 2>/dev/null || true diff --git a/multimedia/gstreamer80/Makefile b/multimedia/gstreamer80/Makefile deleted file mode 100644 index 33b784ff95b5..000000000000 --- a/multimedia/gstreamer80/Makefile +++ /dev/null @@ -1,66 +0,0 @@ -# New ports collection makefile for: gstreamer -# Date created: Tue Jul 9 20:24:02 UTC 2002 -# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= gstreamer -PORTVERSION= 0.8.9 -PORTREVISION= 2 -CATEGORIES= multimedia -MASTER_SITES= ${MASTER_SITE_GNOME} \ - http://gstreamer.freedesktop.org/src/gstreamer/ -MASTER_SITE_SUBDIR= sources/${PORTNAME}/${GST_VERSION} -DIST_SUBDIR= gnome2 - -MAINTAINER= lioux@FreeBSD.org -COMMENT= Development framework for creating media applications - -LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt - -USE_X_PREFIX= yes -USE_BISON= yes -USE_BZIP2= yes -USE_GMAKE= yes -WANT_GNOME= yes -USE_GNOME= gnomehack \ - gnomeprefix \ - glib20 \ - libxml2 -USE_LIBTOOL_VER=15 -CONFIGURE_ARGS= --disable-tests \ - --disable-examples \ - --disable-docs-build \ - --disable-failing-tests -CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \ - LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" -PLIST_SUB= \ - VERSION="${GST_VERSION}" \ - SHLIB_VERSION="${SHLIB_VERSION}" \ - PORTVERSION="${PORTVERSION}" -INSTALLS_SHLIB= yes - -MAN1= gst-complete-${GST_VERSION}.1 gst-compprep-${GST_VERSION}.1 \ - gst-feedback-${GST_VERSION}.1 gst-inspect-${GST_VERSION}.1 \ - gst-launch-${GST_VERSION}.1 gst-md5sum-${GST_VERSION}.1 \ - gst-register-${GST_VERSION}.1 gst-typefind-${GST_VERSION}.1 \ - gst-xmllaunch-${GST_VERSION}.1 gst-xmlinspect-${GST_VERSION}.1 - -GST_VERSION=${PORTVERSION:C/..$//} - -# library minor number -SHLIB_VERSION= 5 - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 600012 -EXTRA_PATCHES+= ${FILESDIR}/extra-patch-gst::cothreads.c -.endif - -post-install: -# register plugins - -@${PREFIX}/bin/gst-register-${GST_VERSION} \ - --gst-registry=${PREFIX}/share/gnome/cache/gstreamer-${GST_VERSION}/registry.xml 2>/dev/null - -.include <bsd.port.post.mk> diff --git a/multimedia/gstreamer80/distinfo b/multimedia/gstreamer80/distinfo deleted file mode 100644 index 8d93776cc488..000000000000 --- a/multimedia/gstreamer80/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (gnome2/gstreamer-0.8.9.tar.bz2) = 6769de224de8457ed0dc09016287883a -SIZE (gnome2/gstreamer-0.8.9.tar.bz2) = 1456548 diff --git a/multimedia/gstreamer80/files/extra-patch-gst::cothreads.c b/multimedia/gstreamer80/files/extra-patch-gst::cothreads.c deleted file mode 100644 index 3581c0987c8b..000000000000 --- a/multimedia/gstreamer80/files/extra-patch-gst::cothreads.c +++ /dev/null @@ -1,11 +0,0 @@ ---- gst/cothreads.c.orig Mon Feb 2 06:56:53 2004 -+++ gst/cothreads.c Fri Feb 6 13:05:26 2004 -@@ -52,7 +56,7 @@ - #endif - #endif - --#define STACK_SIZE 0x200000 -+#define STACK_SIZE 0x100000 - - #define COTHREAD_MAGIC_NUMBER 0xabcdef - diff --git a/multimedia/gstreamer80/files/patch-configure b/multimedia/gstreamer80/files/patch-configure deleted file mode 100644 index 672c3d3170fe..000000000000 --- a/multimedia/gstreamer80/files/patch-configure +++ /dev/null @@ -1,29 +0,0 @@ ---- configure.orig Fri Jun 4 18:19:18 2004 -+++ configure Fri Jun 4 18:20:27 2004 -@@ -21877,7 +21877,7 @@ - - - EXP_VAR=LOCALEDIR -- FROM_VAR=$datadir/locale -+ FROM_VAR=$prefix/share/locale - - prefix_save=$prefix - exec_prefix_save=$exec_prefix -@@ -21981,7 +21981,7 @@ - echo $ECHO_N "checking to see if compiler understands -Werror... $ECHO_C" >&6 - - save_CFLAGS="$CFLAGS" -- CFLAGS="$CFLAGS -Werror" -+ CFLAGS="$CFLAGS" - - cat >conftest.$ac_ext <<_ACEOF - /* confdefs.h. */ -@@ -22031,7 +22031,7 @@ - CFLAGS="$save_CFLAGS" - - if test "X$flag_ok" = Xyes ; then -- GST_ERROR_CFLAGS="$GST_ERROR_CFLAGS -Werror" -+ GST_ERROR_CFLAGS="$GST_ERROR_CFLAGS" - true - else - diff --git a/multimedia/gstreamer80/files/patch-gst::cothreads.c b/multimedia/gstreamer80/files/patch-gst::cothreads.c deleted file mode 100644 index a756de582f5e..000000000000 --- a/multimedia/gstreamer80/files/patch-gst::cothreads.c +++ /dev/null @@ -1,13 +0,0 @@ ---- gst/cothreads.c.orig Mon Feb 2 06:56:53 2004 -+++ gst/cothreads.c Fri Feb 6 13:05:26 2004 -@@ -42,6 +42,10 @@ - #include <ucontext.h> - #endif - -+#ifdef HAVE_MAKECONTEXT -+#include <ucontext.h> -+#endif -+ - #ifndef MAP_ANONYMOUS - #ifdef MAP_ANON - /* older glibc's have MAP_ANON instead of MAP_ANONYMOUS */ diff --git a/multimedia/gstreamer80/files/patch-gst_gstmemchunk.c b/multimedia/gstreamer80/files/patch-gst_gstmemchunk.c deleted file mode 100644 index 5a3a624cbb73..000000000000 --- a/multimedia/gstreamer80/files/patch-gst_gstmemchunk.c +++ /dev/null @@ -1,10 +0,0 @@ ---- gst/gstmemchunk.c.orig Wed Aug 4 15:31:41 2004 -+++ gst/gstmemchunk.c Wed Aug 4 15:31:52 2004 -@@ -24,6 +24,7 @@ - #include "gstmemchunk.h" - #include "gsttrashstack.h" - #ifdef HAVE_VALGRIND -+#include <sys/types.h> - #include <sys/mman.h> - #include <valgrind/valgrind.h> - #endif diff --git a/multimedia/gstreamer80/files/patch-gst_gstqueue.c b/multimedia/gstreamer80/files/patch-gst_gstqueue.c deleted file mode 100644 index ce9ef4271a55..000000000000 --- a/multimedia/gstreamer80/files/patch-gst_gstqueue.c +++ /dev/null @@ -1,101 +0,0 @@ ---- gst/gstqueue.c.orig Wed Feb 2 19:14:12 2005 -+++ gst/gstqueue.c Thu Mar 17 10:32:49 2005 -@@ -474,6 +474,8 @@ - static void - gst_queue_locked_flush (GstQueue * queue) - { -+ GST_CAT_LOG_OBJECT (queue_dataflow, queue, "Flushing contents..."); -+ - while (!g_queue_is_empty (queue->queue)) { - GstData *data = g_queue_pop_head (queue->queue); - -@@ -569,7 +571,9 @@ - - if (GST_IS_BUFFER (data)) - GST_CAT_LOG_OBJECT (queue_dataflow, queue, -- "adding buffer %p of size %d", data, GST_BUFFER_SIZE (data)); -+ "adding buffer %p of size %d and time %" GST_TIME_FORMAT, -+ data, GST_BUFFER_SIZE (data), -+ GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (data))); - - /* We make space available if we're "full" according to whatever - * the user defined as "full". Note that this only applies to buffers. -@@ -657,11 +661,11 @@ - GstScheduler *sched; - - GST_CAT_DEBUG_OBJECT (queue_dataflow, queue, "interrupted"); -- GST_QUEUE_MUTEX_UNLOCK; - sched = gst_pad_get_scheduler (queue->sinkpad); - if (!sched || gst_scheduler_interrupt (sched, GST_ELEMENT (queue))) { -- goto out_unref; -+ goto ignore_interrupt; - } -+ GST_QUEUE_MUTEX_UNLOCK; - /* if we got here because we were unlocked after a - * flush, we don't need to add the buffer to the - * queue again */ -@@ -693,6 +697,7 @@ - } - } - -+ ignore_interrupt: - /* OK, we've got a serious issue here. Imagine the situation - * where the puller (next element) is sending an event here, - * so it cannot pull events from the queue, and we cannot -@@ -701,9 +706,16 @@ - * that, we handle pending upstream events here, too. */ - gst_queue_handle_pending_events (queue); - -- STATUS (queue, "waiting for item_del signal from thread using qlock"); -- g_cond_wait (queue->item_del, queue->qlock); -- STATUS (queue, "received item_del signal from thread using qlock"); -+ if (!queue->interrupt) { -+ STATUS (queue, -+ "waiting for item_del signal from thread using qlock"); -+ g_cond_wait (queue->item_del, queue->qlock); -+ STATUS (queue, "received item_del signal from thread using qlock"); -+ } else { -+ GST_CAT_DEBUG_OBJECT (queue_dataflow, queue, -+ "Not waiting, just adding buffer, after interrupt (bad!)"); -+ break; -+ } - } - - STATUS (queue, "post-full wait"); -@@ -848,6 +860,9 @@ - queue->cur_level.bytes -= GST_BUFFER_SIZE (data); - if (GST_BUFFER_DURATION (data) != GST_CLOCK_TIME_NONE) - queue->cur_level.time -= GST_BUFFER_DURATION (data); -+ GST_CAT_LOG_OBJECT (queue_dataflow, queue, -+ "Got buffer of time %" GST_TIME_FORMAT, -+ GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (data))); - } - - /* Now that we're done, we can lose our own reference to -@@ -947,6 +962,7 @@ - if (GST_EVENT_SEEK_FLAGS (event) & GST_SEEK_FLAG_FLUSH) { - gst_queue_locked_flush (queue); - } -+ break; - default: - break; - } -@@ -974,10 +990,16 @@ - /* FIXME: this code assumes that there's no discont in the queue */ - switch (*fmt) { - case GST_FORMAT_BYTES: -- *value -= queue->cur_level.bytes; -+ if (*value >= queue->cur_level.bytes) -+ *value -= queue->cur_level.bytes; -+ else -+ *value = 0; - break; - case GST_FORMAT_TIME: -- *value -= queue->cur_level.time; -+ if (*value >= queue->cur_level.time) -+ *value -= queue->cur_level.time; -+ else -+ *value = 0; - break; - default: - /* FIXME */ diff --git a/multimedia/gstreamer80/pkg-descr b/multimedia/gstreamer80/pkg-descr deleted file mode 100644 index 3e7e98b0eab0..000000000000 --- a/multimedia/gstreamer80/pkg-descr +++ /dev/null @@ -1,24 +0,0 @@ -[ excerpt from developer's site ] -- What is GStreamer? -GStreamer allows the construction of graphs of media-handling -components, ranging from simple mp3 playback to complex audio -(mixing) and video (non-linear editing) processing. Applications -can take advantage of advances in codec and filter technology -transparently. Developers can add new codecs and filters by writing -a simple plugin with a clean, generic interface. GStreamer is -released under the LGPL, with many of the included plugins retaining -the license of the code they were derived from, usually GPL or BSD. - -- Features: -* Comprehensive Core Library -* Intelligent Plugin Architecture -* Extensive Development Tools - -- Is GStreamer a media player? -No, GStreamer is a development framework for creating applications -like media players, video editors, streaming media broadcasters and -so on. That said, very good media players can easily be built on -top of GStreamer and we even include a simple yet functional -mediaplayer with GStreamer called Gst-Player - -WWW: http://gstreamer.sourceforge.net/ diff --git a/multimedia/gstreamer80/pkg-plist b/multimedia/gstreamer80/pkg-plist deleted file mode 100644 index a9b872d2a4ec..000000000000 --- a/multimedia/gstreamer80/pkg-plist +++ /dev/null @@ -1,131 +0,0 @@ -bin/gst-complete -bin/gst-complete-%%VERSION%% -bin/gst-compprep -bin/gst-compprep-%%VERSION%% -bin/gst-feedback -bin/gst-feedback-%%VERSION%% -bin/gst-inspect -bin/gst-inspect-%%VERSION%% -bin/gst-launch -bin/gst-launch-%%VERSION%% -bin/gst-md5sum -bin/gst-md5sum-%%VERSION%% -bin/gst-register -bin/gst-register-%%VERSION%% -bin/gst-typefind -bin/gst-typefind-%%VERSION%% -bin/gst-xmlinspect -bin/gst-xmlinspect-%%VERSION%% -bin/gst-xmllaunch -bin/gst-xmllaunch-%%VERSION%% -include/gstreamer-%%VERSION%%/gst/bytestream/adapter.h -include/gstreamer-%%VERSION%%/gst/bytestream/bytestream.h -include/gstreamer-%%VERSION%%/gst/bytestream/filepad.h -include/gstreamer-%%VERSION%%/gst/control/control.h -include/gstreamer-%%VERSION%%/gst/control/dparam.h -include/gstreamer-%%VERSION%%/gst/control/dparam_smooth.h -include/gstreamer-%%VERSION%%/gst/control/dparamcommon.h -include/gstreamer-%%VERSION%%/gst/control/dparammanager.h -include/gstreamer-%%VERSION%%/gst/control/dplinearinterp.h -include/gstreamer-%%VERSION%%/gst/control/unitconvert.h -include/gstreamer-%%VERSION%%/gst/dataprotocol/dataprotocol.h -include/gstreamer-%%VERSION%%/gst/getbits/getbits.h -include/gstreamer-%%VERSION%%/gst/gst.h -include/gstreamer-%%VERSION%%/gst/gstatomic.h -include/gstreamer-%%VERSION%%/gst/gstbin.h -include/gstreamer-%%VERSION%%/gst/gstbuffer.h -include/gstreamer-%%VERSION%%/gst/gstcaps.h -include/gstreamer-%%VERSION%%/gst/gstclock.h -include/gstreamer-%%VERSION%%/gst/gstcompat.h -include/gstreamer-%%VERSION%%/gst/gstconfig.h -include/gstreamer-%%VERSION%%/gst/gstcpu.h -include/gstreamer-%%VERSION%%/gst/gstdata.h -include/gstreamer-%%VERSION%%/gst/gstelement.h -include/gstreamer-%%VERSION%%/gst/gstenumtypes.h -include/gstreamer-%%VERSION%%/gst/gsterror.h -include/gstreamer-%%VERSION%%/gst/gstevent.h -include/gstreamer-%%VERSION%%/gst/gstfilter.h -include/gstreamer-%%VERSION%%/gst/gstformat.h -include/gstreamer-%%VERSION%%/gst/gstindex.h -include/gstreamer-%%VERSION%%/gst/gstinfo.h -include/gstreamer-%%VERSION%%/gst/gstinterface.h -include/gstreamer-%%VERSION%%/gst/gstmacros.h -include/gstreamer-%%VERSION%%/gst/gstmarshal.h -include/gstreamer-%%VERSION%%/gst/gstmemchunk.h -include/gstreamer-%%VERSION%%/gst/gstobject.h -include/gstreamer-%%VERSION%%/gst/gstpad.h -include/gstreamer-%%VERSION%%/gst/gstparse.h -include/gstreamer-%%VERSION%%/gst/gstpipeline.h -include/gstreamer-%%VERSION%%/gst/gstplugin.h -include/gstreamer-%%VERSION%%/gst/gstpluginfeature.h -include/gstreamer-%%VERSION%%/gst/gstprobe.h -include/gstreamer-%%VERSION%%/gst/gstquery.h -include/gstreamer-%%VERSION%%/gst/gstqueue.h -include/gstreamer-%%VERSION%%/gst/gstregistry.h -include/gstreamer-%%VERSION%%/gst/gstregistrypool.h -include/gstreamer-%%VERSION%%/gst/gstscheduler.h -include/gstreamer-%%VERSION%%/gst/gststructure.h -include/gstreamer-%%VERSION%%/gst/gstsystemclock.h -include/gstreamer-%%VERSION%%/gst/gsttag.h -include/gstreamer-%%VERSION%%/gst/gsttaginterface.h -include/gstreamer-%%VERSION%%/gst/gstthread.h -include/gstreamer-%%VERSION%%/gst/gsttrace.h -include/gstreamer-%%VERSION%%/gst/gsttrashstack.h -include/gstreamer-%%VERSION%%/gst/gsttypefind.h -include/gstreamer-%%VERSION%%/gst/gsttypes.h -include/gstreamer-%%VERSION%%/gst/gsturi.h -include/gstreamer-%%VERSION%%/gst/gsturitype.h -include/gstreamer-%%VERSION%%/gst/gstutils.h -include/gstreamer-%%VERSION%%/gst/gstvalue.h -include/gstreamer-%%VERSION%%/gst/gstversion.h -include/gstreamer-%%VERSION%%/gst/gstxml.h -lib/gstreamer-%%VERSION%%/libgstbasicgthreadscheduler.so -lib/gstreamer-%%VERSION%%/libgstbasicomegascheduler.so -lib/gstreamer-%%VERSION%%/libgstbytestream.so -lib/gstreamer-%%VERSION%%/libgstdataprotocol.so -lib/gstreamer-%%VERSION%%/libgstelements.so -lib/gstreamer-%%VERSION%%/libgstentrygthreadscheduler.so -lib/gstreamer-%%VERSION%%/libgstentryomegascheduler.so -lib/gstreamer-%%VERSION%%/libgstfairgthreadscheduler.so -lib/gstreamer-%%VERSION%%/libgstgetbits.so -lib/gstreamer-%%VERSION%%/libgstindexers.so -lib/gstreamer-%%VERSION%%/libgstoptgthreadscheduler.so -lib/gstreamer-%%VERSION%%/libgstoptomegascheduler.so -lib/gstreamer-%%VERSION%%/libgstoptscheduler.so -lib/gstreamer-%%VERSION%%/libgstspider.so -lib/libgstcontrol-%%VERSION%%.a -lib/libgstcontrol-%%VERSION%%.so -lib/libgstcontrol-%%VERSION%%.so.%%SHLIB_VERSION%% -lib/libgstreamer-%%VERSION%%.a -lib/libgstreamer-%%VERSION%%.so -lib/libgstreamer-%%VERSION%%.so.%%SHLIB_VERSION%% -libdata/pkgconfig/gstreamer-%%VERSION%%.pc -libdata/pkgconfig/gstreamer-control-%%VERSION%%.pc -share/aclocal/gst-element-check-%%VERSION%%.m4 -share/locale/af/LC_MESSAGES/gstreamer-%%VERSION%%.mo -share/locale/az/LC_MESSAGES/gstreamer-%%VERSION%%.mo -share/locale/ca/LC_MESSAGES/gstreamer-%%VERSION%%.mo -share/locale/cs/LC_MESSAGES/gstreamer-%%VERSION%%.mo -share/locale/de/LC_MESSAGES/gstreamer-%%VERSION%%.mo -share/locale/en_GB/LC_MESSAGES/gstreamer-%%VERSION%%.mo -share/locale/fr/LC_MESSAGES/gstreamer-%%VERSION%%.mo -share/locale/it/LC_MESSAGES/gstreamer-%%VERSION%%.mo -share/locale/nb/LC_MESSAGES/gstreamer-%%VERSION%%.mo -share/locale/nl/LC_MESSAGES/gstreamer-%%VERSION%%.mo -share/locale/sq/LC_MESSAGES/gstreamer-%%VERSION%%.mo -share/locale/sr/LC_MESSAGES/gstreamer-%%VERSION%%.mo -share/locale/sv/LC_MESSAGES/gstreamer-%%VERSION%%.mo -share/locale/tr/LC_MESSAGES/gstreamer-%%VERSION%%.mo -share/locale/uk/LC_MESSAGES/gstreamer-%%VERSION%%.mo -share/locale/vi/LC_MESSAGES/gstreamer-%%VERSION%%.mo -@unexec rm %D/share/gnome/cache/gstreamer-%%VERSION%%/registry.xml 2>/dev/null || true -@dirrm share/gnome/cache/gstreamer-%%VERSION%% -@unexec rmdir %D/share/gnome/cache 2>/dev/null || true -@dirrm lib/gstreamer-%%VERSION%% -@dirrm include/gstreamer-%%VERSION%%/gst/getbits -@dirrm include/gstreamer-%%VERSION%%/gst/dataprotocol -@dirrm include/gstreamer-%%VERSION%%/gst/control -@dirrm include/gstreamer-%%VERSION%%/gst/bytestream -@dirrm include/gstreamer-%%VERSION%%/gst -@dirrm include/gstreamer-%%VERSION%% -@exec %D/bin/gst-register --gst-registry=%D/share/gnome/cache/gstreamer-%%VERSION%%/registry.xml 2>/dev/null || true diff --git a/multimedia/handbrake-gtk2/Makefile b/multimedia/handbrake-gtk2/Makefile deleted file mode 100644 index 3858809260ce..000000000000 --- a/multimedia/handbrake-gtk2/Makefile +++ /dev/null @@ -1,72 +0,0 @@ -# New ports collection makefile for: handbrake -# Date created: 19 November 2004 -# Whom: Andrew Thompson <andy@fud.org.nz> -# -# $FreeBSD$ -# - -PORTNAME= handbrake -PORTVERSION= 0.6.2 -PORTREVISION= 2 -CATEGORIES= multimedia -MASTER_SITES= http://people.via.ecp.fr/~titer/handbrake/ -DISTNAME= HandBrake-${PORTVERSION}-src - -MAINTAINER= andy@fud.org.nz -COMMENT= A DVD to MPEG-4 ripper and encoder - -BUILD_DEPENDS= jam:${PORTSDIR}/devel/jam \ - nasm:${PORTSDIR}/devel/nasm -LIB_DEPENDS= a52.0:${PORTSDIR}/audio/liba52 \ - avcodec.1:${PORTSDIR}/multimedia/ffmpeg \ - dvdcss.2:${PORTSDIR}/multimedia/libdvdcss \ - dvdread.3:${PORTSDIR}/multimedia/libdvdread \ - faac.0:${PORTSDIR}/audio/faac \ - mp3lame.0:${PORTSDIR}/audio/lame \ - mp4v2.0:${PORTSDIR}/multimedia/mpeg4ip-libmp4v2 \ - mpeg2.0:${PORTSDIR}/multimedia/libmpeg2 \ - ogg.5:${PORTSDIR}/audio/libogg \ - samplerate.1:${PORTSDIR}/audio/libsamplerate \ - vorbis.3:${PORTSDIR}/audio/libvorbis \ - xvidcore.4:${PORTSDIR}/multimedia/xvid - -PLIST_FILES= bin/handbrake -WRKSRC= ${WRKDIR}/HandBrake-${PORTVERSION} - -USE_GNOME= gtk20 -USE_REINPLACE= yes -USE_X_PREFIX= yes - -SYSCTL_CMD?= /sbin/sysctl - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 500000 -USE_GETOPT_LONG= yes -MAKE_ENV= EXTRA_LIBS="-lcipher -lgnugetopt" -WITH_DVD_DEVICE?= acd0c -.else -WITH_DVD_DEVICE?= acd0 -.endif - -do-build: - @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} jam) - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/gtk2HB ${PREFIX}/bin/handbrake - -post-patch: - @${REINPLACE_CMD} -e 's:%%PREFIX%%:${LOCALBASE}:g' \ - -e 's:%%LIBAVCODEC%%:${FFMPEG_SRC_DIR}/libavcodec:g' \ - -e 's:%%PTHREAD_LIBS%%:${PTHREAD_LIBS}:g' \ - -e 's:%%CC%%:${CC}:g' -e 's:%%CXX%%:${CXX}:g' \ - -e 's:%%CFLAGS%%:${CFLAGS}:g' \ - ${BUILD_WRKSRC}/Jamfile ${BUILD_WRKSRC}/core/Jamfile \ - ${BUILD_WRKSRC}/Jamrules - @${REINPLACE_CMD} -e 's:%%DVD_DEVICE%%:${WITH_DVD_DEVICE}:g' \ - ${BUILD_WRKSRC}/gtk2/main.c -# sysctl - @${REINPLACE_CMD} -e 's|/usr/sbin/sysctl|${SYSCTL_CMD}|' \ - ${BUILD_WRKSRC}/core/HandBrake.c - -.include <bsd.port.post.mk> diff --git a/multimedia/handbrake-gtk2/distinfo b/multimedia/handbrake-gtk2/distinfo deleted file mode 100644 index f2f25d8e9179..000000000000 --- a/multimedia/handbrake-gtk2/distinfo +++ /dev/null @@ -1,4 +0,0 @@ -MD5 (HandBrake-0.6.2-src.tar.gz) = a787787622cfa5411c13b7a4bc057ea5 -SIZE (HandBrake-0.6.2-src.tar.gz) = 1992682 -MD5 (ffmpeg-20041113.tar.bz2) = 245bbbb766f43722826358a938afd9a9 -SIZE (ffmpeg-20041113.tar.bz2) = 1472726 diff --git a/multimedia/handbrake-gtk2/files/patch-Jamfile b/multimedia/handbrake-gtk2/files/patch-Jamfile deleted file mode 100644 index 49153375b27e..000000000000 --- a/multimedia/handbrake-gtk2/files/patch-Jamfile +++ /dev/null @@ -1,24 +0,0 @@ ---- Jamfile.orig Wed May 26 05:51:32 2004 -+++ Jamfile Sun Dec 19 11:14:57 2004 -@@ -54,6 +54,21 @@ - ObjectCcFlags $(GTK2_SRC) : `pkg-config gtk+-2.0 --cflags` ; - Main $(GTK2_BIN) : $(GTK2_SRC) ; - } -+if $(OS) = FREEBSD -+{ -+ HB_LIBS = libhb.a libx264.a ; -+ SystemLibraries $(TEST_BIN) : -L%%PREFIX%%/lib %%PTHREAD_LIBS%% -la52 -+ -lavcodec -ldvdcss -ldvdread -lfaac -lmp3lame -lmp4v2 -lmpeg2 -+ -logg -lsamplerate -lvorbis -lvorbisenc -lxvidcore -+ $(EXTRA_LIBS) ; -+ SystemLibraries $(GTK2_BIN) : -L%%PREFIX%%/lib %%PTHREAD_LIBS%% -+ $(EXTRA_LIBS) `pkg-config gtk+-2.0 --libs` -la52 -lavcodec -+ -ldvdcss -ldvdread -lfaac -lmp3lame -lmp4v2 -lmpeg2 -logg -+ -lsamplerate -lvorbis -lvorbisenc -lxvidcore ; -+ ObjectCcFlags $(TEST_SRC) : -I%%PREFIX%%/include ; -+ ObjectCcFlags $(GTK2_SRC) : `pkg-config gtk+-2.0 --cflags` ; -+ Main $(GTK2_BIN) : $(GTK2_SRC) ; -+} - if $(OS) = CYGWIN - { - SystemLibraries $(TEST_BIN) : -lws2_32 ; diff --git a/multimedia/handbrake-gtk2/files/patch-Jamrules b/multimedia/handbrake-gtk2/files/patch-Jamrules deleted file mode 100644 index 5483bf3d2e54..000000000000 --- a/multimedia/handbrake-gtk2/files/patch-Jamrules +++ /dev/null @@ -1,29 +0,0 @@ ---- Jamrules.orig Tue May 25 13:51:32 2004 -+++ Jamrules Mon Nov 22 12:57:16 2004 -@@ -8,11 +8,11 @@ - LANGUAGES = fr de it pl ru nl es pt ja ; - - # Compilers & flags --CC = gcc ; --C++ = g++ ; -+CC = %%CC%% ; -+C++ = %%CXX%% ; - AS = nasm ; --LINK = g++ ; --OPTIM = -O3 -funroll-loops ; -+LINK = %%CXX%% ; -+OPTIM = %%CFLAGS%% ; - DEFINES = HB_$(OS) HB_VERSION=\\\"$(HB_VERSION)\\\" ; - - if $(OS) = BEOS -@@ -32,6 +32,10 @@ - if $(OS) = LINUX - { - ASFLAGS = -f elf ; -+} -+if $(OS) = FREEBSD -+{ -+ OPTIM = %%CFLAGS%% ; - } - if $(OS) = CYGWIN - { diff --git a/multimedia/handbrake-gtk2/files/patch-contrib_Jamfile b/multimedia/handbrake-gtk2/files/patch-contrib_Jamfile deleted file mode 100644 index ad9895f511a6..000000000000 --- a/multimedia/handbrake-gtk2/files/patch-contrib_Jamfile +++ /dev/null @@ -1,18 +0,0 @@ ---- contrib/Jamfile.orig Fri Nov 19 15:50:35 2004 -+++ contrib/Jamfile Fri Nov 19 15:50:49 2004 -@@ -1,15 +1,3 @@ - SubDir TOP contrib ; - --SubInclude TOP contrib liba52 ; --SubInclude TOP contrib libavcodec ; --SubInclude TOP contrib libdvdcss ; --SubInclude TOP contrib libdvdread ; --SubInclude TOP contrib libfaac ; --SubInclude TOP contrib libmp3lame ; --SubInclude TOP contrib libmp4v2 ; --SubInclude TOP contrib libmpeg2 ; --SubInclude TOP contrib libogg ; --SubInclude TOP contrib libsamplerate ; --SubInclude TOP contrib libvorbis ; - SubInclude TOP contrib libx264 ; --SubInclude TOP contrib libxvidcore ; diff --git a/multimedia/handbrake-gtk2/files/patch-core_FfmpegEnc.c b/multimedia/handbrake-gtk2/files/patch-core_FfmpegEnc.c deleted file mode 100644 index f1a61bebebb6..000000000000 --- a/multimedia/handbrake-gtk2/files/patch-core_FfmpegEnc.c +++ /dev/null @@ -1,11 +0,0 @@ ---- core/FfmpegEnc.c.orig Sun Dec 19 11:16:49 2004 -+++ core/FfmpegEnc.c Sun Dec 19 11:16:58 2004 -@@ -132,7 +132,7 @@ - } - - HBBufferClose( &scaledBuffer ); -- free( frame ); -+ av_free( frame ); - - return 1; - } diff --git a/multimedia/handbrake-gtk2/files/patch-core_Fifo.c b/multimedia/handbrake-gtk2/files/patch-core_Fifo.c deleted file mode 100644 index 290a891e8070..000000000000 --- a/multimedia/handbrake-gtk2/files/patch-core_Fifo.c +++ /dev/null @@ -1,29 +0,0 @@ ---- core/Fifo.c.orig Wed May 26 05:51:32 2004 -+++ core/Fifo.c Fri Nov 19 15:55:26 2004 -@@ -23,7 +23,7 @@ - - #if defined( HB_BEOS ) || defined( HB_LINUX ) - b->data = memalign( 16, size ); --#elif defined( HB_MACOSX ) -+#elif defined( HB_MACOSX ) || defined( HB_FREEBSD ) - /* OS X's malloc returns 16-bytes aligned memory */ - b->data = malloc( size ); - #elif defined( HB_CYGWIN ) -@@ -47,7 +47,7 @@ - { - /* We don't care about alignment here, realloc is only used in the - AVI muxer anyway */ --#if defined( HB_BEOS ) || defined( HB_LINUX ) || defined( HB_MACOSX ) -+#if defined( HB_BEOS ) || defined( HB_LINUX ) || defined( HB_MACOSX ) || defined( HB_FREEBSD ) - b->data = realloc( b->data, size ); - #elif defined( HB_CYGWIN ) - int alignment = b->data - b->dataOrig; -@@ -66,7 +66,7 @@ - { - HBBuffer * b = *_b; - --#if defined( HB_BEOS ) || defined( HB_LINUX ) || defined( HB_MACOSX ) -+#if defined( HB_BEOS ) || defined( HB_LINUX ) || defined( HB_MACOSX ) || defined( HB_FREEBSD ) - free( b->data ); - #elif defined( HB_CYGWIN ) - free( b->dataOrig ); diff --git a/multimedia/handbrake-gtk2/files/patch-core_HandBrake.c b/multimedia/handbrake-gtk2/files/patch-core_HandBrake.c deleted file mode 100644 index 1c77b0015cd9..000000000000 --- a/multimedia/handbrake-gtk2/files/patch-core_HandBrake.c +++ /dev/null @@ -1,21 +0,0 @@ ---- core/HandBrake.c.orig Wed May 26 05:51:32 2004 -+++ core/HandBrake.c Sun Dec 19 11:02:32 2004 -@@ -277,7 +277,8 @@ - img_resample_full_init( t->outWidth, t->outHeight, - t->inWidth, t->inHeight, - t->topCrop, t->bottomCrop, -- t->leftCrop, t->rightCrop ); -+ t->leftCrop, t->rightCrop, -+ 0,0,0,0 ); - if( t->deinterlace ) - { - avpicture_deinterlace( &pic2, &pic1, PIX_FMT_YUV420P, -@@ -709,7 +710,7 @@ - get_system_info( &info ); - CPUCount = info.cpu_count; - --#elif defined( HB_MACOSX ) -+#elif defined( HB_MACOSX ) || defined( HB_FREEBSD ) - FILE * info; - char buffer[256]; - diff --git a/multimedia/handbrake-gtk2/files/patch-core_Jamfile b/multimedia/handbrake-gtk2/files/patch-core_Jamfile deleted file mode 100644 index 7559149b0a51..000000000000 --- a/multimedia/handbrake-gtk2/files/patch-core_Jamfile +++ /dev/null @@ -1,32 +0,0 @@ ---- core/Jamfile.orig Wed May 26 05:51:32 2004 -+++ core/Jamfile Mon Nov 22 20:28:52 2004 -@@ -15,25 +15,12 @@ - Library libhb : $(LIBHB_SRC) ; - - # Sadly, we might want to debug our code --ObjectCcFlags $(LIBHB_SRC) : -g -Wall -W ; -+ObjectCcFlags $(LIBHB_SRC) : -g -Wall -W -I%%PREFIX%%/include ; - - # Needed includes --ObjectHdrs Ac3Dec.c : $(TOP)/contrib/liba52 ; - ObjectHdrs FfmpegEnc.c -- HandBrake.c -- MpgaDec.c -- Scale.c : $(TOP)/contrib/libavcodec ; --ObjectHdrs DVDRead.c -- Scan.c : $(TOP)/contrib/libdvdread ; --ObjectHdrs FaacEnc.c : $(TOP)/contrib/libfaac ; --ObjectHdrs Mp3Enc.c : $(TOP)/contrib/libmp3lame ; --ObjectHdrs Mp4Mux.c : $(TOP)/contrib/libmp4v2 ; --ObjectHdrs Mpeg2Dec.c -- Scan.c : $(TOP)/contrib/libmpeg2 ; --ObjectHdrs Resample.c : $(TOP)/contrib/libsamplerate ; --ObjectHdrs OgmMux.c -- VorbisEnc.c : $(TOP)/contrib/libogg ; --ObjectHdrs VorbisEnc.c : $(TOP)/contrib/libvorbis ; -+ HandBrake.c -+ MpgaDec.c -+ Scale.c : %%LIBAVCODEC%% ; - ObjectHdrs X264Enc.c : $(TOP)/contrib/libx264 ; --ObjectHdrs XvidEnc.c : $(TOP)/contrib/libxvidcore ; - diff --git a/multimedia/handbrake-gtk2/files/patch-core_Scale.c b/multimedia/handbrake-gtk2/files/patch-core_Scale.c deleted file mode 100644 index d0d33d091703..000000000000 --- a/multimedia/handbrake-gtk2/files/patch-core_Scale.c +++ /dev/null @@ -1,12 +0,0 @@ ---- core/Scale.c.orig Wed May 26 05:51:32 2004 -+++ core/Scale.c Sun Dec 19 11:02:44 2004 -@@ -52,7 +52,8 @@ - img_resample_full_init( title->outWidth, title->outHeight, - title->inWidth, title->inHeight, - title->topCrop, title->bottomCrop, -- title->leftCrop, title->rightCrop ); -+ title->leftCrop, title->rightCrop, -+ 0,0,0,0 ); - - return w; - } diff --git a/multimedia/handbrake-gtk2/files/patch-core_Thread.c b/multimedia/handbrake-gtk2/files/patch-core_Thread.c deleted file mode 100644 index b47124180e5d..000000000000 --- a/multimedia/handbrake-gtk2/files/patch-core_Thread.c +++ /dev/null @@ -1,66 +0,0 @@ -diff -urN core/Thread.c core/Thread.c ---- core/Thread.c Wed May 26 05:51:32 2004 -+++ core/Thread.c Fri Nov 19 08:08:07 2004 -@@ -24,7 +24,7 @@ - /* OS-specific thread id */ - #if defined( HB_BEOS ) - int thread; --#elif defined( HB_MACOSX ) || defined( HB_LINUX ) -+#elif defined( HB_MACOSX ) || defined( HB_LINUX ) || defined( HB_FREEBSD ) - pthread_t thread; - #elif defined( HB_CYGWIN ) - HANDLE thread; -@@ -74,7 +74,7 @@ - t->thread = spawn_thread( (int32 (*)( void * )) ThreadFunc, - name, priority, t ); - resume_thread( t->thread ); --#elif defined( HB_MACOSX ) || defined( HB_LINUX ) -+#elif defined( HB_MACOSX ) || defined( HB_LINUX ) || defined( HB_FREEBSD ) - pthread_create( &t->thread, NULL, - (void * (*)( void * )) ThreadFunc, t ); - #elif defined( HB_CYGWIN ) -@@ -96,7 +96,7 @@ - #if defined( HB_BEOS ) - long exitValue; - wait_for_thread( t->thread, &exitValue ); --#elif defined( HB_MACOSX ) || defined( HB_LINUX ) -+#elif defined( HB_MACOSX ) || defined( HB_LINUX ) || defined( HB_FREEBSD ) - pthread_join( t->thread, NULL ); - #elif defined( HB_CYGWIN ) - WaitForSingleObject( t->thread, INFINITE ); -@@ -126,7 +126,7 @@ - - #if defined( HB_BEOS ) - l->sem = create_sem( 1, "sem" ); --#elif defined( HB_MACOSX ) || defined( HB_LINUX ) -+#elif defined( HB_MACOSX ) || defined( HB_LINUX ) || defined( HB_FREEBSD ) - pthread_mutex_init( &l->mutex, NULL ); - #elif defined( HB_CYGWIN ) - l->mutex = CreateMutex( 0, FALSE, 0 ); -@@ -141,7 +141,7 @@ - - #if defined( HB_BEOS ) - delete_sem( l->sem ); --#elif defined( HB_MACOSX ) || defined( HB_LINUX ) -+#elif defined( HB_MACOSX ) || defined( HB_LINUX ) || defined( HB_FREEBSD ) - pthread_mutex_destroy( &l->mutex ); - #elif defined( HB_CYGWIN ) - CloseHandle( l->mutex ); -@@ -161,7 +161,7 @@ - - #if defined( HB_BEOS ) - c->thread = -1; --#elif defined( HB_MACOSX ) || defined( HB_LINUX ) -+#elif defined( HB_MACOSX ) || defined( HB_LINUX ) || defined( HB_FREEBSD ) - pthread_cond_init( &c->cond, NULL ); - #elif defined( HB_CYGWIN ) - c->event = CreateEvent( NULL, FALSE, FALSE, NULL ); -@@ -175,7 +175,7 @@ - HBCond * c = *_c; - - #if defined( HB_BEOS ) --#elif defined( HB_MACOSX ) || defined( HB_LINUX ) -+#elif defined( HB_MACOSX ) || defined( HB_LINUX ) || defined( HB_FREEBSD ) - pthread_cond_destroy( &c->cond ); - #elif defined( HB_CYGWIN ) - CloseHandle( c->event ); diff --git a/multimedia/handbrake-gtk2/files/patch-core_Thread.h b/multimedia/handbrake-gtk2/files/patch-core_Thread.h deleted file mode 100644 index 59171d047127..000000000000 --- a/multimedia/handbrake-gtk2/files/patch-core_Thread.h +++ /dev/null @@ -1,75 +0,0 @@ -diff -urN core/Thread.h core/Thread.h ---- core/Thread.h Wed May 26 05:51:32 2004 -+++ core/Thread.h Fri Nov 19 08:08:07 2004 -@@ -10,7 +10,7 @@ - /* System headers */ - #if defined( HB_BEOS ) - # include <OS.h> --#elif defined( HB_MACOSX ) || defined( HB_LINUX ) -+#elif defined( HB_MACOSX ) || defined( HB_LINUX ) || defined( HB_FREEBSD ) - # include <pthread.h> - #elif defined( HB_CYGWIN ) - # include <windows.h> -@@ -25,7 +25,7 @@ - #elif defined( HB_MACOSX ) - # define HB_LOW_PRIORITY 0 - # define HB_NORMAL_PRIORITY 31 --#elif defined( HB_LINUX ) || defined( HB_CYGWIN ) -+#elif defined( HB_LINUX ) || defined( HB_CYGWIN ) || defined( HB_FREEBSD ) - /* Actually unused */ - # define HB_LOW_PRIORITY 0 - # define HB_NORMAL_PRIORITY 0 -@@ -57,7 +57,7 @@ - { - #if defined( HB_BEOS ) - sem_id sem; --#elif defined( HB_MACOSX ) || defined( HB_LINUX ) -+#elif defined( HB_MACOSX ) || defined( HB_LINUX ) || defined( HB_FREEBSD ) - pthread_mutex_t mutex; - #elif defined( HB_CYGWIN ) - HANDLE mutex; -@@ -68,7 +68,7 @@ - { - #if defined( HB_BEOS ) - acquire_sem( l->sem ); --#elif defined( HB_MACOSX ) || defined( HB_LINUX ) -+#elif defined( HB_MACOSX ) || defined( HB_LINUX ) || defined( HB_FREEBSD ) - pthread_mutex_lock( &l->mutex ); - #elif defined( HB_CYGWIN ) - WaitForSingleObject( l->mutex, INFINITE ); -@@ -79,7 +79,7 @@ - { - #if defined( HB_BEOS ) - release_sem( l->sem ); --#elif defined( HB_MACOSX ) || defined( HB_LINUX ) -+#elif defined( HB_MACOSX ) || defined( HB_LINUX ) || defined( HB_FREEBSD ) - pthread_mutex_unlock( &l->mutex ); - #elif defined( HB_CYGWIN ) - ReleaseMutex( l->mutex ); -@@ -94,7 +94,7 @@ - { - #if defined( HB_BEOS ) - int thread; --#elif defined( HB_MACOSX ) || defined( HB_LINUX ) -+#elif defined( HB_MACOSX ) || defined( HB_LINUX ) || defined( HB_FREEBSD ) - pthread_cond_t cond; - #elif defined( HB_CYGWIN ) - HANDLE event; -@@ -110,7 +110,7 @@ - suspend_thread( c->thread ); - acquire_sem( lock->sem ); - c->thread = -1; --#elif defined( HB_MACOSX ) || defined( HB_LINUX ) -+#elif defined( HB_MACOSX ) || defined( HB_LINUX ) || defined( HB_FREEBSD ) - pthread_cond_wait( &c->cond, &lock->mutex ); - #elif defined( HB_CYGWIN ) - SignalObjectAndWait( lock->mutex, c->event, INFINITE, FALSE ); -@@ -134,7 +134,7 @@ - release_sem() and suspend_thread() lines, wait a bit */ - snooze( 5000 ); - } --#elif defined( HB_MACOSX ) || defined( HB_LINUX ) -+#elif defined( HB_MACOSX ) || defined( HB_LINUX ) || defined( HB_FREEBSD ) - pthread_cond_signal( &c->cond ); - #elif defined( HB_CYGWIN ) - PulseEvent( c->event ); diff --git a/multimedia/handbrake-gtk2/files/patch-core_Utils.c b/multimedia/handbrake-gtk2/files/patch-core_Utils.c deleted file mode 100644 index 17600fd81cc9..000000000000 --- a/multimedia/handbrake-gtk2/files/patch-core_Utils.c +++ /dev/null @@ -1,12 +0,0 @@ -diff -urN core/Utils.c core/Utils.c ---- core/Utils.c Wed May 26 05:51:32 2004 -+++ core/Utils.c Fri Nov 19 08:08:07 2004 -@@ -38,7 +38,7 @@ - { - #if defined( HB_BEOS ) - snooze( time ); --#elif defined( HB_MACOSX ) || defined( HB_LINUX ) -+#elif defined( HB_MACOSX ) || defined( HB_LINUX ) || defined( HB_FREEBSD ) - usleep( time ); - #elif defined( HB_CYGWIN ) - Sleep( time / 1000 ); diff --git a/multimedia/handbrake-gtk2/files/patch-gtk2_main.c b/multimedia/handbrake-gtk2/files/patch-gtk2_main.c deleted file mode 100644 index e093de43990f..000000000000 --- a/multimedia/handbrake-gtk2/files/patch-gtk2_main.c +++ /dev/null @@ -1,10 +0,0 @@ ---- gtk2/main.c.orig Sat Nov 20 19:20:18 2004 -+++ gtk2/main.c Sat Nov 20 19:21:02 2004 -@@ -85,6 +85,7 @@ - - /* build dvd list */ - items = g_list_append (items, "" ); -+ items = g_list_append (items, "/dev/%%DVD_DEVICE%%" ); - items = g_list_append (items, "/dev/dvd" ); - gtk_combo_set_popdown_strings( GTK_COMBO(lookup_widget( hb_win_main, "combo1") ), items ); - diff --git a/multimedia/handbrake-gtk2/pkg-descr b/multimedia/handbrake-gtk2/pkg-descr deleted file mode 100644 index 10fc32f61e54..000000000000 --- a/multimedia/handbrake-gtk2/pkg-descr +++ /dev/null @@ -1,22 +0,0 @@ -HandBrake is a GPL'd multi-platform, multithreaded DVD to MPEG-4 -ripper and -converter. HandBrake was originally available on the BeOS, but now has -been -ported over to MacOS X, GNU/Linux and FreeBSD. - -Features: - * Can encode directly from DVDs (even encrypted ones) or from -VIDEO_TS folders - * Supports AC3, LPCM and MPEG audio tracks - * Outputs MP4, AVI or OGM files - * Outputs AAC, MP3 or Vorbis audio - * Supports 2-pass encoding - * Supports encoding of two audio tracks - * Includes a bitrate calculator - * Supports picture deinterlacing, cropping and scaling - -Known limitations: - * Does not handle DTS audio tracks - * Does not handle single VOB files or any other file format - -WWW: http://handbrake.m0k.org/ diff --git a/multimedia/kdemultimedia4/Makefile b/multimedia/kdemultimedia4/Makefile deleted file mode 100644 index 9db7050a1831..000000000000 --- a/multimedia/kdemultimedia4/Makefile +++ /dev/null @@ -1,70 +0,0 @@ -# -*-mode: makefile-*- -# New ports collection makefile for: KDE3 Multimedia -# Date created: Saturday 7 December 2002 -# Whom: Alan Eldridge <alane@freebsd.org> -# -# $FreeBSD$ -# - -PORTNAME= kdemultimedia -PORTVERSION= ${KDE_VERSION} -CATEGORIES= multimedia kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src -DIST_SUBDIR= KDE - -MAINTAINER= kde@FreeBSD.org -COMMENT= Multimedia utilities for the KDE integrated X11 desktop - -CONFLICTS= juk-1* - -LIB_DEPENDS+= audiofile:${PORTSDIR}/audio/libaudiofile \ - FLAC:${PORTSDIR}/audio/flac \ - cdda_paranoia:${PORTSDIR}/audio/cdparanoia \ - ogg:${PORTSDIR}/audio/libogg \ - tag:${PORTSDIR}/audio/taglib \ - theora:${PORTSDIR}/multimedia/libtheora \ - vorbis:${PORTSDIR}/audio/libvorbis - -USE_KDELIBS_VER=3 -PREFIX= ${KDE_PREFIX} - -USE_BZIP2= yes -USE_GMAKE= yes -USE_REINPLACE= yes -GNU_CONFIGURE= yes - -MAKE_ENV= ${CONFIGURE_ENV} - -CONFIGURE_ARGS+= --with-vorbis="${LOCALBASE}" --disable-xinetest -INSTALLS_SHLIB= yes -LDCONFIG_DIRS+= %%PREFIX%%/lib %%PREFIX%%/lib/kde3 -DO_NOT_COMPILE+=akode juk mpeglib mpeglib_artsplug xine_artsplugin - -OPTIONS= AKODE "Use akode for audio playback" on \ - MPEGLIB "Use mpeglib for audio playback" off \ - XINE "Enable support for video playback using libxine" off - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" -.include <bsd.port.pre.mk> - -.if !defined(WITHOUT_AKODE) -RUN_DEPENDS+= ${LOCALBASE}/lib/libakode.so:${PORTSDIR}/audio/akode -.endif - -.if defined(WITH_XINE) -RUN_DEPENDS+= ${LOCALBASE}/lib/libarts_xine.la:${PORTSDIR}/multimedia/xine_artsplugin -.endif - -.if defined(WITH_MPEGLIB) -RUN_DEPENDS+= mpeglibartsplay:${PORTSDIR}/audio/mpeglib_artsplug -.endif - -.if defined(DO_NOT_COMPILE) -CONFIGURE_ENV+= DO_NOT_COMPILE="${DO_NOT_COMPILE}" -.endif # defined(DO_NOT_COMPILE) - -post-install: - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/multimedia/kdemultimedia4/distinfo b/multimedia/kdemultimedia4/distinfo deleted file mode 100644 index fe3330875410..000000000000 --- a/multimedia/kdemultimedia4/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kdemultimedia-3.4.0.tar.bz2) = 4e42790bbea7c4ac0c436da3c7c664ac -SIZE (KDE/kdemultimedia-3.4.0.tar.bz2) = 5581865 diff --git a/multimedia/kdemultimedia4/files/patch-audiofile_artsplugin_audiofilearts.idl b/multimedia/kdemultimedia4/files/patch-audiofile_artsplugin_audiofilearts.idl deleted file mode 100644 index 32032ea676af..000000000000 --- a/multimedia/kdemultimedia4/files/patch-audiofile_artsplugin_audiofilearts.idl +++ /dev/null @@ -1,9 +0,0 @@ ---- audiofile_artsplugin/audiofilearts.idl.orig Sat Aug 21 15:03:32 2004 -+++ audiofile_artsplugin/audiofilearts.idl Sat Aug 21 15:04:33 2004 -@@ -1,5 +1,5 @@ --#include <kmedia2.idl> - #include <soundserver.idl> -+#include <kmedia2.idl> - - module Arts - { diff --git a/multimedia/kdemultimedia4/pkg-descr b/multimedia/kdemultimedia4/pkg-descr deleted file mode 100644 index 4ca62b278095..000000000000 --- a/multimedia/kdemultimedia4/pkg-descr +++ /dev/null @@ -1,2 +0,0 @@ -KDE provides an integrated X11 based environment, much like CDE. -This package provides audio and video utilities for KDE. diff --git a/multimedia/kdemultimedia4/pkg-message b/multimedia/kdemultimedia4/pkg-message deleted file mode 100644 index 46998b1bd3e9..000000000000 --- a/multimedia/kdemultimedia4/pkg-message +++ /dev/null @@ -1,27 +0,0 @@ - -====================================================================== -In order to run the kscd program properly, please run as root: - - chmod 666 <cdrom_device> - -to give permission to access the CD-ROM device. - -For example, if you have an IDE/ATAPI CD-ROM device: - - chmod 666 /dev/acd0c - -Additional instructions for using the audiocd:/ kioslave: - -If you have an SCSI CD-ROM or if you have an IDE/ATAPI drive AND -you have activated ATAPICAM in your kernel, change the permissions for -the CAM transport layer and CAM passthrough layer devices to 666, i.e.: - - chmod 666 /dev/xpt0 /dev/pass0 - -For ATAPI CD-ROMs and no ATAPICAM, the instructions for kscd apply. - -In order to make these changes permanent on FreeBSD 5.x, you have to -add them to /etc/devfs.conf. Further instructions and examples on how -to do this can be found there as well. - -====================================================================== diff --git a/multimedia/kdemultimedia4/pkg-plist b/multimedia/kdemultimedia4/pkg-plist deleted file mode 100644 index f440d79f5d88..000000000000 --- a/multimedia/kdemultimedia4/pkg-plist +++ /dev/null @@ -1,1119 +0,0 @@ -bin/artsbuilder -bin/artscontrol -bin/kaboodle -bin/kaudiocreator -bin/kmid -bin/kmix -bin/kmixctrl -bin/krec -bin/kscd -bin/midisend -bin/noatun -bin/workman2cddb.pl -etc/xdg/menus/applications-merged/kde-multimedia-music.menu -include/arts/artsbuilder.h -include/arts/artsbuilder.idl -include/arts/artsgui.h -include/arts/artsgui.idl -include/arts/artsmidi.h -include/arts/artsmidi.idl -include/arts/artsmodules.h -include/arts/artsmodules.idl -include/arts/artsmodulescommon.h -include/arts/artsmodulescommon.idl -include/arts/artsmoduleseffects.h -include/arts/artsmoduleseffects.idl -include/arts/artsmodulesmixers.h -include/arts/artsmodulesmixers.idl -include/arts/artsmodulessynth.h -include/arts/artsmodulessynth.idl -include/arts/kartswidget.h -include/arts/kframe_impl.h -include/arts/klayoutbox_impl.h -include/arts/kwidget_impl.h -include/arts/kwidgetrepo.h -include/audiocdencoder.h -include/cmodule.h -include/effectview.h -include/equalizerview.h -include/ksaver.h -include/libkcddb/cache.h -include/libkcddb/cddb.h -include/libkcddb/cdinfo.h -include/libkcddb/client.h -include/libkcddb/config.h -include/libkcddb/configbase.h -include/mimetypetree.h -include/noatun/app.h -include/noatun/controls.h -include/noatun/conversion.h -include/noatun/downloader.h -include/noatun/effects.h -include/noatun/engine.h -include/noatun/equalizer.h -include/noatun/noatunarts.h -include/noatun/player.h -include/noatun/playlist.h -include/noatun/playlistsaver.h -include/noatun/plugin.h -include/noatun/pluginloader.h -include/noatun/pref.h -include/noatun/scrollinglabel.h -include/noatun/stdaction.h -include/noatun/stereobuttonaction.h -include/noatun/tags.h -include/noatun/vequalizer.h -include/noatun/video.h -include/noatun/winskinvis.h -include/plugin_deps.h -lib/kde3/kcm_audiocd.la -lib/kde3/kcm_audiocd.so -lib/kde3/kcm_cddb.la -lib/kde3/kcm_cddb.so -lib/kde3/kcm_krec.la -lib/kde3/kcm_krec.so -lib/kde3/kcm_krec_files.la -lib/kde3/kcm_krec_files.so -lib/kde3/kfile_au.la -lib/kde3/kfile_au.so -lib/kde3/kfile_avi.la -lib/kde3/kfile_avi.so -lib/kde3/kfile_flac.la -lib/kde3/kfile_flac.so -lib/kde3/kfile_m3u.la -lib/kde3/kfile_m3u.so -lib/kde3/kfile_mp3.la -lib/kde3/kfile_mp3.so -lib/kde3/kfile_mpc.la -lib/kde3/kfile_mpc.so -lib/kde3/kfile_ogg.la -lib/kde3/kfile_ogg.so -lib/kde3/kfile_sid.la -lib/kde3/kfile_sid.so -lib/kde3/kfile_theora.la -lib/kde3/kfile_theora.so -lib/kde3/kfile_wav.la -lib/kde3/kfile_wav.so -lib/kde3/kio_audiocd.la -lib/kde3/kio_audiocd.so -lib/kde3/kmix.la -lib/kde3/kmix.so -lib/kde3/kmix_panelapplet.la -lib/kde3/kmix_panelapplet.so -lib/kde3/kmixctrl.la -lib/kde3/kmixctrl.so -lib/kde3/krec.la -lib/kde3/krec.so -lib/kde3/libaudiocd_encoder_flac.la -lib/kde3/libaudiocd_encoder_flac.so -lib/kde3/libaudiocd_encoder_lame.la -lib/kde3/libaudiocd_encoder_lame.so -lib/kde3/libaudiocd_encoder_vorbis.la -lib/kde3/libaudiocd_encoder_vorbis.so -lib/kde3/libaudiocd_encoder_wav.la -lib/kde3/libaudiocd_encoder_wav.so -lib/kde3/libkaboodlepart.la -lib/kde3/libkaboodlepart.so -lib/kde3/libkmidpart.la -lib/kde3/libkmidpart.so -lib/kde3/libkrecexport_ogg.la -lib/kde3/libkrecexport_ogg.so -lib/kde3/libkrecexport_wave.la -lib/kde3/libkrecexport_wave.so -lib/kde3/noatun.la -lib/kde3/noatun.so -lib/kde3/noatun_dcopiface.la -lib/kde3/noatun_dcopiface.so -lib/kde3/noatun_excellent.la -lib/kde3/noatun_excellent.so -lib/kde3/noatun_htmlexport.la -lib/kde3/noatun_htmlexport.so -lib/kde3/noatun_infrared.la -lib/kde3/noatun_infrared.so -lib/kde3/noatun_kaiman.la -lib/kde3/noatun_kaiman.so -lib/kde3/noatun_keyz.la -lib/kde3/noatun_keyz.so -lib/kde3/noatun_kjofol.la -lib/kde3/noatun_kjofol.so -lib/kde3/noatun_marquis.la -lib/kde3/noatun_marquis.so -lib/kde3/noatun_metatag.la -lib/kde3/noatun_metatag.so -lib/kde3/noatun_monoscope.la -lib/kde3/noatun_monoscope.so -lib/kde3/noatun_net.la -lib/kde3/noatun_net.so -lib/kde3/noatun_splitplaylist.la -lib/kde3/noatun_splitplaylist.so -lib/kde3/noatun_systray.la -lib/kde3/noatun_systray.so -lib/kde3/noatun_ui.la -lib/kde3/noatun_ui.so -lib/kde3/noatun_voiceprint.la -lib/kde3/noatun_voiceprint.so -lib/kde3/noatun_winskin.la -lib/kde3/noatun_winskin.so -lib/kde3/noatunsimple.la -lib/kde3/noatunsimple.so -lib/libartsbuilder.la -lib/libartsbuilder.so -lib/libartsbuilder.so.0 -lib/libartscontrolapplet.la -lib/libartscontrolapplet.so -lib/libartscontrolapplet.so.1 -lib/libartscontrolsupport.la -lib/libartscontrolsupport.so -lib/libartscontrolsupport.so.1 -lib/libartseffects.la -lib/libartseffects.so -lib/libartsgui.la -lib/libartsgui.so -lib/libartsgui.so.0 -lib/libartsgui_idl.la -lib/libartsgui_idl.so -lib/libartsgui_idl.so.0 -lib/libartsgui_kde.la -lib/libartsgui_kde.so -lib/libartsgui_kde.so.0 -lib/libartsmidi.la -lib/libartsmidi.so -lib/libartsmidi.so.0 -lib/libartsmidi_idl.la -lib/libartsmidi_idl.so -lib/libartsmidi_idl.so.0 -lib/libartsmodules.la -lib/libartsmodules.so -lib/libartsmodules.so.0 -lib/libartsmodulescommon.la -lib/libartsmodulescommon.so -lib/libartsmodulescommon.so.0 -lib/libartsmoduleseffects.la -lib/libartsmoduleseffects.so -lib/libartsmoduleseffects.so.0 -lib/libartsmodulesmixers.la -lib/libartsmodulesmixers.so -lib/libartsmodulesmixers.so.0 -lib/libartsmodulessynth.la -lib/libartsmodulessynth.so -lib/libartsmodulessynth.so.0 -lib/libaudiocdplugins.la -lib/libaudiocdplugins.so -lib/libaudiocdplugins.so.1 -lib/libaudiofilearts.la -lib/libaudiofilearts.so -lib/libkcddb.la -lib/libkcddb.so -lib/libkcddb.so.1 -lib/libkdeinit_kmix.la -lib/libkdeinit_kmix.so -lib/libkdeinit_kmixctrl.la -lib/libkdeinit_kmixctrl.so -lib/libkdeinit_krec.la -lib/libkdeinit_krec.so -lib/libkdeinit_noatun.la -lib/libkdeinit_noatun.so -lib/libkmidlib.la -lib/libkmidlib.so -lib/libkmidlib.so.0 -lib/libnoatun.la -lib/libnoatun.so -lib/libnoatun.so.3 -lib/libnoatunarts.la -lib/libnoatunarts.so -lib/libnoatuncontrols.la -lib/libnoatuncontrols.so -lib/libnoatuncontrols.so.3 -lib/libnoatuntags.la -lib/libnoatuntags.so -lib/libnoatuntags.so.3 -lib/libwinskinvis.la -lib/libwinskinvis.so -lib/mcop/Arts/ArtsBuilderLoader.mcopclass -lib/mcop/Arts/Button.mcopclass -lib/mcop/Arts/EffectRackGuiFactory.mcopclass -lib/mcop/Arts/Effect_WAVECAPTURE.mcopclass -lib/mcop/Arts/Environment/Container.mcopclass -lib/mcop/Arts/Environment/EffectRackItem.mcopclass -lib/mcop/Arts/Environment/InstrumentItem.mcopclass -lib/mcop/Arts/Environment/InstrumentItemGuiFactory.mcopclass -lib/mcop/Arts/Environment/MixerItem.mcopclass -lib/mcop/Arts/Fader.mcopclass -lib/mcop/Arts/FiveBandMonoComplexEQ.mcopclass -lib/mcop/Arts/FiveBandMonoComplexEQGuiFactory.mcopclass -lib/mcop/Arts/FreeverbGuiFactory.mcopclass -lib/mcop/Arts/GenericGuiFactory.mcopclass -lib/mcop/Arts/GraphLine.mcopclass -lib/mcop/Arts/HBox.mcopclass -lib/mcop/Arts/Label.mcopclass -lib/mcop/Arts/LayoutBox.mcopclass -lib/mcop/Arts/LevelMeter.mcopclass -lib/mcop/Arts/LineEdit.mcopclass -lib/mcop/Arts/LittleStereoMixerChannel.mcopclass -lib/mcop/Arts/LittleStereoMixerChannelGuiFactory.mcopclass -lib/mcop/Arts/LocalFactory.mcopclass -lib/mcop/Arts/MidiManager.mcopclass -lib/mcop/Arts/MixerGuiFactory.mcopclass -lib/mcop/Arts/MonoSimpleMixerChannel.mcopclass -lib/mcop/Arts/MonoSimpleMixerChannelGuiFactory.mcopclass -lib/mcop/Arts/MonoToStereo.mcopclass -lib/mcop/Arts/PopupBox.mcopclass -lib/mcop/Arts/Poti.mcopclass -lib/mcop/Arts/SimpleMixerChannel.mcopclass -lib/mcop/Arts/SimpleMixerChannelGuiFactory.mcopclass -lib/mcop/Arts/SpinBox.mcopclass -lib/mcop/Arts/StereoBalance.mcopclass -lib/mcop/Arts/StereoBalanceGuiFactory.mcopclass -lib/mcop/Arts/StereoCompressorGuiFactory.mcopclass -lib/mcop/Arts/StereoFirEqualizerGuiFactory.mcopclass -lib/mcop/Arts/StereoToMono.mcopclass -lib/mcop/Arts/StereoVolumeControlGui.mcopclass -lib/mcop/Arts/StereoVolumeControlGuiFactory.mcopclass -lib/mcop/Arts/StructureBuilder.mcopclass -lib/mcop/Arts/StructureDesc.mcopclass -lib/mcop/Arts/Synth_ATAN_SATURATE.mcopclass -lib/mcop/Arts/Synth_AUTOPANNER.mcopclass -lib/mcop/Arts/Synth_BRICKWALL_LIMITER.mcopclass -lib/mcop/Arts/Synth_CAPTURE_WAV.mcopclass -lib/mcop/Arts/Synth_CDELAY.mcopclass -lib/mcop/Arts/Synth_COMPRESSOR.mcopclass -lib/mcop/Arts/Synth_DATA.mcopclass -lib/mcop/Arts/Synth_DEBUG.mcopclass -lib/mcop/Arts/Synth_DELAY.mcopclass -lib/mcop/Arts/Synth_DIV.mcopclass -lib/mcop/Arts/Synth_ENVELOPE_ADSR.mcopclass -lib/mcop/Arts/Synth_FM_SOURCE.mcopclass -lib/mcop/Arts/Synth_FREEVERB.mcopclass -lib/mcop/Arts/Synth_FX_CFLANGER.mcopclass -lib/mcop/Arts/Synth_MIDI_DEBUG.mcopclass -lib/mcop/Arts/Synth_MIDI_TEST.mcopclass -lib/mcop/Arts/Synth_MOOG_VCF.mcopclass -lib/mcop/Arts/Synth_NIL.mcopclass -lib/mcop/Arts/Synth_NOISE.mcopclass -lib/mcop/Arts/Synth_OSC.mcopclass -lib/mcop/Arts/Synth_PITCH_SHIFT.mcopclass -lib/mcop/Arts/Synth_PITCH_SHIFT_FFT.mcopclass -lib/mcop/Arts/Synth_PLAY_PAT.mcopclass -lib/mcop/Arts/Synth_PSCALE.mcopclass -lib/mcop/Arts/Synth_RC.mcopclass -lib/mcop/Arts/Synth_SEQUENCE.mcopclass -lib/mcop/Arts/Synth_SEQUENCE_FREQ.mcopclass -lib/mcop/Arts/Synth_SHELVE_CUTOFF.mcopclass -lib/mcop/Arts/Synth_STD_EQUALIZER.mcopclass -lib/mcop/Arts/Synth_STEREO_COMPRESSOR.mcopclass -lib/mcop/Arts/Synth_STEREO_FIR_EQUALIZER.mcopclass -lib/mcop/Arts/Synth_STEREO_PITCH_SHIFT.mcopclass -lib/mcop/Arts/Synth_STEREO_PITCH_SHIFT_FFT.mcopclass -lib/mcop/Arts/Synth_TREMOLO.mcopclass -lib/mcop/Arts/Synth_VOICE_REMOVAL.mcopclass -lib/mcop/Arts/Synth_WAVE_PULSE.mcopclass -lib/mcop/Arts/Synth_WAVE_SOFTSAW.mcopclass -lib/mcop/Arts/Synth_WAVE_SQUARE.mcopclass -lib/mcop/Arts/Synth_WAVE_TRI.mcopclass -lib/mcop/Arts/Synth_XFADE.mcopclass -lib/mcop/Arts/VBox.mcopclass -lib/mcop/Arts/VoiceRemovalGuiFactory.mcopclass -lib/mcop/Arts/Widget.mcopclass -lib/mcop/Arts/audiofilePlayObject.mcopclass -lib/mcop/ExtraStereo.mcopclass -lib/mcop/ExtraStereoGuiFactory.mcopclass -lib/mcop/Noatun/Equalizer.mcopclass -lib/mcop/Noatun/EqualizerSSE.mcopclass -lib/mcop/Noatun/FFTScope.mcopclass -lib/mcop/Noatun/FFTScopeStereo.mcopclass -lib/mcop/Noatun/Listener.mcopclass -lib/mcop/Noatun/RawScope.mcopclass -lib/mcop/Noatun/RawScopeStereo.mcopclass -lib/mcop/Noatun/Session.mcopclass -lib/mcop/Noatun/StereoEffectStack.mcopclass -lib/mcop/Noatun/StereoVolumeControl.mcopclass -lib/mcop/Noatun/StereoVolumeControlSSE.mcopclass -lib/mcop/Noatun/WinSkinFFT.mcopclass -lib/mcop/RawWriter.mcopclass -lib/mcop/VoiceRemoval.mcopclass -lib/mcop/artsbuilder.mcopclass -lib/mcop/artsbuilder.mcoptype -lib/mcop/artseffects.mcopclass -lib/mcop/artseffects.mcoptype -lib/mcop/artsgui.mcopclass -lib/mcop/artsgui.mcoptype -lib/mcop/artsmidi.mcopclass -lib/mcop/artsmidi.mcoptype -lib/mcop/artsmodules.mcopclass -lib/mcop/artsmodules.mcoptype -lib/mcop/artsmodulescommon.mcopclass -lib/mcop/artsmodulescommon.mcoptype -lib/mcop/artsmoduleseffects.mcopclass -lib/mcop/artsmoduleseffects.mcoptype -lib/mcop/artsmodulesmixers.mcopclass -lib/mcop/artsmodulesmixers.mcoptype -lib/mcop/artsmodulessynth.mcopclass -lib/mcop/artsmodulessynth.mcoptype -lib/mcop/audiofilearts.mcopclass -lib/mcop/audiofilearts.mcoptype -lib/mcop/noatunarts.mcopclass -lib/mcop/noatunarts.mcoptype -lib/mcop/winskinvis.mcopclass -lib/mcop/winskinvis.mcoptype -share/applications/kde/artsbuilder.desktop -share/applications/kde/artscontrol.desktop -share/applications/kde/audiocd.desktop -share/applications/kde/kaboodle.desktop -share/applications/kde/kaudiocreator.desktop -share/applications/kde/kmid.desktop -share/applications/kde/kmix.desktop -share/applications/kde/krec.desktop -share/applications/kde/kscd.desktop -share/applications/kde/libkcddb.desktop -share/applications/kde/noatun.desktop -share/apps/artsbuilder/artsbuilderui.rc -share/apps/artsbuilder/examples/README -share/apps/artsbuilder/examples/example_adsr.arts -share/apps/artsbuilder/examples/example_atan_saturate.arts -share/apps/artsbuilder/examples/example_autopanner.arts -share/apps/artsbuilder/examples/example_brickwall.arts -share/apps/artsbuilder/examples/example_bus.arts -share/apps/artsbuilder/examples/example_capture_wav.arts -share/apps/artsbuilder/examples/example_cdelay.arts -share/apps/artsbuilder/examples/example_cflanger.arts -share/apps/artsbuilder/examples/example_data.arts -share/apps/artsbuilder/examples/example_delay.arts -share/apps/artsbuilder/examples/example_dtmf1.arts -share/apps/artsbuilder/examples/example_equalizer.arts -share/apps/artsbuilder/examples/example_fm.arts -share/apps/artsbuilder/examples/example_freeverb.arts -share/apps/artsbuilder/examples/example_moog.arts -share/apps/artsbuilder/examples/example_multi_add.arts -share/apps/artsbuilder/examples/example_noise.arts -share/apps/artsbuilder/examples/example_pitchshift.arts -share/apps/artsbuilder/examples/example_play_wave.arts -share/apps/artsbuilder/examples/example_pscale.arts -share/apps/artsbuilder/examples/example_pulse.arts -share/apps/artsbuilder/examples/example_rc.arts -share/apps/artsbuilder/examples/example_record.arts -share/apps/artsbuilder/examples/example_sequence.arts -share/apps/artsbuilder/examples/example_shelve_cutoff.arts -share/apps/artsbuilder/examples/example_sine.arts -share/apps/artsbuilder/examples/example_softsaw.arts -share/apps/artsbuilder/examples/example_square.arts -share/apps/artsbuilder/examples/example_stereobeep.arts -share/apps/artsbuilder/examples/example_tremolo.arts -share/apps/artsbuilder/examples/example_tri.arts -share/apps/artsbuilder/examples/example_xfade.arts -share/apps/artsbuilder/examples/instrument_arts_all.arts-map -share/apps/artsbuilder/examples/instrument_chirpdrum.arts -share/apps/artsbuilder/examples/instrument_deepdrum.arts -share/apps/artsbuilder/examples/instrument_full_square.arts -share/apps/artsbuilder/examples/instrument_hihat.arts -share/apps/artsbuilder/examples/instrument_neworgan.arts -share/apps/artsbuilder/examples/instrument_nokind.arts -share/apps/artsbuilder/examples/instrument_organ2.arts -share/apps/artsbuilder/examples/instrument_simple_sin.arts -share/apps/artsbuilder/examples/instrument_simple_square.arts -share/apps/artsbuilder/examples/instrument_simple_tri.arts -share/apps/artsbuilder/examples/instrument_slide.arts -share/apps/artsbuilder/examples/instrument_slide1.arts -share/apps/artsbuilder/examples/instrument_square.arts -share/apps/artsbuilder/examples/instrument_tri.arts -share/apps/artsbuilder/examples/template_Empty_Structure.arts -share/apps/artsbuilder/examples/template_Instrument.arts -share/apps/artsbuilder/examples/todo/effect_delay.arts -share/apps/artsbuilder/examples/todo/effect_delay_alone.arts -share/apps/artsbuilder/examples/todo/effect_flanger_alone.arts -share/apps/artsbuilder/examples/todo/instrument_flexible_slide.arts -share/apps/artsbuilder/examples/todo/instrument_flexible_slide_GUI.arts -share/apps/artsbuilder/examples/todo/instrument_fm_horn.arts -share/apps/artsbuilder/examples/todo/instrument_moog_vcf_tune.arts -share/apps/artsbuilder/examples/todo/instrument_moog_vcf_tune_GUI.arts -share/apps/artsbuilder/examples/todo/mixer_element_eq.arts -share/apps/artsbuilder/examples/todo/mixer_element_eqfx.arts -share/apps/artsbuilder/examples/todo/mixer_element_simple.arts -share/apps/artsbuilder/examples/todo/template_Instrument_GUI.arts -share/apps/artsbuilder/examples/todo/template_Mixer_Element.arts -share/apps/artsbuilder/pics/Synth_ADD.xpm -share/apps/artsbuilder/pics/Synth_AMAN_PLAY.xpm -share/apps/artsbuilder/pics/Synth_ATAN_SATURATE.xpm -share/apps/artsbuilder/pics/Synth_BUS_DOWNLINK.xpm -share/apps/artsbuilder/pics/Synth_BUS_UPLINK.xpm -share/apps/artsbuilder/pics/Synth_DEBUG.xpm -share/apps/artsbuilder/pics/Synth_DIV.xpm -share/apps/artsbuilder/pics/Synth_ENVELOPE_ADSR.xpm -share/apps/artsbuilder/pics/Synth_FILEPLAY.xpm -share/apps/artsbuilder/pics/Synth_MIDI_DEBUG.xpm -share/apps/artsbuilder/pics/Synth_MOOG_VCF.xpm -share/apps/artsbuilder/pics/Synth_MUL.xpm -share/apps/artsbuilder/pics/Synth_MULTI_ADD.xpm -share/apps/artsbuilder/pics/Synth_PLAY.xpm -share/apps/artsbuilder/pics/Synth_PLAY_WAV.xpm -share/apps/artsbuilder/pics/Synth_PSCALE.xpm -share/apps/artsbuilder/pics/Synth_RC.xpm -share/apps/artsbuilder/pics/Synth_SEQUENCE.xpm -share/apps/artsbuilder/pics/Synth_SEQUENCE_FREQ.png -share/apps/artsbuilder/pics/Synth_SHELVE_CUTOFF.xpm -share/apps/artsbuilder/pics/Synth_WAVE_SAW.xpm -share/apps/artsbuilder/pics/Synth_WAVE_SIN.xpm -share/apps/artsbuilder/pics/Synth_WAVE_SQUARE.xpm -share/apps/artsbuilder/pics/Synth_WAVE_TRI.xpm -share/apps/artsbuilder/pics/Synth_XFADE.xpm -share/apps/artscontrol/artscontrol.rc -share/apps/artscontrol/artsmidimanagerview.rc -share/apps/kaboodle/icons/crystalsvg/16x16/actions/kaboodleloop.png -share/apps/kaboodle/icons/crystalsvg/22x22/actions/kaboodleloop.png -share/apps/kaboodle/kaboodlepartui.rc -share/apps/kaboodle/kaboodleui.rc -share/apps/kappfinder/apps/Multimedia/ams.desktop -share/apps/kappfinder/apps/Multimedia/amsynth.desktop -share/apps/kappfinder/apps/Multimedia/ardour.desktop -share/apps/kappfinder/apps/Multimedia/djplay.desktop -share/apps/kappfinder/apps/Multimedia/ecamegapedal.desktop -share/apps/kappfinder/apps/Multimedia/freebirth.desktop -share/apps/kappfinder/apps/Multimedia/freqtweak.desktop -share/apps/kappfinder/apps/Multimedia/galan.desktop -share/apps/kappfinder/apps/Multimedia/hydrogen.desktop -share/apps/kappfinder/apps/Multimedia/jack-rack.desktop -share/apps/kappfinder/apps/Multimedia/jamin.desktop -share/apps/kappfinder/apps/Multimedia/meterbridge.desktop -share/apps/kappfinder/apps/Multimedia/mixxx.desktop -share/apps/kappfinder/apps/Multimedia/muse.desktop -share/apps/kappfinder/apps/Multimedia/qjackctl.desktop -share/apps/kappfinder/apps/Multimedia/qsynth.desktop -share/apps/kappfinder/apps/Multimedia/vkeybd.desktop -share/apps/kappfinder/apps/Multimedia/zynaddsubfx.desktop -share/apps/kaudiocreator/eventsrc -share/apps/kaudiocreator/kaudiocreatorui.rc -share/apps/kaudiocreator/pics/check.png -share/apps/kconf_update/audiocd.upd -share/apps/kconf_update/kaudiocreator-libkcddb.upd -share/apps/kconf_update/kaudiocreator-meta.upd -share/apps/kconf_update/kcmcddb-emailsettings.upd -share/apps/kconf_update/noatun.upd -share/apps/kconf_update/noatun20update -share/apps/kconf_update/upgrade-kaudiocreator-metadata.sh -share/apps/kconf_update/upgrade-metadata.sh -share/apps/kicker/applets/artscontrolapplet.desktop -share/apps/kicker/applets/kmixapplet.desktop -share/apps/kmid/DiesIrae.kar -share/apps/kmid/Guantanamera.kar -share/apps/kmid/MariaDeLasMercedes.kar -share/apps/kmid/OFortuna.kar -share/apps/kmid/fm/drums.o3 -share/apps/kmid/fm/drums.sb -share/apps/kmid/fm/std.o3 -share/apps/kmid/fm/std.sb -share/apps/kmid/icons/button1.xpm -share/apps/kmid/icons/button2.xpm -share/apps/kmid/icons/crystalsvg/16x16/actions/piano.png -share/apps/kmid/icons/crystalsvg/16x16/actions/volume.png -share/apps/kmid/icons/crystalsvg/22x22/actions/piano.png -share/apps/kmid/icons/crystalsvg/22x22/actions/volume.png -share/apps/kmid/icons/crystalsvg/32x32/actions/piano.png -share/apps/kmid/icons/crystalsvg/32x32/actions/volume.png -share/apps/kmid/icons/keyboard.xpm -share/apps/kmid/kmid_partui.rc -share/apps/kmid/kmidui.rc -share/apps/kmid/maps/YamahaPSR500.map -share/apps/kmid/maps/YamahaPSS790.map -share/apps/kmid/maps/YamahaQY10.map -share/apps/kmid/maps/gm.map -share/apps/kmix/kmixui.rc -share/apps/kmix/pics/Listener.png -share/apps/kmix/pics/SpeakerFrontLeft.png -share/apps/kmix/pics/SpeakerFrontRight.png -share/apps/kmix/pics/SpeakerRearLeft.png -share/apps/kmix/pics/SpeakerRearRight.png -share/apps/kmix/pics/kmixdocked.png -share/apps/kmix/pics/kmixdocked_error.png -share/apps/kmix/pics/kmixdocked_mute.png -share/apps/kmix/pics/mix_ac97.png -share/apps/kmix/pics/mix_audio.png -share/apps/kmix/pics/mix_bass.png -share/apps/kmix/pics/mix_cd.png -share/apps/kmix/pics/mix_digital.png -share/apps/kmix/pics/mix_ext.png -share/apps/kmix/pics/mix_headphone.png -share/apps/kmix/pics/mix_microphone.png -share/apps/kmix/pics/mix_midi.png -share/apps/kmix/pics/mix_recmon.png -share/apps/kmix/pics/mix_record.png -share/apps/kmix/pics/mix_surround.png -share/apps/kmix/pics/mix_treble.png -share/apps/kmix/pics/mix_unknown.png -share/apps/kmix/pics/mix_video.png -share/apps/kmix/pics/mix_volume.png -share/apps/konqueror/servicemenus/audiocd_play.desktop -share/apps/krec/icons/crystalsvg/16x16/actions/krec_record.png -share/apps/krec/icons/crystalsvg/22x22/actions/krec_record.png -share/apps/krec/icons/crystalsvg/32x32/actions/krec_record.png -share/apps/krec/icons/crystalsvg/32x32/mimetypes/krec_fileempty.png -share/apps/krec/icons/crystalsvg/32x32/mimetypes/krec_fileplay.png -share/apps/krec/icons/crystalsvg/32x32/mimetypes/krec_filerec.png -share/apps/krec/krecui.rc -share/apps/krec/tips -share/apps/kscd/icons/crystalsvg/22x22/actions/cdsmall.png -share/apps/noatun/dcopiface.plugin -share/apps/noatun/eq.preset/preset.dance -share/apps/noatun/eq.preset/preset.jazz -share/apps/noatun/eq.preset/preset.metal -share/apps/noatun/eq.preset/preset.trance -share/apps/noatun/eq.preset/preset.zero -share/apps/noatun/excellent.plugin -share/apps/noatun/excellentui.rc -share/apps/noatun/htmlexport.plugin -share/apps/noatun/icons/crystalsvg/128x128/actions/equalizer.png -share/apps/noatun/icons/crystalsvg/128x128/actions/playlist.png -share/apps/noatun/icons/crystalsvg/16x16/actions/effect.png -share/apps/noatun/icons/crystalsvg/16x16/actions/equalizer.png -share/apps/noatun/icons/crystalsvg/16x16/actions/noatunback.png -share/apps/noatun/icons/crystalsvg/16x16/actions/noatunforward.png -share/apps/noatun/icons/crystalsvg/16x16/actions/noatunpause.png -share/apps/noatun/icons/crystalsvg/16x16/actions/noatunplay.png -share/apps/noatun/icons/crystalsvg/16x16/actions/noatunplaylist.png -share/apps/noatun/icons/crystalsvg/16x16/actions/noatunstop.png -share/apps/noatun/icons/crystalsvg/16x16/actions/playlist.png -share/apps/noatun/icons/crystalsvg/22x22/actions/equalizer.png -share/apps/noatun/icons/crystalsvg/22x22/actions/noatunback.png -share/apps/noatun/icons/crystalsvg/22x22/actions/noatunfback.png -share/apps/noatun/icons/crystalsvg/22x22/actions/noatunfforward.png -share/apps/noatun/icons/crystalsvg/22x22/actions/noatunforward.png -share/apps/noatun/icons/crystalsvg/22x22/actions/noatunloopnone.png -share/apps/noatun/icons/crystalsvg/22x22/actions/noatunloopplaylist.png -share/apps/noatun/icons/crystalsvg/22x22/actions/noatunlooprandom.png -share/apps/noatun/icons/crystalsvg/22x22/actions/noatunloopsong.png -share/apps/noatun/icons/crystalsvg/22x22/actions/noatunpause.png -share/apps/noatun/icons/crystalsvg/22x22/actions/noatunplay.png -share/apps/noatun/icons/crystalsvg/22x22/actions/noatunplaylist.png -share/apps/noatun/icons/crystalsvg/22x22/actions/noatunstop.png -share/apps/noatun/icons/crystalsvg/22x22/actions/noatuntiny.png -share/apps/noatun/icons/crystalsvg/22x22/actions/playlist.png -share/apps/noatun/icons/crystalsvg/32x32/actions/effect.png -share/apps/noatun/icons/crystalsvg/32x32/actions/equalizer.png -share/apps/noatun/icons/crystalsvg/32x32/actions/playlist.png -share/apps/noatun/icons/crystalsvg/48x48/actions/effect.png -share/apps/noatun/icons/crystalsvg/48x48/actions/equalizer.png -share/apps/noatun/icons/crystalsvg/48x48/actions/playlist.png -share/apps/noatun/icons/crystalsvg/64x64/actions/equalizer.png -share/apps/noatun/icons/crystalsvg/64x64/actions/playlist.png -share/apps/noatun/infrared.plugin -share/apps/noatun/kaiman.plugin -share/apps/noatun/kaimanui.rc -share/apps/noatun/keyz.plugin -share/apps/noatun/kjofolui.plugin -share/apps/noatun/magictable -share/apps/noatun/marquis.plugin -share/apps/noatun/metatag.plugin -share/apps/noatun/monoscope.plugin -share/apps/noatun/net.plugin -share/apps/noatun/noatunui.plugin -share/apps/noatun/simple.plugin -share/apps/noatun/simpleui.rc -share/apps/noatun/skins/kaiman/car-preset/btn_exit.png -share/apps/noatun/skins/kaiman/car-preset/btn_iconify.png -share/apps/noatun/skins/kaiman/car-preset/btn_list.png -share/apps/noatun/skins/kaiman/car-preset/btn_next.png -share/apps/noatun/skins/kaiman/car-preset/btn_p1.png -share/apps/noatun/skins/kaiman/car-preset/btn_p2.png -share/apps/noatun/skins/kaiman/car-preset/btn_p3.png -share/apps/noatun/skins/kaiman/car-preset/btn_p4.png -share/apps/noatun/skins/kaiman/car-preset/btn_p5.png -share/apps/noatun/skins/kaiman/car-preset/btn_p6.png -share/apps/noatun/skins/kaiman/car-preset/btn_play.png -share/apps/noatun/skins/kaiman/car-preset/btn_prev.png -share/apps/noatun/skins/kaiman/car-preset/btn_sml.png -share/apps/noatun/skins/kaiman/car-preset/btn_stop.png -share/apps/noatun/skins/kaiman/car-preset/btn_voldn.png -share/apps/noatun/skins/kaiman/car-preset/btn_volup.png -share/apps/noatun/skins/kaiman/car-preset/digbig.png -share/apps/noatun/skins/kaiman/car-preset/digmed.png -share/apps/noatun/skins/kaiman/car-preset/letters.png -share/apps/noatun/skins/kaiman/car-preset/main.png -share/apps/noatun/skins/kaiman/car-preset/monoster.png -share/apps/noatun/skins/kaiman/car-preset/posbar.png -share/apps/noatun/skins/kaiman/car-preset/random.png -share/apps/noatun/skins/kaiman/car-preset/repeat.png -share/apps/noatun/skins/kaiman/car-preset/skindata -share/apps/noatun/skins/kaiman/car-preset/status.png -share/apps/noatun/skins/kaiman/car-preset/volume.png -share/apps/noatun/skins/kaiman/circle/back.png -share/apps/noatun/skins/kaiman/circle/back_mask.png -share/apps/noatun/skins/kaiman/circle/back_sm.png -share/apps/noatun/skins/kaiman/circle/back_sm_mask.png -share/apps/noatun/skins/kaiman/circle/bar_pos.png -share/apps/noatun/skins/kaiman/circle/bar_vol.png -share/apps/noatun/skins/kaiman/circle/btn_exit.png -share/apps/noatun/skins/kaiman/circle/btn_iconify.png -share/apps/noatun/skins/kaiman/circle/btn_list.png -share/apps/noatun/skins/kaiman/circle/btn_mode.png -share/apps/noatun/skins/kaiman/circle/btn_next.png -share/apps/noatun/skins/kaiman/circle/btn_play.png -share/apps/noatun/skins/kaiman/circle/btn_pref.png -share/apps/noatun/skins/kaiman/circle/btn_prev.png -share/apps/noatun/skins/kaiman/circle/btn_repeat.png -share/apps/noatun/skins/kaiman/circle/btn_shuffle.png -share/apps/noatun/skins/kaiman/circle/btn_sm_exit.png -share/apps/noatun/skins/kaiman/circle/btn_sm_iconify.png -share/apps/noatun/skins/kaiman/circle/btn_sm_mode.png -share/apps/noatun/skins/kaiman/circle/btn_sm_next.png -share/apps/noatun/skins/kaiman/circle/btn_sm_play.png -share/apps/noatun/skins/kaiman/circle/btn_sm_prev.png -share/apps/noatun/skins/kaiman/circle/btn_sm_stop.png -share/apps/noatun/skins/kaiman/circle/btn_stop.png -share/apps/noatun/skins/kaiman/circle/dig.png -share/apps/noatun/skins/kaiman/circle/digsml.png -share/apps/noatun/skins/kaiman/circle/letters.png -share/apps/noatun/skins/kaiman/circle/skindata -share/apps/noatun/skins/kaiman/circle/status.png -share/apps/noatun/skins/kaiman/k9/README -share/apps/noatun/skins/kaiman/k9/conf.jpg -share/apps/noatun/skins/kaiman/k9/conf.png -share/apps/noatun/skins/kaiman/k9/eject.jpg -share/apps/noatun/skins/kaiman/k9/icon.jpg -share/apps/noatun/skins/kaiman/k9/icon.png -share/apps/noatun/skins/kaiman/k9/kill.jpg -share/apps/noatun/skins/kaiman/k9/kill.png -share/apps/noatun/skins/kaiman/k9/knine-nfont.jpg -share/apps/noatun/skins/kaiman/k9/knine-nfont.png -share/apps/noatun/skins/kaiman/k9/knine-nfont2.jpg -share/apps/noatun/skins/kaiman/k9/knine-nfont2.png -share/apps/noatun/skins/kaiman/k9/knine-normal2.jpg -share/apps/noatun/skins/kaiman/k9/knine-normal2.png -share/apps/noatun/skins/kaiman/k9/knine-vfont.jpg -share/apps/noatun/skins/kaiman/k9/knine-vfont.png -share/apps/noatun/skins/kaiman/k9/long2.jpg -share/apps/noatun/skins/kaiman/k9/mask.png -share/apps/noatun/skins/kaiman/k9/newtext.jpg -share/apps/noatun/skins/kaiman/k9/newtext.png -share/apps/noatun/skins/kaiman/k9/next.jpg -share/apps/noatun/skins/kaiman/k9/pause.jpg -share/apps/noatun/skins/kaiman/k9/play.jpg -share/apps/noatun/skins/kaiman/k9/pos_item.jpg -share/apps/noatun/skins/kaiman/k9/repeat.jpg -share/apps/noatun/skins/kaiman/k9/repeat.png -share/apps/noatun/skins/kaiman/k9/reverse.jpg -share/apps/noatun/skins/kaiman/k9/shuffle.jpg -share/apps/noatun/skins/kaiman/k9/shuffle.png -share/apps/noatun/skins/kaiman/k9/skindata -share/apps/noatun/skins/kaiman/k9/small-k.jpg -share/apps/noatun/skins/kaiman/k9/small-k.png -share/apps/noatun/skins/kaiman/k9/square.jpg -share/apps/noatun/skins/kaiman/k9/square.png -share/apps/noatun/skins/kaiman/k9/status.jpg -share/apps/noatun/skins/kaiman/k9/status.png -share/apps/noatun/skins/kaiman/k9/stop.jpg -share/apps/noatun/skins/kaiman/k9/trans-pos.png -share/apps/noatun/skins/kaiman/k9/trans-slide.png -share/apps/noatun/skins/kjofol/HexoBronx/HexoBronx.rc -share/apps/noatun/skins/kjofol/HexoBronx/README.txt -share/apps/noatun/skins/kjofol/HexoBronx/active.png -share/apps/noatun/skins/kjofol/HexoBronx/eckig_font.png -share/apps/noatun/skins/kjofol/HexoBronx/font.png -share/apps/noatun/skins/kjofol/HexoBronx/inactive.png -share/apps/noatun/skins/kjofol/HexoBronx/mask.png -share/apps/noatun/skins/kjofol/HexoBronx/pitch.png -share/apps/noatun/skins/kjofol/HexoBronx/splash.png -share/apps/noatun/skins/kjofol/HexoBronx/time_font.png -share/apps/noatun/skins/kjofol/HexoBronx/volume.png -share/apps/noatun/skins/kjofol/HexoBronx/volume_pitch_font.png -share/apps/noatun/skins/kjofol/kjofol/kjofol.dck -share/apps/noatun/skins/kjofol/kjofol/kjofol.pl -share/apps/noatun/skins/kjofol/kjofol/kjofol.rc -share/apps/noatun/skins/kjofol/kjofol/kjofol.wsh -share/apps/noatun/skins/kjofol/kjofol/sg.png -share/apps/noatun/skins/kjofol/kjofol/sg_num.png -share/apps/noatun/skins/kjofol/kjofol/sg_seek.bmp -share/apps/noatun/skins/kjofol/kjofol/sg_seek.png -share/apps/noatun/skins/kjofol/kjofol/sg_text.png -share/apps/noatun/skins/kjofol/kjofol/sgdock.png -share/apps/noatun/skins/kjofol/kjofol/sgdock2.png -share/apps/noatun/skins/kjofol/kjofol/sgdocksk.png -share/apps/noatun/skins/kjofol/kjofol/sgdockvp.png -share/apps/noatun/skins/kjofol/kjofol/sgeq.png -share/apps/noatun/skins/kjofol/kjofol/sgpitch.png -share/apps/noatun/skins/kjofol/kjofol/sgpitchp.png -share/apps/noatun/skins/kjofol/kjofol/sgplist.png -share/apps/noatun/skins/kjofol/kjofol/sgplist2.png -share/apps/noatun/skins/kjofol/kjofol/sgpres1.png -share/apps/noatun/skins/kjofol/kjofol/sgpres2.png -share/apps/noatun/skins/kjofol/kjofol/sgpres3.png -share/apps/noatun/skins/kjofol/kjofol/sgvol.png -share/apps/noatun/skins/kjofol/kjofol/sgvolnum.png -share/apps/noatun/skins/kjofol/kjofol/sgvolpos.png -share/apps/noatun/skins/kjofol/kjofol/sgwshad.png -share/apps/noatun/skins/kjofol/kjofol/sgwshad2.png -share/apps/noatun/skins/kjofol/kjofol/sgwshdsk.png -share/apps/noatun/skins/kjofol/kjofol/sgwshvol.png -share/apps/noatun/skins/kjofol/kjofol/sgwshvp.png -share/apps/noatun/skins/kjofol/phong/p_eq.png -share/apps/noatun/skins/kjofol/phong/p_main.png -share/apps/noatun/skins/kjofol/phong/p_mainback.png -share/apps/noatun/skins/kjofol/phong/p_numbers.png -share/apps/noatun/skins/kjofol/phong/p_playback.png -share/apps/noatun/skins/kjofol/phong/p_playlist.png -share/apps/noatun/skins/kjofol/phong/p_propos.png -share/apps/noatun/skins/kjofol/phong/p_text.png -share/apps/noatun/skins/kjofol/phong/p_volbar.png -share/apps/noatun/skins/kjofol/phong/p_volpos.png -share/apps/noatun/skins/kjofol/phong/phong.dck -share/apps/noatun/skins/kjofol/phong/phong.rc -share/apps/noatun/skins/kjofol/phong/phong.wsh -share/apps/noatun/skins/kjofol/phong/phong_readme.txt -share/apps/noatun/skins/kjofol/vibrocentric/i_base.png -share/apps/noatun/skins/kjofol/vibrocentric/i_base2.png -share/apps/noatun/skins/kjofol/vibrocentric/i_eq.png -share/apps/noatun/skins/kjofol/vibrocentric/i_font.png -share/apps/noatun/skins/kjofol/vibrocentric/i_pl.png -share/apps/noatun/skins/kjofol/vibrocentric/i_pl2.png -share/apps/noatun/skins/kjofol/vibrocentric/i_pro.png -share/apps/noatun/skins/kjofol/vibrocentric/i_text.png -share/apps/noatun/skins/kjofol/vibrocentric/i_vol.png -share/apps/noatun/skins/kjofol/vibrocentric/i_volpos.png -share/apps/noatun/skins/kjofol/vibrocentric/vibrocentric.dck -share/apps/noatun/skins/kjofol/vibrocentric/vibrocentric.rc -share/apps/noatun/skins/kjofol/vibrocentric/vibrocentric.wsh -share/apps/noatun/skins/kjofol/vibrocentric/vibrocentric_readme.txt -share/apps/noatun/skins/winamp/Winamp/BALANCE.BMP -share/apps/noatun/skins/winamp/Winamp/CBUTTONS.BMP -share/apps/noatun/skins/winamp/Winamp/FONT.BMP -share/apps/noatun/skins/winamp/Winamp/MAIN.BMP -share/apps/noatun/skins/winamp/Winamp/MONOSTER.BMP -share/apps/noatun/skins/winamp/Winamp/NUMS_EX.BMP -share/apps/noatun/skins/winamp/Winamp/PLAYPAUS.BMP -share/apps/noatun/skins/winamp/Winamp/POSBAR.BMP -share/apps/noatun/skins/winamp/Winamp/SHUFREP.BMP -share/apps/noatun/skins/winamp/Winamp/SPEC.BMP -share/apps/noatun/skins/winamp/Winamp/TEXT.BMP -share/apps/noatun/skins/winamp/Winamp/TITLEBAR.BMP -share/apps/noatun/skins/winamp/Winamp/VISCOLOR.TXT -share/apps/noatun/skins/winamp/Winamp/VOLUME.BMP -share/apps/noatun/splitplaylist.plugin -share/apps/noatun/splui.rc -share/apps/noatun/systray.plugin -share/apps/noatun/systrayui.rc -share/apps/noatun/voiceprint.plugin -share/apps/noatun/winskin.plugin -share/apps/noatun/yhconfig.kcfg -share/apps/profiles/kscd.profile.xml -share/autostart/restore_kmix_volumes.desktop -share/config.kcfg/audiocd_lame_encoder.kcfg -share/config.kcfg/audiocd_vorbis_encoder.kcfg -share/config.kcfg/kaudiocreator.kcfg -share/config.kcfg/kaudiocreator_encoders.kcfg -share/config.kcfg/kscd.kcfg -share/config.kcfg/libkcddb.kcfg -share/desktop-directories/kde-multimedia-music.directory -share/doc/HTML/en/artsbuilder/apis.docbook -share/doc/HTML/en/artsbuilder/arts-structure.png -share/doc/HTML/en/artsbuilder/artsbuilder.docbook -share/doc/HTML/en/artsbuilder/common -share/doc/HTML/en/artsbuilder/detail.docbook -share/doc/HTML/en/artsbuilder/digitalaudio.docbook -share/doc/HTML/en/artsbuilder/faq.docbook -share/doc/HTML/en/artsbuilder/future.docbook -share/doc/HTML/en/artsbuilder/glossary.docbook -share/doc/HTML/en/artsbuilder/gui.docbook -share/doc/HTML/en/artsbuilder/helping.docbook -share/doc/HTML/en/artsbuilder/images/Doc_MODUL.png -share/doc/HTML/en/artsbuilder/images/Gui_AUDIO_MANAGER.png -share/doc/HTML/en/artsbuilder/images/Gui_INSTRUMENT_MAPPER.png -share/doc/HTML/en/artsbuilder/images/Gui_LABEL.png -share/doc/HTML/en/artsbuilder/images/Gui_MIXER.png -share/doc/HTML/en/artsbuilder/images/Gui_PANEL.png -share/doc/HTML/en/artsbuilder/images/Gui_POTI.png -share/doc/HTML/en/artsbuilder/images/Gui_SLIDER.png -share/doc/HTML/en/artsbuilder/images/Gui_SUBPANEL.png -share/doc/HTML/en/artsbuilder/images/Gui_WINDOW.png -share/doc/HTML/en/artsbuilder/images/Interface_MIDI_NOTE.png -share/doc/HTML/en/artsbuilder/images/Synth_ADD.png -share/doc/HTML/en/artsbuilder/images/Synth_ATAN_SATURATE.png -share/doc/HTML/en/artsbuilder/images/Synth_BUS_DOWNLINK.png -share/doc/HTML/en/artsbuilder/images/Synth_BUS_UPLINK.png -share/doc/HTML/en/artsbuilder/images/Synth_CDELAY.png -share/doc/HTML/en/artsbuilder/images/Synth_COMPRESSOR.png -share/doc/HTML/en/artsbuilder/images/Synth_DEBUG.png -share/doc/HTML/en/artsbuilder/images/Synth_DELAY.png -share/doc/HTML/en/artsbuilder/images/Synth_DIV.png -share/doc/HTML/en/artsbuilder/images/Synth_ENVELOPE_ADSR.png -share/doc/HTML/en/artsbuilder/images/Synth_FILEPLAY.png -share/doc/HTML/en/artsbuilder/images/Synth_FM_SOURCE.png -share/doc/HTML/en/artsbuilder/images/Synth_FREQUENCY.png -share/doc/HTML/en/artsbuilder/images/Synth_MIDI_DEBUG.png -share/doc/HTML/en/artsbuilder/images/Synth_MIDI_ROUTER.png -share/doc/HTML/en/artsbuilder/images/Synth_MUL.png -share/doc/HTML/en/artsbuilder/images/Synth_NIL.png -share/doc/HTML/en/artsbuilder/images/Synth_PLAY.png -share/doc/HTML/en/artsbuilder/images/Synth_PLAY_AKAI.png -share/doc/HTML/en/artsbuilder/images/Synth_PLAY_AKAIS.png -share/doc/HTML/en/artsbuilder/images/Synth_PLAY_WAV.png -share/doc/HTML/en/artsbuilder/images/Synth_PSCALE.png -share/doc/HTML/en/artsbuilder/images/Synth_RC.png -share/doc/HTML/en/artsbuilder/images/Synth_SEQUENCE.png -share/doc/HTML/en/artsbuilder/images/Synth_SEQUENCE_FREQ.png -share/doc/HTML/en/artsbuilder/images/Synth_SHELVE_CUTOFF.png -share/doc/HTML/en/artsbuilder/images/Synth_STD_EQUALIZER.png -share/doc/HTML/en/artsbuilder/images/Synth_STRUCT_KILL.png -share/doc/HTML/en/artsbuilder/images/Synth_WAVE_SIN.png -share/doc/HTML/en/artsbuilder/images/Synth_WAVE_SQUARE.png -share/doc/HTML/en/artsbuilder/images/Synth_WAVE_TRI.png -share/doc/HTML/en/artsbuilder/images/Synth_XFADE.png -share/doc/HTML/en/artsbuilder/images/schema1.png -share/doc/HTML/en/artsbuilder/images/schema2.png -share/doc/HTML/en/artsbuilder/images/schema3.png -share/doc/HTML/en/artsbuilder/images/schema4.png -share/doc/HTML/en/artsbuilder/index.cache.bz2 -share/doc/HTML/en/artsbuilder/index.docbook -share/doc/HTML/en/artsbuilder/mcop.docbook -share/doc/HTML/en/artsbuilder/midi.docbook -share/doc/HTML/en/artsbuilder/midiintro.docbook -share/doc/HTML/en/artsbuilder/modules.docbook -share/doc/HTML/en/artsbuilder/porting.docbook -share/doc/HTML/en/artsbuilder/references.docbook -share/doc/HTML/en/artsbuilder/tools.docbook -share/doc/HTML/en/juk/common -share/doc/HTML/en/juk/history-playlist.png -share/doc/HTML/en/juk/index.cache.bz2 -share/doc/HTML/en/juk/index.docbook -share/doc/HTML/en/juk/juk-adv-search.png -share/doc/HTML/en/juk/juk-file-renamer.png -share/doc/HTML/en/juk/juk-main.png -share/doc/HTML/en/juk/juk-tag-guesser.png -share/doc/HTML/en/juk/normal-playlist.png -share/doc/HTML/en/juk/search-playlist.png -share/doc/HTML/en/juk/toolbar.png -share/doc/HTML/en/kaboodle/common -share/doc/HTML/en/kaboodle/index.cache.bz2 -share/doc/HTML/en/kaboodle/index.docbook -share/doc/HTML/en/kcontrol/kmixcfg/common -share/doc/HTML/en/kcontrol/kmixcfg/index.cache.bz2 -share/doc/HTML/en/kcontrol/kmixcfg/index.docbook -share/doc/HTML/en/kio_audiocd/audiocd.docbook -share/doc/HTML/en/kmid/common -share/doc/HTML/en/kmid/index.cache.bz2 -share/doc/HTML/en/kmid/index.docbook -share/doc/HTML/en/kmix/common -share/doc/HTML/en/kmix/index.cache.bz2 -share/doc/HTML/en/kmix/index.docbook -share/doc/HTML/en/kmix/kmix-channel-playback.png -share/doc/HTML/en/kmix/kmix-channel-record.png -share/doc/HTML/en/kmix/kmix-window.png -share/doc/HTML/en/krec/common -share/doc/HTML/en/krec/index.cache.bz2 -share/doc/HTML/en/krec/index.docbook -share/doc/HTML/en/krec/krec-configuration.png -share/doc/HTML/en/krec/krec-hicolor.png -share/doc/HTML/en/krec/krec-keramik.png -share/doc/HTML/en/krec/krec-new_file_properties.png -share/doc/HTML/en/kscd/common -share/doc/HTML/en/kscd/index.cache.bz2 -share/doc/HTML/en/kscd/index.docbook -share/doc/HTML/en/kscd/kscd.png -share/doc/HTML/en/kscd/kscd11.png -share/doc/HTML/en/kscd/kscd12.png -share/doc/HTML/en/kscd/kscd13.png -share/doc/HTML/en/kscd/kscd14.png -share/doc/HTML/en/kscd/kscd16.png -share/doc/HTML/en/kscd/kscd18.png -share/doc/HTML/en/kscd/kscd19.png -share/doc/HTML/en/kscd/kscd2.png -share/doc/HTML/en/kscd/kscd3.png -share/doc/HTML/en/kscd/kscd5.png -share/doc/HTML/en/kscd/kscd6.png -share/doc/HTML/en/kscd/kscd9.png -share/doc/HTML/en/noatun/common -share/doc/HTML/en/noatun/index.cache.bz2 -share/doc/HTML/en/noatun/index.docbook -share/icons/crystalsvg/128x128/actions/artsaudiomanager.png -share/icons/crystalsvg/128x128/actions/artsenvironment.png -share/icons/crystalsvg/128x128/actions/artsfftscope.png -share/icons/crystalsvg/128x128/actions/artsmediatypes.png -share/icons/crystalsvg/128x128/actions/artsmidimanager.png -share/icons/crystalsvg/128x128/apps/artscontrol.png -share/icons/crystalsvg/128x128/apps/kaboodle.png -share/icons/crystalsvg/128x128/apps/kmix.png -share/icons/crystalsvg/128x128/apps/krec.png -share/icons/crystalsvg/128x128/apps/kscd.png -share/icons/crystalsvg/128x128/apps/noatun.png -share/icons/crystalsvg/16x16/actions/artsaudiomanager.png -share/icons/crystalsvg/16x16/actions/artsbuilderexecute.png -share/icons/crystalsvg/16x16/actions/artsenvironment.png -share/icons/crystalsvg/16x16/actions/artsfftscope.png -share/icons/crystalsvg/16x16/actions/artsmediatypes.png -share/icons/crystalsvg/16x16/actions/artsmidimanager.png -share/icons/crystalsvg/16x16/apps/artsbuilder.png -share/icons/crystalsvg/16x16/apps/artscontrol.png -share/icons/crystalsvg/16x16/apps/kaboodle.png -share/icons/crystalsvg/16x16/apps/kaudiocreator.png -share/icons/crystalsvg/16x16/apps/kmid.png -share/icons/crystalsvg/16x16/apps/kmix.png -share/icons/crystalsvg/16x16/apps/krec.png -share/icons/crystalsvg/16x16/apps/kscd.png -share/icons/crystalsvg/16x16/apps/noatun.png -share/icons/crystalsvg/22x22/actions/artsaudiomanager.png -share/icons/crystalsvg/22x22/actions/artsbuilderexecute.png -share/icons/crystalsvg/22x22/actions/artsenvironment.png -share/icons/crystalsvg/22x22/actions/artsfftscope.png -share/icons/crystalsvg/22x22/actions/artsmediatypes.png -share/icons/crystalsvg/22x22/actions/artsmidimanager.png -share/icons/crystalsvg/22x22/apps/artscontrol.png -share/icons/crystalsvg/22x22/apps/kaboodle.png -share/icons/crystalsvg/22x22/apps/krec.png -share/icons/crystalsvg/22x22/apps/noatun.png -share/icons/crystalsvg/32x32/actions/artsaudiomanager.png -share/icons/crystalsvg/32x32/actions/artsenvironment.png -share/icons/crystalsvg/32x32/actions/artsfftscope.png -share/icons/crystalsvg/32x32/actions/artsmediatypes.png -share/icons/crystalsvg/32x32/actions/artsmidimanager.png -share/icons/crystalsvg/32x32/apps/artscontrol.png -share/icons/crystalsvg/32x32/apps/kaboodle.png -share/icons/crystalsvg/32x32/apps/kaudiocreator.png -share/icons/crystalsvg/32x32/apps/kmid.png -share/icons/crystalsvg/32x32/apps/kmix.png -share/icons/crystalsvg/32x32/apps/krec.png -share/icons/crystalsvg/32x32/apps/kscd.png -share/icons/crystalsvg/32x32/apps/noatun.png -share/icons/crystalsvg/48x48/actions/artsaudiomanager.png -share/icons/crystalsvg/48x48/actions/artsenvironment.png -share/icons/crystalsvg/48x48/actions/artsfftscope.png -share/icons/crystalsvg/48x48/actions/artsmediatypes.png -share/icons/crystalsvg/48x48/actions/artsmidimanager.png -share/icons/crystalsvg/48x48/apps/artscontrol.png -share/icons/crystalsvg/48x48/apps/kaboodle.png -share/icons/crystalsvg/48x48/apps/kmid.png -share/icons/crystalsvg/48x48/apps/kmix.png -share/icons/crystalsvg/48x48/apps/krec.png -share/icons/crystalsvg/48x48/apps/kscd.png -share/icons/crystalsvg/48x48/apps/noatun.png -share/icons/crystalsvg/64x64/actions/artsaudiomanager.png -share/icons/crystalsvg/64x64/actions/artsenvironment.png -share/icons/crystalsvg/64x64/actions/artsfftscope.png -share/icons/crystalsvg/64x64/actions/artsmediatypes.png -share/icons/crystalsvg/64x64/actions/artsmidimanager.png -share/icons/crystalsvg/64x64/apps/artscontrol.png -share/icons/crystalsvg/64x64/apps/kaboodle.png -share/icons/crystalsvg/64x64/apps/kmix.png -share/icons/crystalsvg/64x64/apps/krec.png -share/icons/crystalsvg/64x64/apps/kscd.png -share/icons/crystalsvg/64x64/apps/noatun.png -share/icons/crystalsvg/scalable/actions/artsaudiomanager.svg -share/icons/crystalsvg/scalable/actions/artsenvironment.svg -share/icons/crystalsvg/scalable/actions/artsfftscope.svg -share/icons/crystalsvg/scalable/actions/artsmediatypes.svg -share/icons/crystalsvg/scalable/actions/artsmidimanager.svg -share/icons/crystalsvg/scalable/apps/artsbuilder.svgz -share/icons/crystalsvg/scalable/apps/artscontrol.svg -share/icons/locolor/16x16/apps/kaudiocreator.png -share/icons/locolor/32x32/apps/kaudiocreator.png -share/mimelnk/application/x-artsbuilder.desktop -share/mimelnk/audio/x-karaoke.desktop -share/mimelnk/interface/x-winamp-skin.desktop -share/mimelnk/text/xmcd.desktop -share/services/audiocd.protocol -share/services/kaboodle_component.desktop -share/services/kaboodleengine.desktop -share/services/kcm_krec.desktop -share/services/kcm_krec_files.desktop -share/services/kfile_au.desktop -share/services/kfile_avi.desktop -share/services/kfile_flac.desktop -share/services/kfile_m3u.desktop -share/services/kfile_mp3.desktop -share/services/kfile_mpc.desktop -share/services/kfile_ogg.desktop -share/services/kfile_sid.desktop -share/services/kfile_theora.desktop -share/services/kfile_wav.desktop -share/services/kmixctrl_restore.desktop -share/services/krec_exportogg.desktop -share/services/krec_exportwave.desktop -share/servicetypes/audiomidi.desktop -share/servicetypes/krec_exportitem.desktop -@dirrm share/mimelnk/interface -@dirrm share/doc/HTML/en/noatun -@dirrm share/doc/HTML/en/kscd -@dirrm share/doc/HTML/en/krec -@dirrm share/doc/HTML/en/kmix -@dirrm share/doc/HTML/en/kmid -@dirrm share/doc/HTML/en/kio_audiocd -@dirrm share/doc/HTML/en/kcontrol/kmixcfg -@dirrm share/doc/HTML/en/kaboodle -@dirrm share/doc/HTML/en/juk -@dirrm share/doc/HTML/en/artsbuilder/images -@dirrm share/doc/HTML/en/artsbuilder -@dirrm share/desktop-directories -@dirrm share/apps/profiles -@dirrm share/apps/noatun/skins/winamp/Winamp -@dirrm share/apps/noatun/skins/winamp -@dirrm share/apps/noatun/skins/kjofol/vibrocentric -@dirrm share/apps/noatun/skins/kjofol/phong -@dirrm share/apps/noatun/skins/kjofol/kjofol -@dirrm share/apps/noatun/skins/kjofol/HexoBronx -@dirrm share/apps/noatun/skins/kjofol -@dirrm share/apps/noatun/skins/kaiman/k9 -@dirrm share/apps/noatun/skins/kaiman/circle -@dirrm share/apps/noatun/skins/kaiman/car-preset -@dirrm share/apps/noatun/skins/kaiman -@dirrm share/apps/noatun/skins -@dirrm share/apps/noatun/icons/crystalsvg/64x64/actions -@dirrm share/apps/noatun/icons/crystalsvg/64x64 -@dirrm share/apps/noatun/icons/crystalsvg/48x48/actions -@dirrm share/apps/noatun/icons/crystalsvg/48x48 -@dirrm share/apps/noatun/icons/crystalsvg/32x32/actions -@dirrm share/apps/noatun/icons/crystalsvg/32x32 -@dirrm share/apps/noatun/icons/crystalsvg/22x22/actions -@dirrm share/apps/noatun/icons/crystalsvg/22x22 -@dirrm share/apps/noatun/icons/crystalsvg/16x16/actions -@dirrm share/apps/noatun/icons/crystalsvg/16x16 -@dirrm share/apps/noatun/icons/crystalsvg/128x128/actions -@dirrm share/apps/noatun/icons/crystalsvg/128x128 -@dirrm share/apps/noatun/icons/crystalsvg -@dirrm share/apps/noatun/icons -@dirrm share/apps/noatun/eq.preset -@dirrm share/apps/noatun -@dirrm share/apps/kscd/icons/crystalsvg/22x22/actions -@dirrm share/apps/kscd/icons/crystalsvg/22x22 -@dirrm share/apps/kscd/icons/crystalsvg -@dirrm share/apps/kscd/icons -@dirrm share/apps/kscd -@dirrm share/apps/krec/icons/crystalsvg/32x32/mimetypes -@dirrm share/apps/krec/icons/crystalsvg/32x32/actions -@dirrm share/apps/krec/icons/crystalsvg/32x32 -@dirrm share/apps/krec/icons/crystalsvg/22x22/actions -@dirrm share/apps/krec/icons/crystalsvg/22x22 -@dirrm share/apps/krec/icons/crystalsvg/16x16/actions -@dirrm share/apps/krec/icons/crystalsvg/16x16 -@dirrm share/apps/krec/icons/crystalsvg -@dirrm share/apps/krec/icons -@dirrm share/apps/krec -@dirrm share/apps/kmix/pics -@dirrm share/apps/kmix -@dirrm share/apps/kmid/maps -@dirrm share/apps/kmid/icons/crystalsvg/32x32/actions -@dirrm share/apps/kmid/icons/crystalsvg/32x32 -@dirrm share/apps/kmid/icons/crystalsvg/22x22/actions -@dirrm share/apps/kmid/icons/crystalsvg/22x22 -@dirrm share/apps/kmid/icons/crystalsvg/16x16/actions -@dirrm share/apps/kmid/icons/crystalsvg/16x16 -@dirrm share/apps/kmid/icons/crystalsvg -@dirrm share/apps/kmid/icons -@dirrm share/apps/kmid/fm -@dirrm share/apps/kmid -@dirrm share/apps/kaudiocreator/pics -@dirrm share/apps/kaudiocreator -@dirrm share/apps/kappfinder/apps/Multimedia -@dirrm share/apps/kappfinder/apps -@dirrm share/apps/kappfinder -@dirrm share/apps/kaboodle/icons/crystalsvg/22x22/actions -@dirrm share/apps/kaboodle/icons/crystalsvg/22x22 -@dirrm share/apps/kaboodle/icons/crystalsvg/16x16/actions -@dirrm share/apps/kaboodle/icons/crystalsvg/16x16 -@dirrm share/apps/kaboodle/icons/crystalsvg -@dirrm share/apps/kaboodle/icons -@dirrm share/apps/kaboodle -@dirrm share/apps/artscontrol -@dirrm share/apps/artsbuilder/pics -@dirrm share/apps/artsbuilder/examples/todo -@dirrm share/apps/artsbuilder/examples -@dirrm share/apps/artsbuilder -@dirrm lib/mcop/Noatun -@dirrm lib/mcop/Arts/Environment -@dirrm include/noatun -@dirrm include/libkcddb -@dirrm etc/xdg/menus/applications-merged diff --git a/multimedia/kmplayer-kde4/Makefile b/multimedia/kmplayer-kde4/Makefile deleted file mode 100644 index 72cea5bd177a..000000000000 --- a/multimedia/kmplayer-kde4/Makefile +++ /dev/null @@ -1,84 +0,0 @@ -# New ports collection makefile for: KMplayer -# Date created: Jan 31, 2003 -# Whom: will -# -# $FreeBSD$ -# - -PORTNAME= kmplayer -DISTVERSION= 0.8.4a -PORTEPOCH= 1 -CATEGORIES= multimedia audio kde -MASTER_SITES= http://www.xs4all.nl/%7Ejjvrieze/ -#DISTNAME= ${PORTNAME}-${PORTVERSION:C/\.r/-rc/} - -MAINTAINER= lioux@FreeBSD.org -COMMENT= KDE frontend to mplayer - -RUN_DEPENDS= mplayer:${PORTSDIR}/multimedia/mplayer - -USE_BZIP2= yes -USE_KDEBASE_VER=3 -USE_XLIB= yes -USE_GMAKE= yes -USE_REINPLACE= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS+=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} -CONFIGURE_TARGET= -CONFIGURE_ARGS+=--with-x=${X11BASE} --disable-debug - -OPTIONS= GSTREAMER "Enable support for video playback using gstreamer" off \ - XINE "Enable support for video playback using libxine" off - -WANT_GSTREAMER= yes - -### -## Lib Detection -### -# gstreamer -.if exists(${X11BASE}/lib/libgstplay-0.8.so) -WITH_GSTREAMER=yes -.endif -# xine -.if exists(${X11BASE}/lib/libxine.so) -WITH_XINE=yes -.endif - -post-patch: -# remove -pedantic where possible to fix build errors on -CURRENT -# remove optimizations - @${REINPLACE_CMD} -e \ - 's|-O2||; s|-pedantic ||' \ - ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} -# do not try to roll our own mimetypes - @${REINPLACE_CMD} -E -e \ - 's|^(SUBDIRS.*)mimetypes|\1|' \ - ${WRKSRC}/Makefile.in - -.include <bsd.port.pre.mk> - -### -## Support Activation -### -# gstreamer -.undef WITH_GSTREAMER -.if defined(WITH_GSTREAMER) -USE_GSTREAMER+= yes - -PLIST_FILES+= bin/kgstplayer -.else -CONFIGURE_ARGS+= --without-gstreamer -.endif -# xine -.if defined(WITH_XINE) -LIB_DEPENDS+= xine:${PORTSDIR}/multimedia/libxine - -PLIST_FILES+= bin/kxineplayer -.endif - -# GCC < 3.1 -.if ${OSVERSION} < 500035 -EXTRA_PATCHES+= ${FILESDIR}/extra-patch-src::kmplayerplaylist.cpp -.endif - -.include <bsd.port.post.mk> diff --git a/multimedia/kmplayer-kde4/distinfo b/multimedia/kmplayer-kde4/distinfo deleted file mode 100644 index 80522b7ea77a..000000000000 --- a/multimedia/kmplayer-kde4/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (kmplayer-0.8.4a.tar.bz2) = c197f4d782fadd5fa003aa367a6ee096 -SIZE (kmplayer-0.8.4a.tar.bz2) = 745183 diff --git a/multimedia/kmplayer-kde4/files/extra-patch-src::kmplayerplaylist.cpp b/multimedia/kmplayer-kde4/files/extra-patch-src::kmplayerplaylist.cpp deleted file mode 100644 index 46f2385ad52a..000000000000 --- a/multimedia/kmplayer-kde4/files/extra-patch-src::kmplayerplaylist.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- src/kmplayerplaylist.cpp.orig Sat Nov 13 16:01:42 2004 -+++ src/kmplayerplaylist.cpp Sat Nov 13 16:02:02 2004 -@@ -293,7 +293,7 @@ - else - kdError () << "Warning: unhandled MediaType attr: " << attr << "=" << atts.value (i) << endl; - } -- kdDebug () << "MediaType attr found bitrate: " << bitrate << " src: " << (src.isEmpty() ? "-" : src) << " type: " << (mimetype.isEmpty() ? "-" : mimetype) << endl; -+ kdDebug () << "MediaType attr found bitrate: " << bitrate << " src: " << (src.isEmpty() ? "-" : (const char *) src) << " type: " << (mimetype.isEmpty() ? "-" : (const char *) mimetype) << endl; - } - - //----------------------------------------------------------------------------- diff --git a/multimedia/kmplayer-kde4/files/patch-src::kmplayer.desktop b/multimedia/kmplayer-kde4/files/patch-src::kmplayer.desktop deleted file mode 100644 index 6ce3dfe7257d..000000000000 --- a/multimedia/kmplayer-kde4/files/patch-src::kmplayer.desktop +++ /dev/null @@ -1,12 +0,0 @@ ---- src/kmplayer.desktop.orig Wed Mar 2 22:42:11 2005 -+++ src/kmplayer.desktop Wed Mar 2 22:54:31 2005 -@@ -35,7 +35,8 @@ - Name[sv]=Kmplayer - Name[ta]=கேஎமà¯à®‡à®¯à®•à¯à®•ி - Name[xx]=xxKMPlayerxx --MimeType=audio/x-mp3;audio/mpegurl;audio/x-pn-realaudio;audio/x-scpls;audio/x-vorbis;application/x-kmplayer;application/x-mplayer2;application/x-ogg;audio/x-mp2;video/mpeg;audio/x-mpegurl;audio/x-wav;audio/x-mod;video/x-avi;video/x-ms-asf;video/x-ms-wmp;video/x-ms-wmv;video/x-msvideo;video/quicktime;video/x-flic;uri/mms;uri/pnm; -+MimeType=audio/x-mp3;audio/x-pn-realaudio;audio/x-scpls;audio/x-vorbis;application/x-kmplayer;application/x-mplayer2;application/x-ogg;video/mpeg;audio/x-mpegurl;audio/x-wav;audio/x-mod;video/x-ms-wmp;video/x-ms-wmv;video/x-msvideo;video/quicktime;video/x-flic;uri/mms;uri/pnm;application/vnd.ms-asf;application/vnd.rn-realmedia;audio/ac3;audio/vorbis;audio/x-matroska;video/x-matroska;video/x-og -+m; - InitialPreference=7 - Categories=Qt;KDE;AudioVideo; - GenericName=Media Player diff --git a/multimedia/kmplayer-kde4/pkg-descr b/multimedia/kmplayer-kde4/pkg-descr deleted file mode 100644 index e47d8ab1fdfe..000000000000 --- a/multimedia/kmplayer-kde4/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -KDE frontend to mplayer - -WWW: http://www.xs4all.nl/~jjvrieze/ - --- will@freebsd.org diff --git a/multimedia/kmplayer-kde4/pkg-plist b/multimedia/kmplayer-kde4/pkg-plist deleted file mode 100644 index bbbb62f7d37f..000000000000 --- a/multimedia/kmplayer-kde4/pkg-plist +++ /dev/null @@ -1,154 +0,0 @@ -bin/kmplayer -bin/kxvplayer -lib/kde3/kmplayer.la -lib/kde3/kmplayer.so -lib/kde3/libkmplayerpart.la -lib/kde3/libkmplayerpart.so -lib/libkdeinit_kmplayer.la -lib/libkdeinit_kmplayer.so -lib/libkmplayercommon.la -lib/libkmplayercommon.so -share/applications/kde/kmplayer.desktop -share/apps/kmplayer/bookmarks.xml -share/apps/kmplayer/kmplayerpartui.rc -share/apps/kmplayer/kmplayerui.rc -share/apps/kmplayer/pluginsinfo -share/config/kmplayerrc -share/doc/HTML/da/da/common -share/doc/HTML/da/da/index.cache.bz2 -share/doc/HTML/da/da/index.docbook -share/doc/HTML/en/kmplayer/common -share/doc/HTML/en/kmplayer/index.cache.bz2 -share/doc/HTML/en/kmplayer/index.docbook -share/doc/HTML/es/es/common -share/doc/HTML/es/es/index.cache.bz2 -share/doc/HTML/es/es/index.docbook -share/doc/HTML/et/et/common -share/doc/HTML/et/et/index.cache.bz2 -share/doc/HTML/et/et/index.docbook -share/doc/HTML/fr/fr/common -share/doc/HTML/fr/fr/index.cache.bz2 -share/doc/HTML/fr/fr/index.docbook -share/doc/HTML/it/it/common -share/doc/HTML/it/it/index.cache.bz2 -share/doc/HTML/it/it/index.docbook -share/doc/HTML/pt/pt/common -share/doc/HTML/pt/pt/index.cache.bz2 -share/doc/HTML/pt/pt/index.docbook -share/doc/HTML/ru/ru/common -share/doc/HTML/ru/ru/index.cache.bz2 -share/doc/HTML/ru/ru/index.docbook -share/doc/HTML/sv/sv/common -share/doc/HTML/sv/sv/index.cache.bz2 -share/doc/HTML/sv/sv/index.docbook -share/icons/hicolor/128x128/apps/kmplayer.png -share/icons/hicolor/16x16/apps/kmplayer.png -share/icons/hicolor/22x22/apps/kmplayer.png -share/icons/hicolor/32x32/apps/kmplayer.png -share/icons/hicolor/48x48/apps/kmplayer.png -share/icons/hicolor/64x64/apps/kmplayer.png -share/icons/hicolor/scalable/apps/kmplayer.svgz -share/locale/ar/LC_MESSAGES/kmplayer.mo -share/locale/br/LC_MESSAGES/kmplayer.mo -share/locale/bs/LC_MESSAGES/kmplayer.mo -share/locale/ca/LC_MESSAGES/kmplayer.mo -share/locale/cs/LC_MESSAGES/kmplayer.mo -share/locale/cy/LC_MESSAGES/kmplayer.mo -share/locale/da/LC_MESSAGES/kmplayer.mo -share/locale/de/LC_MESSAGES/kmplayer.mo -share/locale/el/LC_MESSAGES/kmplayer.mo -share/locale/en_GB/LC_MESSAGES/kmplayer.mo -share/locale/es/LC_MESSAGES/kmplayer.mo -share/locale/et/LC_MESSAGES/kmplayer.mo -share/locale/fi/LC_MESSAGES/kmplayer.mo -share/locale/fr/LC_MESSAGES/kmplayer.mo -share/locale/ga/LC_MESSAGES/kmplayer.mo -share/locale/hu/LC_MESSAGES/kmplayer.mo -share/locale/is/LC_MESSAGES/kmplayer.mo -share/locale/it/LC_MESSAGES/kmplayer.mo -share/locale/ja/LC_MESSAGES/kmplayer.mo -share/locale/lt/LC_MESSAGES/kmplayer.mo -share/locale/mt/LC_MESSAGES/kmplayer.mo -share/locale/nb/LC_MESSAGES/kmplayer.mo -share/locale/nl/LC_MESSAGES/kmplayer.mo -share/locale/pa/LC_MESSAGES/kmplayer.mo -share/locale/pl/LC_MESSAGES/kmplayer.mo -share/locale/pt/LC_MESSAGES/kmplayer.mo -share/locale/pt_BR/LC_MESSAGES/kmplayer.mo -share/locale/ro/LC_MESSAGES/kmplayer.mo -share/locale/ru/LC_MESSAGES/kmplayer.mo -share/locale/sk/LC_MESSAGES/kmplayer.mo -share/locale/sr/LC_MESSAGES/kmplayer.mo -share/locale/sv/LC_MESSAGES/kmplayer.mo -share/locale/ta/LC_MESSAGES/kmplayer.mo -share/locale/tr/LC_MESSAGES/kmplayer.mo -share/locale/xx/LC_MESSAGES/kmplayer.mo -share/locale/zh_CN/LC_MESSAGES/kmplayer.mo -share/services/kmplayer_part.desktop -share/services/mms.protocol -share/services/pnm.protocol -share/services/rtsp.protocol -@unexec rmdir %D/share/services 2>/dev/null || true -@unexec rmdir %D/share/locale/zh_CN/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/zh_CN 2>/dev/null || true -@unexec rmdir %D/share/locale/xx/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/xx 2>/dev/null || true -@unexec rmdir %D/share/locale/sr/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/sr 2>/dev/null || true -@unexec rmdir %D/share/locale/sk/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/sk 2>/dev/null || true -@unexec rmdir %D/share/locale/ro/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/ro 2>/dev/null || true -@unexec rmdir %D/share/locale/pt/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/pt 2>/dev/null || true -@unexec rmdir %D/share/locale/pl/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/pl 2>/dev/null || true -@unexec rmdir %D/share/locale/fi/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/fi 2>/dev/null || true -@unexec rmdir %D/share/locale/el/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/el 2>/dev/null || true -@unexec rmdir %D/share/locale/cs/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/cs 2>/dev/null || true -@unexec rmdir %D/share/locale/ca/LC_MESSAGES 2>/dev/null || true -@unexec rmdir %D/share/locale/ca 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/scalable/apps 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/scalable 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/64x64/apps 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/64x64 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/48x48/apps 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/48x48 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/32x32/apps 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/32x32 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/22x22/apps 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/22x22 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/16x16/apps 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/16x16 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/128x128/apps 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor/128x128 2>/dev/null || true -@unexec rmdir %D/share/icons/hicolor 2>/dev/null || true -@unexec rmdir %D/share/icons 2>/dev/null || true -@unexec rmdir %D/share/doc/HTML/sv/sv 2>/dev/null || true -@unexec rmdir %D/share/doc/HTML/sv 2>/dev/null || true -@unexec rmdir %D/share/doc/HTML/ru/ru 2>/dev/null || true -@unexec rmdir %D/share/doc/HTML/ru 2>/dev/null || true -@unexec rmdir %D/share/doc/HTML/pt/pt 2>/dev/null || true -@unexec rmdir %D/share/doc/HTML/pt 2>/dev/null || true -@unexec rmdir %D/share/doc/HTML/it/it 2>/dev/null || true -@unexec rmdir %D/share/doc/HTML/it 2>/dev/null || true -@unexec rmdir %D/share/doc/HTML/fr/fr 2>/dev/null || true -@unexec rmdir %D/share/doc/HTML/fr 2>/dev/null || true -@unexec rmdir %D/share/doc/HTML/et/et 2>/dev/null || true -@unexec rmdir %D/share/doc/HTML/et 2>/dev/null || true -@unexec rmdir %D/share/doc/HTML/es/es 2>/dev/null || true -@unexec rmdir %D/share/doc/HTML/es 2>/dev/null || true -@unexec rmdir %D/share/doc/HTML/en/kmplayer 2>/dev/null || true -@unexec rmdir %D/share/doc/HTML/en 2>/dev/null || true -@unexec rmdir %D/share/doc/HTML/da/da 2>/dev/null || true -@unexec rmdir %D/share/doc/HTML/da 2>/dev/null || true -@unexec rmdir %D/share/doc/HTML 2>/dev/null || true -@unexec rmdir %D/share/config 2>/dev/null || true -@dirrm share/apps/kmplayer -@unexec rmdir %D/share/apps 2>/dev/null || true -@unexec rmdir %D/share/applications/kde 2>/dev/null || true -@unexec rmdir %D/share/applications 2>/dev/null || true -@unexec rmdir %D/lib/kde3 2>/dev/null || true diff --git a/multimedia/kplayer-kde4/Makefile b/multimedia/kplayer-kde4/Makefile deleted file mode 100644 index 2b3a2d73fded..000000000000 --- a/multimedia/kplayer-kde4/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -# New ports collection makefile for: kplayer -# Date created: Fri Apr 11 09:12:55 CEST 2003 -# Whom: Stefan Eßer <se@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= kplayer -PORTVERSION= 0.5.2 -PORTREVISION= 1 -CATEGORIES= multimedia kde -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= se@FreeBSD.org -COMMENT= Movie player based on mplayer - -RUN_DEPENDS= mplayer:${PORTSDIR}/multimedia/mplayer - -USE_BZIP2= yes -USE_GMAKE= yes -USE_KDELIBS_VER=3 -PREFIX= ${KDE_PREFIX} - -GNU_CONFIGURE= yes - -.include <bsd.port.mk> diff --git a/multimedia/kplayer-kde4/distinfo b/multimedia/kplayer-kde4/distinfo deleted file mode 100644 index d2357883dc38..000000000000 --- a/multimedia/kplayer-kde4/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (kplayer-0.5.2.tar.bz2) = ba77bed100565c00036b5850e531dbc9 -SIZE (kplayer-0.5.2.tar.bz2) = 2014423 diff --git a/multimedia/kplayer-kde4/files/patch-kplayerproperties.h b/multimedia/kplayer-kde4/files/patch-kplayerproperties.h deleted file mode 100644 index c9db6de3e5fe..000000000000 --- a/multimedia/kplayer-kde4/files/patch-kplayerproperties.h +++ /dev/null @@ -1,11 +0,0 @@ ---- kplayer/kplayerproperties.h.orig Sat Oct 16 01:58:03 2004 -+++ kplayer/kplayerproperties.h Sat Oct 16 01:58:43 2004 -@@ -349,7 +349,7 @@ - // Advanced properties - - QString executablePathValue (void) const -- { return m_executable_path.isEmpty() ? "mplayer" : m_executable_path; } -+ { return m_executable_path.isEmpty() ? QString::fromLatin1("mplayer") : m_executable_path; } - void setExecutablePathValue (QString path) - { m_executable_path = path; } - diff --git a/multimedia/kplayer-kde4/files/patch-kplayerpropertiesdialog.cpp b/multimedia/kplayer-kde4/files/patch-kplayerpropertiesdialog.cpp deleted file mode 100644 index e67ac1c665a9..000000000000 --- a/multimedia/kplayer-kde4/files/patch-kplayerpropertiesdialog.cpp +++ /dev/null @@ -1,112 +0,0 @@ ---- kplayer/kplayerpropertiesdialog.cpp.orig Sat Oct 16 02:14:58 2004 -+++ kplayer/kplayerpropertiesdialog.cpp Sat Oct 16 02:13:17 2004 -@@ -153,7 +153,7 @@ - config -> deleteEntry ("Properties Dialog Page"); - else - config -> writeEntry ("Properties Dialog Page", name); -- setHelp (name.isEmpty() ? "properties" : "properties-" + name); -+ setHelp (name.isEmpty() ? QString::fromLatin1("properties") : "properties-" + name); - } - - void KPlayerPropertiesDialog::slotOk (void) -@@ -191,8 +191,8 @@ - c_name -> setText (m_properties -> name()); - c_playlist -> setCurrentItem (m_properties -> playlistOption()); - c_length -> setText (timeString (m_properties -> length())); -- c_original_width -> setText (m_properties -> originalSize().isEmpty() ? "" : QString::number (m_properties -> originalSize().width())); -- c_original_height -> setText (m_properties -> originalSize().isEmpty() ? "" : QString::number (m_properties -> originalSize().height())); -+ c_original_width -> setText (m_properties -> originalSize().isEmpty() ? QString::fromLatin1("") : QString::number (m_properties -> originalSize().width())); -+ c_original_height -> setText (m_properties -> originalSize().isEmpty() ? QString::fromLatin1("") : QString::number (m_properties -> originalSize().height())); - c_display_size -> setCurrentItem (m_properties -> displaySizeOption()); - displaySizeChanged (c_display_size -> currentItem()); - c_maintain_aspect -> setCurrentItem (m_properties -> maintainAspectOption() + 1); -@@ -266,7 +266,7 @@ - - void KPlayerPropertiesSubtitles::autoloadChanged (int option) - { -- c_url -> setText (option < 2 || m_properties -> subtitleUrl().isEmpty() ? "" -+ c_url -> setText (option < 2 || m_properties -> subtitleUrl().isEmpty() ? QString::fromLatin1("") - : m_properties -> subtitleUrl().isLocalFile() ? m_properties -> subtitleUrl().path() - : m_properties -> subtitleUrl().url()); - c_url -> setEnabled (option == 2); -@@ -274,7 +274,7 @@ - - void KPlayerPropertiesSubtitles::positionChanged (int option) - { -- c_position -> setText (option > 0 ? QString::number (m_properties -> subtitlePositionValue()) : ""); -+ c_position -> setText (option > 0 ? QString::number (m_properties -> subtitlePositionValue()) : QString::fromLatin1("")); - c_position -> setEnabled (option > 0); - if ( option > 0 && sender() ) - { -@@ -285,7 +285,7 @@ - - void KPlayerPropertiesSubtitles::delayChanged (int option) - { -- c_delay -> setText (option > 0 ? QString::number (m_properties -> subtitleDelayValue()) : ""); -+ c_delay -> setText (option > 0 ? QString::number (m_properties -> subtitleDelayValue()) : QString::fromLatin1("")); - c_delay -> setEnabled (option > 0); - if ( option > 0 && sender() ) - { -@@ -348,7 +348,7 @@ - - void KPlayerPropertiesAudio::volumeChanged (int option) - { -- c_volume -> setText (option > 0 ? QString::number (m_properties -> volumeValue()) : ""); -+ c_volume -> setText (option > 0 ? QString::number (m_properties -> volumeValue()) : QString::fromLatin1("")); - c_volume -> setEnabled (option > 0); - if ( option > 0 && sender() ) - { -@@ -359,7 +359,7 @@ - - void KPlayerPropertiesAudio::delayChanged (int option) - { -- c_delay -> setText (option > 0 ? QString::number (m_properties -> audioDelayValue()) : ""); -+ c_delay -> setText (option > 0 ? QString::number (m_properties -> audioDelayValue()) : QString::fromLatin1("")); - c_delay -> setEnabled (option > 0); - if ( option > 0 && sender() ) - { -@@ -441,7 +441,7 @@ - - void KPlayerPropertiesVideo::contrastChanged (int option) - { -- c_contrast -> setText (option > 0 ? QString::number (m_properties -> contrastValue()) : ""); -+ c_contrast -> setText (option > 0 ? QString::number (m_properties -> contrastValue()) : QString::fromLatin1("")); - c_contrast -> setEnabled (option > 0); - if ( option > 0 && sender() ) - { -@@ -452,7 +452,7 @@ - - void KPlayerPropertiesVideo::brightnessChanged (int option) - { -- c_brightness -> setText (option > 0 ? QString::number (m_properties -> brightnessValue()) : ""); -+ c_brightness -> setText (option > 0 ? QString::number (m_properties -> brightnessValue()) : QString::fromLatin1("")); - c_brightness -> setEnabled (option > 0); - if ( option > 0 && sender() ) - { -@@ -463,7 +463,7 @@ - - void KPlayerPropertiesVideo::hueChanged (int option) - { -- c_hue -> setText (option > 0 ? QString::number (m_properties -> hueValue()) : ""); -+ c_hue -> setText (option > 0 ? QString::number (m_properties -> hueValue()) : QString::fromLatin1("")); - c_hue -> setEnabled (option > 0); - if ( option > 0 && sender() ) - { -@@ -474,7 +474,7 @@ - - void KPlayerPropertiesVideo::saturationChanged (int option) - { -- c_saturation -> setText (option > 0 ? QString::number (m_properties -> saturationValue()) : ""); -+ c_saturation -> setText (option > 0 ? QString::number (m_properties -> saturationValue()) : QString::fromLatin1("")); - c_saturation -> setEnabled (option > 0); - if ( option > 0 && sender() ) - { -@@ -524,7 +524,7 @@ - - void KPlayerPropertiesAdvanced::commandLineChanged (int option) - { -- c_command_line -> setText (option > 0 ? m_properties -> commandLineValue() : ""); -+ c_command_line -> setText (option > 0 ? m_properties -> commandLineValue() : QString::fromLatin1("")); - c_command_line -> setEnabled (option > 0); - if ( option > 0 && sender() ) - { diff --git a/multimedia/kplayer-kde4/files/patch-kplayersettings.h b/multimedia/kplayer-kde4/files/patch-kplayersettings.h deleted file mode 100644 index da34272e09c3..000000000000 --- a/multimedia/kplayer-kde4/files/patch-kplayersettings.h +++ /dev/null @@ -1,11 +0,0 @@ ---- kplayer/kplayersettings.h.orig Sat Oct 16 02:00:48 2004 -+++ kplayer/kplayersettings.h Sat Oct 16 02:01:22 2004 -@@ -982,7 +982,7 @@ - } - - QString executablePathDefault (void) const -- { return m_executable_path_default.isEmpty() ? "mplayer" : m_executable_path_default; } -+ { return m_executable_path_default.isEmpty() ? QString::fromLatin1("mplayer") : m_executable_path_default; } - void setExecutablePathDefault (QString path) - { m_executable_path_default = path; } - diff --git a/multimedia/kplayer-kde4/files/patch-kplayersettingsdialog.cpp b/multimedia/kplayer-kde4/files/patch-kplayersettingsdialog.cpp deleted file mode 100644 index 5cc882a58ec6..000000000000 --- a/multimedia/kplayer-kde4/files/patch-kplayersettingsdialog.cpp +++ /dev/null @@ -1,29 +0,0 @@ ---- kplayer/kplayersettingsdialog.cpp.orig Sat Oct 16 02:16:39 2004 -+++ kplayer/kplayersettingsdialog.cpp Sat Oct 16 02:17:35 2004 -@@ -271,7 +271,7 @@ - config -> deleteEntry ("Settings Dialog Page"); - else - config -> writeEntry ("Settings Dialog Page", name); -- setHelp (name.isEmpty() ? "settings" : "settings-" + name); -+ setHelp (name.isEmpty() ? QString::fromLatin1("settings") : "settings-" + name); - } - - void KPlayerSettingsDialog::slotOk (void) -@@ -435,7 +435,7 @@ - KPlayerSettings* settings = kPlayerSettings(); - c_driver_fallback -> setChecked (index > 0 && settings -> audioDriverFallbackDefault()); - c_driver_fallback -> setEnabled (index > 0); -- c_device -> setText (index > 0 ? settings -> audioDeviceDefault() : ""); -+ c_device -> setText (index > 0 ? settings -> audioDeviceDefault() : QString::fromLatin1("")); - c_device -> setEnabled (index > 0); - } - -@@ -792,7 +792,7 @@ - KPlayerSettings* settings = kPlayerSettings(); - c_driver_fallback -> setChecked (index > 0 && settings -> videoDriverFallbackDefault()); - c_driver_fallback -> setEnabled (index > 0); -- c_device -> setText (index > 0 ? settings -> videoDeviceDefault() : ""); -+ c_device -> setText (index > 0 ? settings -> videoDeviceDefault() : QString::fromLatin1("")); - c_device -> setEnabled (index > 0); - } - diff --git a/multimedia/kplayer-kde4/pkg-descr b/multimedia/kplayer-kde4/pkg-descr deleted file mode 100644 index ba9cd08fb507..000000000000 --- a/multimedia/kplayer-kde4/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -KPlayer is a KDE media player based on MPlayer, www.mplayerhq.hu. - -Features include video, audio and subtitle playback from file, URL, DVD, VCD, -audio CD, TV, etc.; volume, contrast, brightness, hue and saturation controls; -zooming, full screen and fixed aspect options; status and progress display -and seeking; user friendly interface. - -Among planned enhancements are configuration dialog, global and per-file -options, playlist, further KDE integration, MPlayer config file handling, -support for media encoding. - -WWW: http://sourceforge.net/projects/kplayer diff --git a/multimedia/kplayer-kde4/pkg-plist b/multimedia/kplayer-kde4/pkg-plist deleted file mode 100644 index cb029ab245a1..000000000000 --- a/multimedia/kplayer-kde4/pkg-plist +++ /dev/null @@ -1,158 +0,0 @@ -bin/kplayer -lib/kde3/kfile_kplayer.la -lib/kde3/kfile_kplayer.so -lib/kde3/libkplayerpart.la -lib/kde3/libkplayerpart.so -share/applnk/Multimedia/kplayer.desktop -share/apps/kplayer/icons/hicolor/16x16/actions/brightness.png -share/apps/kplayer/icons/hicolor/16x16/actions/contrast.png -share/apps/kplayer/icons/hicolor/16x16/actions/fileopen.png -share/apps/kplayer/icons/hicolor/16x16/actions/fileopenurl.png -share/apps/kplayer/icons/hicolor/16x16/actions/hue.png -share/apps/kplayer/icons/hicolor/16x16/actions/lock.png -share/apps/kplayer/icons/hicolor/16x16/actions/loop.png -share/apps/kplayer/icons/hicolor/16x16/actions/mute.png -share/apps/kplayer/icons/hicolor/16x16/actions/player_fwd.png -share/apps/kplayer/icons/hicolor/16x16/actions/player_pause.png -share/apps/kplayer/icons/hicolor/16x16/actions/player_play.png -share/apps/kplayer/icons/hicolor/16x16/actions/player_rew.png -share/apps/kplayer/icons/hicolor/16x16/actions/player_stop.png -share/apps/kplayer/icons/hicolor/16x16/actions/properties.png -share/apps/kplayer/icons/hicolor/16x16/actions/saturation.png -share/apps/kplayer/icons/hicolor/16x16/actions/shuffle.png -share/apps/kplayer/icons/hicolor/16x16/actions/viewmag+.png -share/apps/kplayer/icons/hicolor/16x16/actions/viewmag-.png -share/apps/kplayer/icons/hicolor/16x16/actions/viewmagfit.png -share/apps/kplayer/icons/hicolor/16x16/actions/volume.png -share/apps/kplayer/icons/hicolor/16x16/actions/window_fullscreen.png -share/apps/kplayer/icons/hicolor/22x22/actions/brightness.png -share/apps/kplayer/icons/hicolor/22x22/actions/contrast.png -share/apps/kplayer/icons/hicolor/22x22/actions/fileopen.png -share/apps/kplayer/icons/hicolor/22x22/actions/fileopenurl.png -share/apps/kplayer/icons/hicolor/22x22/actions/hue.png -share/apps/kplayer/icons/hicolor/22x22/actions/lock.png -share/apps/kplayer/icons/hicolor/22x22/actions/loop.png -share/apps/kplayer/icons/hicolor/22x22/actions/mute.png -share/apps/kplayer/icons/hicolor/22x22/actions/player_fwd.png -share/apps/kplayer/icons/hicolor/22x22/actions/player_pause.png -share/apps/kplayer/icons/hicolor/22x22/actions/player_play.png -share/apps/kplayer/icons/hicolor/22x22/actions/player_rew.png -share/apps/kplayer/icons/hicolor/22x22/actions/player_stop.png -share/apps/kplayer/icons/hicolor/22x22/actions/properties.png -share/apps/kplayer/icons/hicolor/22x22/actions/saturation.png -share/apps/kplayer/icons/hicolor/22x22/actions/shuffle.png -share/apps/kplayer/icons/hicolor/22x22/actions/viewmag+.png -share/apps/kplayer/icons/hicolor/22x22/actions/viewmag-.png -share/apps/kplayer/icons/hicolor/22x22/actions/viewmagfit.png -share/apps/kplayer/icons/hicolor/22x22/actions/volume.png -share/apps/kplayer/icons/hicolor/22x22/actions/window_fullscreen.png -share/apps/kplayer/icons/hicolor/32x32/actions/brightness.png -share/apps/kplayer/icons/hicolor/32x32/actions/contrast.png -share/apps/kplayer/icons/hicolor/32x32/actions/fileopen.png -share/apps/kplayer/icons/hicolor/32x32/actions/fileopenurl.png -share/apps/kplayer/icons/hicolor/32x32/actions/hue.png -share/apps/kplayer/icons/hicolor/32x32/actions/lock.png -share/apps/kplayer/icons/hicolor/32x32/actions/loop.png -share/apps/kplayer/icons/hicolor/32x32/actions/mute.png -share/apps/kplayer/icons/hicolor/32x32/actions/player_fwd.png -share/apps/kplayer/icons/hicolor/32x32/actions/player_pause.png -share/apps/kplayer/icons/hicolor/32x32/actions/player_play.png -share/apps/kplayer/icons/hicolor/32x32/actions/player_rew.png -share/apps/kplayer/icons/hicolor/32x32/actions/player_stop.png -share/apps/kplayer/icons/hicolor/32x32/actions/properties.png -share/apps/kplayer/icons/hicolor/32x32/actions/saturation.png -share/apps/kplayer/icons/hicolor/32x32/actions/shuffle.png -share/apps/kplayer/icons/hicolor/32x32/actions/viewmag+.png -share/apps/kplayer/icons/hicolor/32x32/actions/viewmag-.png -share/apps/kplayer/icons/hicolor/32x32/actions/viewmagfit.png -share/apps/kplayer/icons/hicolor/32x32/actions/volume.png -share/apps/kplayer/icons/hicolor/32x32/actions/window_fullscreen.png -share/apps/kplayer/input.conf -share/apps/kplayer/kplayerpartui.rc -share/apps/kplayer/kplayerui.rc -share/doc/HTML/en/kplayer/basics.docbook -share/doc/HTML/en/kplayer/commands.docbook -share/doc/HTML/en/kplayer/common -share/doc/HTML/en/kplayer/configuration.docbook -share/doc/HTML/en/kplayer/dvd-bear.png -share/doc/HTML/en/kplayer/howto-bug-reporting.docbook -share/doc/HTML/en/kplayer/howto-compilation.docbook -share/doc/HTML/en/kplayer/howto-configuration.docbook -share/doc/HTML/en/kplayer/howto-devices.docbook -share/doc/HTML/en/kplayer/howto-full-screen.docbook -share/doc/HTML/en/kplayer/howto-installation.docbook -share/doc/HTML/en/kplayer/howto-playlist.docbook -share/doc/HTML/en/kplayer/howto-properties.docbook -share/doc/HTML/en/kplayer/howto-settings.docbook -share/doc/HTML/en/kplayer/howto-slaves.docbook -share/doc/HTML/en/kplayer/howto-streams.docbook -share/doc/HTML/en/kplayer/howto-subtitles.docbook -share/doc/HTML/en/kplayer/howto-translation.docbook -share/doc/HTML/en/kplayer/howto-troubleshooting.docbook -share/doc/HTML/en/kplayer/howto.docbook -share/doc/HTML/en/kplayer/index.cache.bz2 -share/doc/HTML/en/kplayer/index.docbook -share/doc/HTML/en/kplayer/introduction.docbook -share/doc/HTML/en/kplayer/properties-advanced.png -share/doc/HTML/en/kplayer/properties-audio.png -share/doc/HTML/en/kplayer/properties-general.png -share/doc/HTML/en/kplayer/properties-subtitles.png -share/doc/HTML/en/kplayer/properties-video.png -share/doc/HTML/en/kplayer/properties.docbook -share/doc/HTML/en/kplayer/settings-advanced.png -share/doc/HTML/en/kplayer/settings-audio.png -share/doc/HTML/en/kplayer/settings-brightness.png -share/doc/HTML/en/kplayer/settings-contrast.png -share/doc/HTML/en/kplayer/settings-controls.png -share/doc/HTML/en/kplayer/settings-general.png -share/doc/HTML/en/kplayer/settings-hue.png -share/doc/HTML/en/kplayer/settings-messages.png -share/doc/HTML/en/kplayer/settings-playlist.png -share/doc/HTML/en/kplayer/settings-progress.png -share/doc/HTML/en/kplayer/settings-saturation.png -share/doc/HTML/en/kplayer/settings-sliders.png -share/doc/HTML/en/kplayer/settings-subtitles.png -share/doc/HTML/en/kplayer/settings-video.png -share/doc/HTML/en/kplayer/settings-volume.png -share/doc/HTML/en/kplayer/settings.docbook -share/doc/HTML/en/kplayer/shortcuts-configure.png -share/doc/HTML/en/kplayer/shortcuts-define.png -share/icons/hicolor/16x16/apps/kplayer.png -share/icons/hicolor/22x22/apps/kplayer.png -share/icons/hicolor/32x32/apps/kplayer.png -share/icons/hicolor/48x48/apps/kplayer.png -share/icons/hicolor/64x64/apps/kplayer.png -share/icons/locolor/16x16/apps/kplayer.png -share/icons/locolor/22x22/apps/kplayer.png -share/icons/locolor/32x32/apps/kplayer.png -share/locale/ca/LC_MESSAGES/kplayer.mo -share/locale/cs/LC_MESSAGES/kplayer.mo -share/locale/da/LC_MESSAGES/kplayer.mo -share/locale/de/LC_MESSAGES/kplayer.mo -share/locale/es/LC_MESSAGES/kplayer.mo -share/locale/fi/LC_MESSAGES/kplayer.mo -share/locale/fr/LC_MESSAGES/kplayer.mo -share/locale/hu/LC_MESSAGES/kplayer.mo -share/locale/it/LC_MESSAGES/kplayer.mo -share/locale/pl/LC_MESSAGES/kplayer.mo -share/locale/ru/LC_MESSAGES/kplayer.mo -share/locale/zh_CN/LC_MESSAGES/kplayer.mo -share/services/kfile_kplayer.desktop -share/services/kplayerpart.desktop -share/services/mms.protocol -share/services/mmst.protocol -share/services/mmsu.protocol -share/services/pnm.protocol -share/services/rtsp.protocol -@unexec rmdir %D/lib/kde3 >/dev/null 2>&1 || true -@unexec rmdir %D/share/services >/dev/null 2>&1 || true -@dirrm share/doc/HTML/en/kplayer -@dirrm share/apps/kplayer/icons/hicolor/32x32/actions -@dirrm share/apps/kplayer/icons/hicolor/32x32 -@dirrm share/apps/kplayer/icons/hicolor/22x22/actions -@dirrm share/apps/kplayer/icons/hicolor/22x22 -@dirrm share/apps/kplayer/icons/hicolor/16x16/actions -@dirrm share/apps/kplayer/icons/hicolor/16x16 -@dirrm share/apps/kplayer/icons/hicolor -@dirrm share/apps/kplayer/icons -@dirrm share/apps/kplayer diff --git a/multimedia/ldvd/Makefile b/multimedia/ldvd/Makefile deleted file mode 100644 index a7408dbf25b9..000000000000 --- a/multimedia/ldvd/Makefile +++ /dev/null @@ -1,47 +0,0 @@ -# New ports collection makefile for: ldvd9to5 -# Date created: 2004-10-03 -# Whom: Andreas Fehlner <fehlner@gmx.de> -# -# $FreeBSD$ -# - -PORTNAME= ldvd9to5 -PORTVERSION= 1.12 -PORTREVISION= 2 -CATEGORIES= multimedia -MASTER_SITES= http://files.gff-clan.net/pub/ldvd/ -DISTNAME= ${PORTNAME}-v${PORTVERSION} -EXTRACT_SUFX= .tgz - -MAINTAINER= fehlner@gmx.de -COMMENT= Gui, which shall simplify shrinking a DVD-9 to a DVD-5 - -RUN_DEPENDS= transcode:${PORTSDIR}/multimedia/transcode \ - growisofs:${PORTSDIR}/sysutils/dvd+rw-tools \ - mkisofs:${PORTSDIR}/sysutils/cdrtools \ - ifo_dump:${PORTSDIR}/multimedia/ogle \ - dvdauthor:${PORTSDIR}/multimedia/dvdauthor \ - buffer:${PORTSDIR}/misc/buffer \ - lsdvd:${PORTSDIR}/multimedia/lsdvd \ - ${SITE_PERL}/${PERL_ARCH}/Gtk.pm:${PORTSDIR}/x11-toolkits/p5-Gtk -BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Gtk.pm:${PORTSDIR}/x11-toolkits/p5-Gtk - -USE_PERL= yes -USE_REINPLACE= yes -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} -NO_BUILD= yes -DATA= INSTALL.de INSTALL.en README.de README.en COPYING - -post-patch: - @${REINPLACE_CMD} -e 's|LSDVD=/opt/ldvd9to5|LSDVD=${LOCALBASE}/bin|g' ${WRKSRC}/ldvd9to5.conf - @${REINPLACE_CMD} -e 's|/opt|${LOCALBASE}/share|g' -e 's|/etc|${LOCALBASE}/etc|g' ${WRKSRC}/ldvd9to5 - -do-install: - ${MKDIR} ${DATADIR} - cd ${WRKSRC} && ${INSTALL_DATA} ${DATA} ${DATADIR} - ${MKDIR} ${DATADIR}/modules - ${CP} -rv ${WRKSRC}/modules ${DATADIR} - cd ${WRKSRC} && ${INSTALL_DATA} ldvd9to5.conf ${PREFIX}/etc - cd ${WRKSRC} && ${INSTALL_SCRIPT} ldvd9to5 ${PREFIX}/bin - -.include <bsd.port.mk> diff --git a/multimedia/ldvd/distinfo b/multimedia/ldvd/distinfo deleted file mode 100644 index 18d76c78a5ef..000000000000 --- a/multimedia/ldvd/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (ldvd9to5-v1.12.tgz) = 0847b41ea7a33c411022240809287b9f -SIZE (ldvd9to5-v1.12.tgz) = 34959 diff --git a/multimedia/ldvd/pkg-descr b/multimedia/ldvd/pkg-descr deleted file mode 100644 index 05e81729905e..000000000000 --- a/multimedia/ldvd/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -LDVD9to5 is only a Gui, which shall simplify shrinking a DVD-9 to a DVD-5. - -WWW: http://ldvd9to5.gff-clan.net/?project=ldvd9to5 - -Andreas Fehlner --fehlner@gmx.de diff --git a/multimedia/ldvd/pkg-plist b/multimedia/ldvd/pkg-plist deleted file mode 100644 index 6fcf86dbfe90..000000000000 --- a/multimedia/ldvd/pkg-plist +++ /dev/null @@ -1,12 +0,0 @@ -bin/ldvd9to5 -etc/ldvd9to5.conf -%%DATADIR%%/INSTALL.de -%%DATADIR%%/INSTALL.en -%%DATADIR%%/README.de -%%DATADIR%%/README.en -%%DATADIR%%/COPYING -%%DATADIR%%/modules/extract.pm -%%DATADIR%%/modules/info.pm -%%DATADIR%%/modules/util.pm -@dirrm %%DATADIR%%/modules -@dirrm %%DATADIR%% diff --git a/multimedia/libdca/Makefile b/multimedia/libdca/Makefile deleted file mode 100644 index 1e171157b788..000000000000 --- a/multimedia/libdca/Makefile +++ /dev/null @@ -1,22 +0,0 @@ -# New ports collection makefile for: libdts -# Date created: 12th May 2004 -# Whom: Pav Lucistnik <pav@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= libdts -PORTVERSION= 0.0.2 -CATEGORIES= multimedia -MASTER_SITES= http://debian.unnet.nl/pub/videolan/libdts/${PORTVERSION}/ \ - http://download.videolan.org/pub/videolan/libdts/${PORTVERSION}/ - -MAINTAINER= pav@FreeBSD.org -COMMENT= Free DTS Coherent Acoustics decoder - -GNU_CONFIGURE= yes -USE_GNOME= pkgconfig gnomehack - -MAN1= dtsdec.1 extract_dts.1 - -.include <bsd.port.mk> diff --git a/multimedia/libdca/distinfo b/multimedia/libdca/distinfo deleted file mode 100644 index 863a479b4ceb..000000000000 --- a/multimedia/libdca/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (libdts-0.0.2.tar.gz) = a1c0dac95d7031498c2d19d7a3107469 -SIZE (libdts-0.0.2.tar.gz) = 295185 diff --git a/multimedia/libdca/files/patch-libao-audio_out_oss.c b/multimedia/libdca/files/patch-libao-audio_out_oss.c deleted file mode 100644 index b4141ec764c7..000000000000 --- a/multimedia/libdca/files/patch-libao-audio_out_oss.c +++ /dev/null @@ -1,24 +0,0 @@ ---- libao/audio_out_oss.c.orig Thu Feb 5 10:14:12 2004 -+++ libao/audio_out_oss.c Wed May 12 11:49:35 2004 -@@ -34,8 +34,9 @@ - - #if defined(__OpenBSD__) || defined(__NetBSD__) - #include <soundcard.h> --#elif defined(__FreeBSD__) --#include <machine/soundcard.h> -+#else -+#include <sys/soundcard.h> -+#if defined(__FreeBSD__) - #ifndef AFMT_S16_NE - #include <machine/endian.h> - #if BYTE_ORDER == LITTLE_ENDIAN -@@ -44,8 +45,7 @@ - #define AFMT_S16_NE AFMT_S16_BE - #endif - #endif --#else --#include <sys/soundcard.h> -+#endif - #endif - - #if defined(__NetBSD__) diff --git a/multimedia/libdca/pkg-descr b/multimedia/libdca/pkg-descr deleted file mode 100644 index 38a135720c56..000000000000 --- a/multimedia/libdca/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -libdts is a free library for decoding DTS Coherent Acoustics streams. - -libdts is still in early development stage so don't expect too much from it. - -WWW: http://www.videolan.org/dtsdec.html diff --git a/multimedia/libdca/pkg-plist b/multimedia/libdca/pkg-plist deleted file mode 100644 index 05c846270a34..000000000000 --- a/multimedia/libdca/pkg-plist +++ /dev/null @@ -1,6 +0,0 @@ -bin/dtsdec -bin/extract_dts -include/dts.h -lib/libdts.a -lib/libdts_pic.a -libdata/pkgconfig/libdts.pc diff --git a/multimedia/mp4v2/Makefile b/multimedia/mp4v2/Makefile deleted file mode 100644 index da845d239e43..000000000000 --- a/multimedia/mp4v2/Makefile +++ /dev/null @@ -1,56 +0,0 @@ -# New ports collection makefile for: mpeg4ip-libmp4v2 -# Date created: 28 Sep 2004 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= mpeg4ip -PORTVERSION= 1.1 -PORTREVISION= 1 -CATEGORIES= multimedia -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} -PKGNAMESUFFIX= -libmp4v2 - -MAINTAINER= ahze@FreeBSD.org -COMMENT= Mpeg-4 library and tools from mpeg4ip - -USE_GMAKE= yes -USE_GNOME= gnometarget -USE_LIBTOOL_VER=15 -USE_REINPLACE= yes -CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include -I${X11BASE}/include ${PTHREAD_CFLAGS}" \ - LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib -L${X11BASE}/lib ${PTHREAD_LIBS}" -INSTALLS_SHLIB= yes - -BUILD_WRKSRC= ${WRKSRC}/lib/mp4v2 -INSTALL_WRKSRC= ${WRKSRC}/lib/mp4v2 - -.include <bsd.port.pre.mk> - -.if exists(${LOCALBASE}/include/systems.h) -BROKEN= "Please remove older version of faad before attempting to build ${PORTNAME}" -.endif - -.if ${OSVERSION} < 500000 -CFLAGS+= -O2 -.endif - -post-patch: -# Speed up configure by not using 2 unneeded configure scripts. - @${ECHO_CMD} "" > ${WRKSRC}/lib/rtp/configure - @${ECHO_CMD} "" > ${WRKSRC}/lib/SDLAudio/configure - @${REINPLACE_CMD} \ - -e 's|>&/|>/|; s|-Wmissing-declarations||; \ - s|-Wmissing-prototypes||' \ - ${WRKSRC}/configure -pre-build: - @cd ${WRKSRC}/lib/gnu && ${MAKE} - -post-install: -.for i in include/mpeg4ip.h include/mpeg4ip_version.h mpeg4ip_config.h - ${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/include -.endfor - -.include <bsd.port.post.mk> diff --git a/multimedia/mp4v2/distinfo b/multimedia/mp4v2/distinfo deleted file mode 100644 index 02820732b2b3..000000000000 --- a/multimedia/mp4v2/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (mpeg4ip-1.1.tar.gz) = fef0224a45485653a8db87bdd5c9e745 -SIZE (mpeg4ip-1.1.tar.gz) = 4351378 diff --git a/multimedia/mp4v2/files/patch-include::mpeg4ip.h b/multimedia/mp4v2/files/patch-include::mpeg4ip.h deleted file mode 100644 index 550c65913825..000000000000 --- a/multimedia/mp4v2/files/patch-include::mpeg4ip.h +++ /dev/null @@ -1,19 +0,0 @@ ---- include/mpeg4ip.h.orig Wed Sep 29 14:43:52 2004 -+++ include/mpeg4ip.h Wed Sep 29 14:44:10 2004 -@@ -160,14 +160,14 @@ - #include <errno.h> - #include <stdlib.h> - --#ifdef HAVE_INTTYPES_H - #include <inttypes.h> --#endif - #ifdef HAVE_STDINT_H - #include <stdint.h> - #endif -+#if 0 - #if !defined(HAVE_INTTYPES_H) || !defined(HAVE_STDINT_H) - #error "Don't have stdint.h or inttypes.h - no way to get uint8_t" -+#endif - #endif - - #include <unistd.h> diff --git a/multimedia/mp4v2/files/patch-include::mpeg4ip_getopt.h b/multimedia/mp4v2/files/patch-include::mpeg4ip_getopt.h deleted file mode 100644 index 3677f0259efc..000000000000 --- a/multimedia/mp4v2/files/patch-include::mpeg4ip_getopt.h +++ /dev/null @@ -1,12 +0,0 @@ ---- include/mpeg4ip_getopt.h.orig Tue Oct 15 13:12:27 2002 -+++ include/mpeg4ip_getopt.h Mon Feb 24 05:23:50 2003 -@@ -11,6 +11,9 @@ - #endif - - #ifdef HAVE_GETOPT_H -+#ifdef __FreeBSD__ -+#define __GNU_LIBRARY__ -+#endif - #include <getopt.h> - #endif - diff --git a/multimedia/mp4v2/files/patch-lib::mp4v2::util::mp4tags.cpp b/multimedia/mp4v2/files/patch-lib::mp4v2::util::mp4tags.cpp deleted file mode 100644 index a1a617828028..000000000000 --- a/multimedia/mp4v2/files/patch-lib::mp4v2::util::mp4tags.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- lib/mp4v2/util/mp4tags.cpp.orig Thu Nov 11 03:16:39 2004 -+++ lib/mp4v2/util/mp4tags.cpp Thu Nov 11 03:23:05 2004 -@@ -178,7 +178,7 @@ - } - - /* Set the other relevant attributes */ -- for (int i = 0; i < UCHAR_MAX; i++) { -+ for (int i = 0; i < (int)UCHAR_MAX; i++) { - if (tags[i]) { - switch(i) { - case OPT_ALBUM: MP4SetMetadataAlbum(h, tags[i]); break; diff --git a/multimedia/mp4v2/files/patch-mpeg4ip_config.h.in b/multimedia/mp4v2/files/patch-mpeg4ip_config.h.in deleted file mode 100644 index 8bfb7a0aff76..000000000000 --- a/multimedia/mp4v2/files/patch-mpeg4ip_config.h.in +++ /dev/null @@ -1,27 +0,0 @@ ---- mpeg4ip_config.h.in.orig Tue May 18 13:31:06 2004 -+++ mpeg4ip_config.h.in Wed Sep 29 14:40:59 2004 -@@ -25,16 +25,12 @@ - #undef HAVE_FPOS_T___POS - - /* Define to 1 if you have the `getopt' function. */ --#undef HAVE_GETOPT - - /* Define to 1 if you have the <getopt.h> header file. */ --#undef HAVE_GETOPT_H - - /* Define to 1 if you have the `getopt_long' function. */ --#undef HAVE_GETOPT_LONG - - /* Define to 1 if you have the `getopt_long_only' function. */ --#undef HAVE_GETOPT_LONG_ONLY - - /* Define to 1 if you have the `getrusage' function. */ - #undef HAVE_GETRUSAGE -@@ -67,7 +63,6 @@ - #undef HAVE_IPv6 - - /* Define to 1 if you have the `gnugetopt' library (-lgnugetopt). */ --#undef HAVE_LIBGNUGETOPT - - /* have libmpeg2 decoder library */ - #undef HAVE_LIBMPEG2 diff --git a/multimedia/mp4v2/pkg-descr b/multimedia/mp4v2/pkg-descr deleted file mode 100644 index 76c7e44c885c..000000000000 --- a/multimedia/mp4v2/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Mpeg4 library and tools from mpeg4ip - -WWW: http://mpeg4ip.sourceforge.net/ diff --git a/multimedia/mp4v2/pkg-plist b/multimedia/mp4v2/pkg-plist deleted file mode 100644 index 51483ab5f2f2..000000000000 --- a/multimedia/mp4v2/pkg-plist +++ /dev/null @@ -1,12 +0,0 @@ -bin/mp4dump -bin/mp4extract -bin/mp4info -bin/mp4tags -bin/mp4trackdump -include/mp4.h -include/mpeg4ip.h -include/mpeg4ip_config.h -include/mpeg4ip_version.h -lib/libmp4v2.a -lib/libmp4v2.so -lib/libmp4v2.so.0 diff --git a/multimedia/pvrxxx/Makefile b/multimedia/pvrxxx/Makefile deleted file mode 100644 index 893ab91c2b12..000000000000 --- a/multimedia/pvrxxx/Makefile +++ /dev/null @@ -1,139 +0,0 @@ -# -# New ports collection makefile for: pvr250 -# Date created: 10 October 2004 -# Whom: Edwin Groothuis <edwin@mavetju.org> -# -# $FreeBSD$ -# - -PORTNAME= pvr250 -PORTVERSION= 20041230 -PORTREVISION= 1 -CATEGORIES= multimedia -MASTER_SITES= http://www.mavetju.org/download/adopted/ -DISTFILES= ${CXMSHAR} hcwPVRP2.sys ${PVRTOOLS}.tar.gz -IGNOREFILES= hcwPVRP2.sys # Varies from month to month - -MAINTAINER= edwin@mavetju.org -COMMENT= Hauppauge PVR-250/350 TV cards driver for the cxm device - -PVRTOOLS= pvr250-1.1 -CXMSHAR= cxm-${PORTVERSION}.shar - -WRKSRC= ${WRKDIR} -USE_REINPLACE= yes - -RESTRICTED_FILES= hcwPVRP2.sys -RESTRICTED= "This port uses a binary driver which is owned by Hauppauge" -NO_PACKAGE= ${RESTRICTED} -NO_CDROM= ${RESTRICTED} - -OPTIONS= USBROADCAST "US Broadcast" Off \ - USCABLE "US Cable" Off \ - BGBROADCAST "B/G Broadcast" Off \ - BGCABLE "B/G Cable" Off \ - BGAUSTRALIA "B/G Australia" Off \ - IBROADCAST "I Broadcast" Off \ - LBROADCAST "L Broadcast" Off - -MAN4= cxm.4 - -pre-everything:: - @${ECHO_CMD} "Some tuners (for example the Philips FQ1216M) supports multiple standards." - @${ECHO_CMD} "Use the following configuration screen (or 'make config') to choose your local TV channel system if you have such a tuner." - @${ECHO_CMD} "At this moment only the Philips FQ1216M is known to do this. If you don't have one, just ignore it. If you have one, select one (1) entry." - @sleep 5 - -.include <bsd.port.pre.mk> - -.if defined(WITH_USBROADCAST) -EXTRA_PATCHES= ${FILESDIR}/patchtuner-usbroadcast -.endif -.if defined(WITH_USCABLE) -EXTRA_PATCHES= ${FILESDIR}/patchtuner-uscable -.endif -.if defined(WITH_BGBROADCAST) -EXTRA_PATCHES= ${FILESDIR}/patchtuner-bgbroadcast -.endif -.if defined(WITH_BGCABLE) -EXTRA_PATCHES= ${FILESDIR}/patchtuner-bgcable -.endif -.if defined(WITH_BGAUSTRALIA) -EXTRA_PATCHES= ${FILESDIR}/patchtuner-bgaustralia -.endif -.if defined(WITH_IBROADCAST) -EXTRA_PATCHES= ${FILESDIR}/patchtuner-ibroadcast -.endif -.if defined(WITH_LBROADCAST) -EXTRA_PATCHES= ${FILESDIR}/patchtuner-lbroadcast -.endif - -.if ${OSVERSION} < 500000 -MODULESDIR= /modules -.else -MODULESDIR= /boot/kernel -.endif -PLIST_SUB= MODULESDIR=${MODULESDIR} - -.if !exists(${DISTDIR}/hcwPVRP2.sys) -IGNORE= You need the file hcwPVRP2.sys from the CD coming with the PVR-250/350 card. Please place this file in ${DISTDIR} and run make again. -.endif - -.if !exists(/usr/src/sys/dev/iicbus/iicbb.c) -IGNORE= You need the kernel sources installed to build this module. -.endif - -patch-iicbb: -.if ${OSVERSION} < 500000 - @if [ -z "`${GREP} cxm_iic /usr/src/sys/dev/iicbus/iicbb.c`" ]; then \ - ${PATCH} /usr/src/sys/dev/iicbus/iicbb.c ${WRKDIR}/dev/cxm/Patch.iicbb-fbsd4; \ - ${ECHO_CMD} "Patched /usr/src/sys/dev/iicbus/iicbb.c"; \ - else \ - ${ECHO_CMD} "/usr/src/sys/dev/iicbus/iicbb.c was already patched"; \ - fi -.else - @if [ -z "`${GREP} cxm_iic /usr/src/sys/dev/iicbus/iicbb.c`" ]; then \ - ${PATCH} /usr/src/sys/dev/iicbus/iicbb.c ${WRKDIR}/dev/cxm/Patch.iicbb-fbsd5; \ - ${ECHO_CMD} "Patched /usr/src/sys/dev/iicbus/iicbb.c"; \ - else \ - ${ECHO_CMD} "/usr/src/sys/dev/iicbus/iicbb.c was already patched"; \ - fi -.endif - -do-extract: - ${MKDIR} ${WRKDIR} - cd ${WRKDIR}; \ - ${SH} ${DISTDIR}/${CXMSHAR}; \ - ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/${PVRTOOLS}.tar.gz ${EXTRACT_AFTER_ARGS}; - -post-patch: -.if ${OSVERSION} > 500000 - ${REINPLACE_CMD} -e 's/bktr0/cxm0/' \ - ${WRKDIR}/${PVRTOOLS}/setchannel.c \ - ${WRKDIR}/${PVRTOOLS}/setsize.c -.endif - -do-configure: - cd ${WRKDIR}/dev/cxm; \ - ${CC} -Wall -o cxm_extract_fw cxm_extract_fw.c; \ - ./cxm_extract_fw ${DISTDIR}/hcwPVRP2.sys - -do-build: - cd ${WRKDIR}/modules/cxm; ${MAKE} - cd ${WRKDIR}/${PVRTOOLS}; ${MAKE} - -do-install: - ${INSTALL_DATA} ${WRKDIR}/modules/cxm/cxm/cxm.ko ${MODULESDIR} - ${INSTALL_DATA} ${WRKDIR}/modules/cxm/cxm_iic/cxm_iic.ko ${MODULESDIR} - ${INSTALL_MAN} ${WRKDIR}/${PVRTOOLS}/cxm.4 ${PREFIX}/man/man4/cxm.4 - ${INSTALL_PROGRAM} ${WRKDIR}/${PVRTOOLS}/setchannel ${PREFIX}/bin/pvr250-setchannel - ${INSTALL_PROGRAM} ${WRKDIR}/${PVRTOOLS}/setsize ${PREFIX}/bin/pvr250-setsize -.if ${OSVERSION} < 500000 - cd /dev; \ - ./MAKEDEV bktr0 -.endif - -post-install: - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/multimedia/pvrxxx/distinfo b/multimedia/pvrxxx/distinfo deleted file mode 100644 index 81cbb5cca4a0..000000000000 --- a/multimedia/pvrxxx/distinfo +++ /dev/null @@ -1,5 +0,0 @@ -MD5 (cxm-20041230.shar) = bf799b3559cb6fdb2dd8a81c88a19e78 -SIZE (cxm-20041230.shar) = 184990 -MD5 (pvr250-1.1.tar.gz) = 85fe46157fafead2ad7f4dd76bf192cc -SIZE (pvr250-1.1.tar.gz) = 2372 -MD5 (hcwPVRP2.sys) = IGNORE diff --git a/multimedia/pvrxxx/files/patch-modules::cxm::cxm::Makefile b/multimedia/pvrxxx/files/patch-modules::cxm::cxm::Makefile deleted file mode 100644 index b06e1e1445f7..000000000000 --- a/multimedia/pvrxxx/files/patch-modules::cxm::cxm::Makefile +++ /dev/null @@ -1,9 +0,0 @@ ---- modules/cxm/cxm/Makefile.orig Fri Oct 15 20:53:47 2004 -+++ modules/cxm/cxm/Makefile Fri Oct 15 20:55:03 2004 -@@ -3,5 +3,6 @@ - SRCS = cxm.c cxm.h cxm_dec_fw.c cxm_enc_fw.c cxm_audio.c cxm_eeprom.c \ - cxm_ir.c cxm_tuner.c cxm_video.c opt_cxm.h \ - bus_if.h device_if.h iicbb_if.h pci_if.h vnode_if.h -+CFLAGS+= -I../../.. - - .include <bsd.kmod.mk> diff --git a/multimedia/pvrxxx/files/patch-modules::cxm::cxm_iic::Makefile b/multimedia/pvrxxx/files/patch-modules::cxm::cxm_iic::Makefile deleted file mode 100644 index 8fd5589aa033..000000000000 --- a/multimedia/pvrxxx/files/patch-modules::cxm::cxm_iic::Makefile +++ /dev/null @@ -1,9 +0,0 @@ ---- modules/cxm/cxm_iic/Makefile.orig Fri Oct 15 20:55:23 2004 -+++ modules/cxm/cxm_iic/Makefile Fri Oct 15 20:55:43 2004 -@@ -2,5 +2,6 @@ - KMOD = cxm_iic - SRCS = cxm_i2c.c cxm.h \ - opt_cxm.h bus_if.h device_if.h iicbb_if.h pci_if.h -+CFLAGS += -I../../.. - - .include <bsd.kmod.mk> diff --git a/multimedia/pvrxxx/files/patchtuner-bgaustralia b/multimedia/pvrxxx/files/patchtuner-bgaustralia deleted file mode 100644 index ced226ac7e7d..000000000000 --- a/multimedia/pvrxxx/files/patchtuner-bgaustralia +++ /dev/null @@ -1,11 +0,0 @@ ---- dev/cxm/cxm_tuner.c.org Fri Oct 15 21:31:06 2004 -+++ dev/cxm/cxm_tuner.c Fri Oct 15 21:31:24 2004 -@@ -227,7 +227,7 @@ - { 48250, { 0x8e, 0xa0 } } }, - 0, 0, - { 0 }, -- { &l_air_channels, NULL } }, -+ { &bg_australia_channels, NULL } }, - { "Philips FI1236 MK2", - CXM_TUNER_TV_SYSTEM_MN, - { { 0 }, { 0 }, { 0 }, { 0 }, { 0 } }, diff --git a/multimedia/pvrxxx/files/patchtuner-bgbroadcast b/multimedia/pvrxxx/files/patchtuner-bgbroadcast deleted file mode 100644 index fe56272487bd..000000000000 --- a/multimedia/pvrxxx/files/patchtuner-bgbroadcast +++ /dev/null @@ -1,11 +0,0 @@ ---- dev/cxm/cxm_tuner.c.org Fri Oct 15 21:31:06 2004 -+++ dev/cxm/cxm_tuner.c Fri Oct 15 21:31:24 2004 -@@ -227,7 +227,7 @@ - { 48250, { 0x8e, 0xa0 } } }, - 0, 0, - { 0 }, -- { &l_air_channels, NULL } }, -+ { &bg_air_channels, NULL } }, - { "Philips FI1236 MK2", - CXM_TUNER_TV_SYSTEM_MN, - { { 0 }, { 0 }, { 0 }, { 0 }, { 0 } }, diff --git a/multimedia/pvrxxx/files/patchtuner-bgcable b/multimedia/pvrxxx/files/patchtuner-bgcable deleted file mode 100644 index 5bf66d8cc90f..000000000000 --- a/multimedia/pvrxxx/files/patchtuner-bgcable +++ /dev/null @@ -1,48 +0,0 @@ ---- dev/cxm/cxm_tuner.c.org Wed Jan 19 00:36:54 2005 -+++ dev/cxm/cxm_tuner.c Wed Jan 19 00:39:46 2005 -@@ -128,6 +128,27 @@ - }; - - static const struct cxm_tuner_channels -+bg_cable_channels = { -+ "B/G Cable", -+ CXM_TUNER_TV_SYSTEM_BG, -+ 1, -+ 120, -+ 38900, -+ { { 121, 38900, 0}, -+ { 100, 303250, 8000 }, -+ { 90, 231250, 7000 }, -+ { 80, 105250, 7000 }, -+ { 74, 69250, 7000 }, -+ { 21, 471250, 8000 }, -+ { 17, 183250, 9000 }, -+ { 16, 175250, 9000 }, -+ { 15, 82250, 8500 }, -+ { 13, 53750, 8500 }, -+ { 5, 175250, 7000 }, -+ { 2, 48250, 7000 } } -+}; -+ -+static const struct cxm_tuner_channels - bg_australia_channels = { - "B/G Australia", - CXM_TUNER_TV_SYSTEM_BG, -@@ -316,7 +337,7 @@ - { 48250, { 0x8e, 0xa0 } } }, - 0, 0, - { 0 }, -- { &bg_air_channels, NULL } }, -+ { &bg_cable_channels, NULL } }, - { "LG Innotek TPI8PSB01N", - { CXM_TUNER_TV_SYSTEM_BG, cxm_none_system_code_style }, - 48250, 855250, -@@ -325,7 +346,7 @@ - { 48250, { 0x8e, 0xa0 } } }, - 87500, 108000, - { 87500, { 0x88, 0xa5 } }, -- { &bg_air_channels, NULL } }, -+ { &bg_cable_channels, NULL } }, - { "LG Innotek TAPC-H701F", - { CXM_TUNER_TV_SYSTEM_MN, cxm_none_system_code_style }, - 55250, 801250, diff --git a/multimedia/pvrxxx/files/patchtuner-ibroadcast b/multimedia/pvrxxx/files/patchtuner-ibroadcast deleted file mode 100644 index a849446ea525..000000000000 --- a/multimedia/pvrxxx/files/patchtuner-ibroadcast +++ /dev/null @@ -1,11 +0,0 @@ ---- dev/cxm/cxm_tuner.c.org Fri Oct 15 21:31:06 2004 -+++ dev/cxm/cxm_tuner.c Fri Oct 15 21:31:24 2004 -@@ -227,7 +227,7 @@ - { 48250, { 0x8e, 0xa0 } } }, - 0, 0, - { 0 }, -- { &l_air_channels, NULL } }, -+ { &i_air_channels, NULL } }, - { "Philips FI1236 MK2", - CXM_TUNER_TV_SYSTEM_MN, - { { 0 }, { 0 }, { 0 }, { 0 }, { 0 } }, diff --git a/multimedia/pvrxxx/files/patchtuner-lbroadcast b/multimedia/pvrxxx/files/patchtuner-lbroadcast deleted file mode 100644 index 62481031b8ca..000000000000 --- a/multimedia/pvrxxx/files/patchtuner-lbroadcast +++ /dev/null @@ -1,11 +0,0 @@ ---- dev/cxm/cxm_tuner.c.org Fri Oct 15 21:31:06 2004 -+++ dev/cxm/cxm_tuner.c Fri Oct 15 21:31:24 2004 -@@ -227,7 +227,7 @@ - { 48250, { 0x8e, 0xa0 } } }, - 0, 0, - { 0 }, -- { &l_air_channels, NULL } }, -+ { &l_air_channels, NULL } }, - { "Philips FI1236 MK2", - CXM_TUNER_TV_SYSTEM_MN, - { { 0 }, { 0 }, { 0 }, { 0 }, { 0 } }, diff --git a/multimedia/pvrxxx/files/patchtuner-usbroadcast b/multimedia/pvrxxx/files/patchtuner-usbroadcast deleted file mode 100644 index 6ed81cd14d43..000000000000 --- a/multimedia/pvrxxx/files/patchtuner-usbroadcast +++ /dev/null @@ -1,11 +0,0 @@ ---- dev/cxm/cxm_tuner.c.org Fri Oct 15 21:31:06 2004 -+++ dev/cxm/cxm_tuner.c Fri Oct 15 21:31:24 2004 -@@ -227,7 +227,7 @@ - { 48250, { 0x8e, 0xa0 } } }, - 0, 0, - { 0 }, -- { &l_air_channels, NULL } }, -+ { &us_air_channels, NULL } }, - { "Philips FI1236 MK2", - CXM_TUNER_TV_SYSTEM_MN, - { { 0 }, { 0 }, { 0 }, { 0 }, { 0 } }, diff --git a/multimedia/pvrxxx/files/patchtuner-uscable b/multimedia/pvrxxx/files/patchtuner-uscable deleted file mode 100644 index 7efe23a85125..000000000000 --- a/multimedia/pvrxxx/files/patchtuner-uscable +++ /dev/null @@ -1,11 +0,0 @@ ---- dev/cxm/cxm_tuner.c.org Fri Oct 15 21:31:06 2004 -+++ dev/cxm/cxm_tuner.c Fri Oct 15 21:31:24 2004 -@@ -227,7 +227,7 @@ - { 48250, { 0x8e, 0xa0 } } }, - 0, 0, - { 0 }, -- { &l_air_channels, NULL } }, -+ { &us_cable_channels, NULL } }, - { "Philips FI1236 MK2", - CXM_TUNER_TV_SYSTEM_MN, - { { 0 }, { 0 }, { 0 }, { 0 }, { 0 } }, diff --git a/multimedia/pvrxxx/pkg-descr b/multimedia/pvrxxx/pkg-descr deleted file mode 100644 index 1ef392fc4994..000000000000 --- a/multimedia/pvrxxx/pkg-descr +++ /dev/null @@ -1,28 +0,0 @@ -This port contains: - -- Drivers for the Conexant MPEG-2 Codec driver which can be found - on the Hauppauge PVR-250/350 TV cards. - These drivers are (c) John Wehle <john@feith.com> - - On FreeBSD 4.x, the device used is /dev/bktr0. - On FreeBSD 5.x, the device used is /dev/cxm0 - - This driver has been successfully tested on: - - FreeBSD 4.10 - - FreeBSD 5.2.1 - -- Two simple programs to modify some ioctls on the card: set the - channel and set the window size. - -Note: - -- The configuration screen is only applicable for the the Philips - FQ1216M tuner. For other tuners ignore this section. Select just - one entry. - -- Note: the maintainer of this port has no inside knowledge of the - workings of this software. Please don't contact me about cards - which don't work. Please contact me about problems with the port, - with possible enhancements, with success stories. - -Author: John Wehle <john@feith.com> diff --git a/multimedia/pvrxxx/pkg-message b/multimedia/pvrxxx/pkg-message deleted file mode 100644 index 0400644bf911..000000000000 --- a/multimedia/pvrxxx/pkg-message +++ /dev/null @@ -1,29 +0,0 @@ -PVR-250/350 - Nearly done! - -If you haven't patched /usr/src/sys/dev/iicbus/iicbb.c yet, and -rebuild a new kernel, and rebooted, these are the following steps: - - - Run "make patch-iicbb". This will enable cxm to use the i2c bus. - - Add this to your kernel configuration file: - DEVICE iicbus - DEVICE iicbb - - Rebuild your kernel. - - Reboot. - -Next step is to load the drivers: - - Run "kldload cxm_iic" - - Run "kldload cxm" - -Check your console (or /var/log/messages if you're running X) and -you should see something like: - - cxm0: <Conexant iTVC15 MPEG Coder> mem ... irq ... at device ... on pci ... - cxm_iic0: <Conexant iTVC15 / iTVC16 I2C cnotroller> on cxm0 - iicbb0: <I2C bit-banging driver> on cxm_iic0 - cxm0: Philips FI1236M K2 Tuner - cxm0: SAA7115 rev 1 video decoder - cxm0: MSP3435G-B6 audio decoder - cxm0: IR Remote - -To test the card, either do "cat /dev/bktr0 > filename.mpg" (FreeBSD -4.x) or "cat /dev/cxm0 > filename.mpg" (FreeBSD 5.x). diff --git a/multimedia/pvrxxx/pkg-plist b/multimedia/pvrxxx/pkg-plist deleted file mode 100644 index d2d44efd56b2..000000000000 --- a/multimedia/pvrxxx/pkg-plist +++ /dev/null @@ -1,4 +0,0 @@ -@unexec rm %%MODULESDIR%%/cxm.ko -@unexec rm %%MODULESDIR%%/cxm_iic.ko -bin/pvr250-setchannel -bin/pvr250-setsize diff --git a/multimedia/py-gstreamer80/Makefile b/multimedia/py-gstreamer80/Makefile deleted file mode 100644 index 25fa069e2375..000000000000 --- a/multimedia/py-gstreamer80/Makefile +++ /dev/null @@ -1,56 +0,0 @@ -# New ports collection makefile for: gstreamer-python -# Date created: Fri Apr 9 16:24:13 CEST 2004 -# Whom: Koop Mast <kwm@rainbow-runner.nl> -# -# $FreeBSD$ -# - -PORTNAME= gstreamer -PORTVERSION= 0.8.1 -PORTREVISION= 1 -CATEGORIES= multimedia python gnome -MASTER_SITES= http://gstreamer.freedesktop.org/src/gst-python/ \ - ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR= kwm -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= gst-python-${PORTVERSION} - -MAINTAINER= kwm@FreeBSD.org -COMMENT= A set of Python bindings for gstreamer - -BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/libxml2mod.so:${PORTSDIR}/textproc/py-libxml2 -RUN_DEPENDS= ${PYTHON_SITELIBDIR}/libxml2mod.so:${PORTSDIR}/textproc/py-libxml2 - -.if !defined(NOPORTDOCS) -BUILD_DEPENDS+= xmlto:${PORTSDIR}/textproc/xmlto \ - lynx:${PORTSDIR}/www/lynx -.endif - -USE_PYTHON= yes -USE_GMAKE= yes -USE_GNOME= pygtk2 \ - gnomehack \ - pkgconfig -USE_GSTREAMER= yes -USE_LIBTOOL_VER=15 -USE_REINPLACE= yes -CONFIGURE_ENV= CPPFLAGS="-I${X11BASE}/include" \ - LDFLAGS="-L${X11BASE}" -DOCS= README.html README.txt - -.if !defined(NOPORTDOCS) -CONFIGURE_ARGS= --enable-docs -.else -CONFIGURE_ARGS= --disable-docs -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|DLFCN|dl|g' ${WRKSRC}/gst/__init__.py - -.if !defined(NOPORTDOCS) -post-install: - @${MKDIR} ${DOCSDIR} - @cd ${WRKSRC}/docs && ${INSTALL_DATA} ${DOCS} ${DOCSDIR} -.endif - -.include <bsd.port.mk> diff --git a/multimedia/py-gstreamer80/distinfo b/multimedia/py-gstreamer80/distinfo deleted file mode 100644 index 1f8af7f7cfe0..000000000000 --- a/multimedia/py-gstreamer80/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (gst-python-0.8.1.tar.gz) = 4666978d610b48f7f7481e41433a856c -SIZE (gst-python-0.8.1.tar.gz) = 395121 diff --git a/multimedia/py-gstreamer80/pkg-descr b/multimedia/py-gstreamer80/pkg-descr deleted file mode 100644 index ec5f4dcd7388..000000000000 --- a/multimedia/py-gstreamer80/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -gst-python provides a convenient wrapper for the GStreamer library for -use in Python programs, and takes care of many of the boring details -such as managing memory and type casting. - -Like the GTK library itself gst-python is licensed under the GNU LGPL, so is -suitable for use in both free software and proprietary applications. It -is already in use in many applications ranging from small single purpose -scripts up to large full features applications. - -WWW: http://gstreamer.freedesktop.org/ diff --git a/multimedia/py-gstreamer80/pkg-plist b/multimedia/py-gstreamer80/pkg-plist deleted file mode 100644 index 217a496386c4..000000000000 --- a/multimedia/py-gstreamer80/pkg-plist +++ /dev/null @@ -1,25 +0,0 @@ -%%PYTHON_SITELIBDIR%%/gst/__init__.py -%%PYTHON_SITELIBDIR%%/gst/__init__.pyc -%%PYTHON_SITELIBDIR%%/gst/__init__.pyo -%%PYTHON_SITELIBDIR%%/gst/_gst.so -%%PYTHON_SITELIBDIR%%/gst/interfaces.so -%%PYTHON_SITELIBDIR%%/gst/play.so -libdata/pkgconfig/gst-python-0.8.pc -%%PORTDOCS%%%%DOCSDIR%%/README.html -%%PORTDOCS%%%%DOCSDIR%%/README.txt -share/gst-python/2.0/defs/gst-types.defs -share/gst-python/examples/bps.py -share/gst-python/examples/cp.py -share/gst-python/examples/f2f.py -share/gst-python/examples/filesrc.py -share/gst-python/examples/gst123 -share/gst-python/examples/play.py -share/gst-python/examples/player.py -share/gst-python/examples/videoplayer.py -share/gst-python/examples/vorbisplay.py -@dirrm share/gst-python/examples -@dirrm share/gst-python/2.0/defs -@dirrm share/gst-python/2.0 -@dirrm share/gst-python -@dirrm %%DOCSDIR%% -@dirrm %%PYTHON_SITELIBDIR%%/gst diff --git a/multimedia/vic/Makefile b/multimedia/vic/Makefile deleted file mode 100644 index 06531c477491..000000000000 --- a/multimedia/vic/Makefile +++ /dev/null @@ -1,38 +0,0 @@ -# New ports collection makefile for: vic -# Date created: 14 December 1994 -# Whom: wollman -# -# $FreeBSD$ -# - -PORTNAME= vic -PORTVERSION= 2.8.1.1.6 -CATEGORIES= mbone tk84 ipv6 -MASTER_SITES= http://www-mice.cs.ucl.ac.uk/multimedia/software/vic/2.8ucl1.1.6/ -DISTNAME= ${PORTNAME}-2.8ucl1.1.6 - -MAINTAINER= mi@aldan.algebra.com -COMMENT= MBONE video tool - -LIB_DEPENDS= tk84:${PORTSDIR}/x11-toolkits/tk84 \ - uclmmbase:${PORTSDIR}/devel/uclmmbase - -USE_AUTOCONF_VER= 213 -USE_X_PREFIX= yes -CONFIGURE_ARGS= -x-libraries=${PREFIX}/lib \ - -x-includes=${PREFIX}/include \ - -without-ucltcl \ - -with-tcl=${LOCALBASE} \ - -without-ucltk \ - -with-tk=${LOCALBASE} \ - -enable-ipv6 -MAN1= vic.1 - -post-patch: - ${RM} ${WRKSRC}/md5* - -post-install: - ${STRIP_CMD} ${PREFIX}/bin/vic - ${STRIP_CMD} ${PREFIX}/bin/histtolut - -.include <bsd.port.mk> diff --git a/multimedia/vic/distinfo b/multimedia/vic/distinfo deleted file mode 100644 index c8e64b1e5c2b..000000000000 --- a/multimedia/vic/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (vic-2.8ucl1.1.6.tar.gz) = f2330ad98655ad43d489a023847645c0 -SIZE (vic-2.8ucl1.1.6.tar.gz) = 1119176 diff --git a/multimedia/vic/files/patch-Makefile.in b/multimedia/vic/files/patch-Makefile.in deleted file mode 100644 index 96d268d9b47b..000000000000 --- a/multimedia/vic/files/patch-Makefile.in +++ /dev/null @@ -1,55 +0,0 @@ ---- Makefile.in Wed Apr 30 07:50:17 2003 -+++ Makefile.in Tue Mar 22 13:18:58 2005 -@@ -59,5 +59,5 @@ - INCLUDE_TCL = @V_INCLUDE_TCL@ - INCLUDE_X11 = @V_INCLUDE_X11@ --INCLUDE_MISC = @V_INCLUDE@ -I. -Icodec/tmndec -Icodec/tmn-x -Icodec/h263 -Irtp -Irender -Inet -Ivideo -Icodec -I../common/src -+INCLUDE_MISC = @V_INCLUDE@ -I. -Icodec/tmndec -Icodec/tmn-x -Icodec/h263 -Irtp -Irender -Inet -Ivideo -Icodec -I${LOCALBASE}/include/uclmmbase - - STATIC = @V_STATIC@ -@@ -90,10 +90,10 @@ - OBJ_CRYPT = @V_OBJ_CRYPT@ - LIB = $(LIB_GRABBER) @V_LIB_TK@ @V_LIB_TCL@ @V_LIB_X11@ @V_LIB@ \ -- codec/tmndec/libh263.a codec/tmn-x/libh263coder.a ../common/src/libuclmmbase.a -lm -+ codec/tmndec/libh263.a codec/tmn-x/libh263coder.a -L${LOCALBASE}/lib -luclmmbase -lm - INCLUDE = $(INCLUDE_MISC) $(INCLUDE_GRABBER) $(INCLUDE_TK) $(INCLUDE_TCL) \ - $(INCLUDE_X11) $(MD_INC) -Icodec/jpeg -Icodec/p64 -I. - DEFINE = @V_DEFINE@ -DED_YBITS=$(ED_YBITS) -DSIGRET=@V_SIGRET@ -DNLAYER=8 - BFLAGS = $(DEFINE) $(INCLUDE) --CFLAGS = $(CCOPT) $(BFLAGS) -+CFLAGS += $(BFLAGS) - - # -@@ -123,5 +123,5 @@ - - # .c objects --OBJ1 = net/inet.o net/inet6.o codec/cellb_tables.o tkStripchart.o md5c.o random.o \ -+OBJ1 = net/inet.o net/inet6.o codec/cellb_tables.o tkStripchart.o \ - $(H263_OBJS) - # session-rtpv1.o session-nv.o session-ivs.o # Not supported anymore -@@ -330,13 +330,7 @@ - - install: force -- cp vic @prefix@/bin/vic -- chown bin @prefix@/bin/vic -- chgrp bin @prefix@/bin/vic -- chmod 555 @prefix@/bin/vic -- cp vic.1 @prefix@/man/vic.1 -- cp histtolut @prefix@/bin/histtolut -- chown bin @prefix@/bin/histtolut -- chgrp bin @prefix@/bin/histtolut -- chmod 555 @prefix@/bin/histtolut -+ ${BSD_INSTALL_PROGRAM} vic @prefix@/bin/vic -+ ${BSD_INSTALL_MAN} vic.1 @prefix@/man/man1/vic.1 -+ ${BSD_INSTALL_PROGRAM} histtolut @prefix@/bin/histtolut - - clean: -@@ -411,6 +405,6 @@ - - codec/tmn-x/libh263coder.a: -- (cd codec/tmn-x; $(MAKE) CC=$(CC) CCOPT="$(CCOPT)" ) -+ (cd codec/tmn-x; $(MAKE) CC=$(CC) CCOPT="$(CFLAGS)" ) - - codec/tmndec/libh263.a: -- (cd codec/tmndec; $(MAKE) CC=$(CC) CCOPT="$(CCOPT)" -f Makefile.lib) -+ (cd codec/tmndec; $(MAKE) CC=$(CC) CCOPT="$(CFLAGS)" -f Makefile.lib) diff --git a/multimedia/vic/files/patch-Tcl.cpp b/multimedia/vic/files/patch-Tcl.cpp deleted file mode 100644 index cf26626a5499..000000000000 --- a/multimedia/vic/files/patch-Tcl.cpp +++ /dev/null @@ -1,19 +0,0 @@ ---- Tcl.cpp Thu Sep 9 08:21:53 1999 -+++ Tcl.cpp Thu Sep 23 18:59:59 2004 -@@ -66,6 +66,7 @@ - { - instance_.tcl_ = tcl; - instance_.application_ = application; -+ Tcl_Init(tcl); - } - - void Tcl::evalc(const char* s) -@@ -214,7 +215,7 @@ - } - } - --int TclObject::callback(ClientData cd, Tcl_Interp*, int ac, char** av) -+int TclObject::callback(ClientData cd, Tcl_Interp*, int ac, const char** av) - { - TclObject* tc = (TclObject*)cd; - return (tc->command(ac, (const char*const*)av)); diff --git a/multimedia/vic/files/patch-config b/multimedia/vic/files/patch-config deleted file mode 100644 index dd572f7a85c8..000000000000 --- a/multimedia/vic/files/patch-config +++ /dev/null @@ -1,25 +0,0 @@ ---- config.h Thu Apr 10 13:57:28 2003 -+++ config.h Thu Sep 23 18:37:11 2004 -@@ -38,11 +38,6 @@ - - #if defined(sgi) || defined(__bsdi__) || defined(__FreeBSD__) - #include <sys/types.h> --#ifndef uint16_t --typedef unsigned char uint8_t; --typedef unsigned short uint16_t; --typedef unsigned int uint32_t; --#endif - #elif defined(sun) - - #include <sys/types.h> -@@ -91,10 +86,6 @@ - #include "debug.h" - #include <stdlib.h> - #include <time.h> /* For clock_t */ -- --#ifdef HAVE_MALLOC_H --#include <malloc.h> --#endif /* HAVE_MALLOC_H */ - - #if defined(NEED_SUNOS_PROTOS) - #if defined(__cplusplus) diff --git a/multimedia/vic/files/patch-configure.in b/multimedia/vic/files/patch-configure.in deleted file mode 100644 index a603fa09b660..000000000000 --- a/multimedia/vic/files/patch-configure.in +++ /dev/null @@ -1,20 +0,0 @@ ---- configure.in.org Mon May 7 15:30:01 2001 -+++ configure.in Mon May 7 15:31:32 2001 -@@ -72,8 +72,7 @@ - if test -r /usr/include/linux/videodev.h ; then - V_OBJ_GRABBER="video/grabber-video4linux.o $V_OBJ_GRABBER" - fi --#if test -r /usr/local/lib/libspigot.a -a ${PORTOBJFORMAT} != elf; then --if test -r /usr/local/lib/libspigot.a ; then -+if test -r /usr/local/lib/libspigot.a -a ${PORTOBJFORMAT} != elf; then - V_OBJ_GRABBER="video/grabber-spigot.o $V_OBJ_GRABBER" - V_LIB_GRABBER="$V_LIB_GRABBER -lspigot" - V_INCLUDE_GRABBER="$V_INCLUDE_GRABBER -I/usr/local/include" -@@ -249,6 +248,7 @@ - else - V_DEFINE="$V_DEFINE -DFreeBSD" - fi -+ V_DEFINE="$V_DEFINE -DSIGARGS=int" - OPSYS=freebsd - ;; - *-*-hpux*) diff --git a/multimedia/vic/files/patch-configure.in.tail b/multimedia/vic/files/patch-configure.in.tail deleted file mode 100644 index 44ab63487ae9..000000000000 --- a/multimedia/vic/files/patch-configure.in.tail +++ /dev/null @@ -1,15 +0,0 @@ ---- configure.in.tail.orig Fri Jan 31 09:09:33 2003 -+++ configure.in.tail Fri Jan 31 09:09:47 2003 -@@ -35,9 +35,9 @@ - - AC_SUBST(V_STATIC) - --if test "$host_cpu" = alpha ; then -- V_DEFINE="$V_DEFINE -DINT_64=u_long" --fi -+#if test "$host_cpu" = alpha ; then -+# V_DEFINE="$V_DEFINE -DINT_64=u_long" -+#fi - - # various include hacks - dirs="/usr/src/local/include-fixes \ diff --git a/multimedia/vic/files/patch-configure.in.tk b/multimedia/vic/files/patch-configure.in.tk deleted file mode 100644 index d4fdc8a8a3da..000000000000 --- a/multimedia/vic/files/patch-configure.in.tk +++ /dev/null @@ -1,56 +0,0 @@ ---- configure.in.tk.org Tue May 8 08:42:54 2001 -+++ configure.in.tk Tue May 8 08:56:43 2001 -@@ -32,13 +32,13 @@ - echo "'$d' is not a directory" - exit 1 - fi -- V_INCLUDE_TCL=-I$d/include -- if test ! -r $d/include/tcl.h ; then -+ V_INCLUDE_TCL=-I$d/include/tcl8.4/ -+ if test ! -r $d/include/tcl8.4/tcl.h ; then - echo "can't find tcl.h in $d/include" - exit 1 - fi -- places="$d/lib/libtcl8.0.so \ -- $d/lib/libtcl8.0.a \ -+ places="$d/lib/libtcl84.so \ -+ $d/lib/libtcl84.a \ - $d/lib/libtcl.so \ - $d/lib/libtcl.a" - V_LIB_TCL=FAIL -@@ -52,7 +52,7 @@ - echo "can't find libtcl.a in $d/lib" - exit 1 - fi -- places="$d/lib/tcl-8.0 \ -+ places="$d/lib/tcl8.4 \ - $d/lib/tcl8.0 \ - $d/lib/tcl" - V_LIBRARY_TCL=FAIL -@@ -190,13 +190,13 @@ - echo "'$d' is not a directory" - exit 1 - fi -- V_INCLUDE_TK=-I$d/include -- if test ! -r $d/include/tk.h ; then -+ V_INCLUDE_TK=-I$d/include/tk8.4 -+ if test ! -r $d/include/tk8.4/tk.h ; then - echo "can't find tk.h in $d/include" - exit 1 - fi -- places="$d/lib/libtk8.0.so \ -- $d/lib/libtk8.0.a \ -+ places="$d/lib/libtk84.so \ -+ $d/lib/libtk84.a \ - $d/lib/libtk.so \ - $d/lib/libtk.a" - V_LIB_TK=FAIL -@@ -210,7 +210,7 @@ - echo "can't find libtk.a in $d/lib" - exit 1 - fi -- places="$d/lib/tk8.0 \ -+ places="$d/lib/tk8.4 \ - $d/lib/tk" - V_LIBRARY_TK=FAIL - for dir in $places; do diff --git a/multimedia/vic/files/patch-const b/multimedia/vic/files/patch-const deleted file mode 100644 index de01fd3898ca..000000000000 --- a/multimedia/vic/files/patch-const +++ /dev/null @@ -1,101 +0,0 @@ ---- tkStripchart.c.orig Mon Jun 29 15:17:00 1998 -+++ tkStripchart.c Tue Mar 22 13:02:03 2005 -@@ -329,7 +329,7 @@ - */ - static void Callback(Stripchart* StripchartPtr); --static void ComputeStripchartGeometry(Stripchart* StripchartPtr); -+static void ComputeStripchartGeometry(const Stripchart* StripchartPtr); - static int ConfigureStripchart(Tcl_Interp* interp, Stripchart* StripchartPtr, -- int argc, char** argv, int flags); -+ int argc, const char** argv, int flags); - static void DestroyStripchart(char* clientData); - static void DisplayStripchart(ClientData clientData); -@@ -337,9 +337,9 @@ - static void EventuallyRedrawStripchart(Stripchart* StripchartPtr, - int displaybits); --static void ReplaceColours(Stripchart* StripchartPtr, int argc, char** argv); -+static void ReplaceColours(Stripchart* StripchartPtr, int argc, const char** argv); - static void ScrollStrips(Stripchart* StripchartPtr); - static void StripchartEventProc(ClientData clientData, XEvent* eventPtr); - static int StripchartWidgetCmd(ClientData clientData, Tcl_Interp* interp, -- int argc, char** argv); -+ int argc, const char** argv); - static void SetStripchartValue(Stripchart* StripchartPtr, double value); - static void SwapColours(Stripchart* StripchartPtr); -@@ -364,5 +364,5 @@ - int - Tk_StripchartCmd(ClientData clientData, Tcl_Interp *interp, int argc, -- char **argv) -+ const char **argv) - { - Tk_Window tkwin = (Tk_Window) clientData; -@@ -419,5 +419,5 @@ - static int - StripchartWidgetCmd(ClientData clientData, Tcl_Interp *interp, -- int argc, char **argv) -+ int argc, const char **argv) - { - register Stripchart *StripchartPtr = (Stripchart*)clientData; -@@ -629,5 +629,5 @@ - static int - ConfigureStripchart(Tcl_Interp *interp, Stripchart *StripchartPtr, -- int argc, char** argv, int flags) -+ int argc, const char** argv, int flags) - { - XGCValues gcValues; -@@ -699,5 +699,5 @@ - */ - static void --ComputeStripchartGeometry(Stripchart* StripchartPtr) -+ComputeStripchartGeometry(const Stripchart* StripchartPtr) - { - int tt = hasatitle(StripchartPtr); -@@ -1040,5 +1040,5 @@ - */ - static void --ReplaceColours(Stripchart* StripchartPtr, int argc, char** argv) -+ReplaceColours(Stripchart* StripchartPtr, int argc, const char** argv) - { - StripchartPtr->altborder = ---- vic_tcl.h Thu Sep 9 08:05:49 1999 -+++ vic_tcl.h Thu Sep 23 19:00:33 2004 -@@ -74,6 +77,6 @@ - error(file); - } -- inline char* var(const char* varname, int flags = TCL_GLOBAL_ONLY) { -- return (Tcl_GetVar(tcl_, (char*)varname, flags)); -+ inline CONST char* var(const char* varname, int flags = TCL_GLOBAL_ONLY) { -+ return (Tcl_GetVar(tcl_, varname, flags)); - } - /* -@@ -125,5 +128,5 @@ - void class_name(const char*); - /* make this public for Sun's compiler */ -- static int callback(ClientData, Tcl_Interp*, int ac, char** av); -+ static int callback(ClientData, Tcl_Interp*, int ac, CONST char** av); - static void reset_all(); - protected: ---- rate-variable.cpp Thu Sep 9 08:21:55 1999 -+++ rate-variable.cpp Thu Sep 23 18:55:10 2004 -@@ -62,11 +62,11 @@ - RateVariable(const char* name) : TclObject(name) { } - protected: -- static char* update_rate_var(ClientData, Tcl_Interp*, char* name1, -- char* name2, int flags); -+ static char* update_rate_var(ClientData, Tcl_Interp*, const char* name1, -+ const char* name2, int flags); - int command(int argc, const char*const* argv); - } rate_variable_cmd("rate_variable"); - - char* RateVariable::update_rate_var(ClientData clientData, Tcl_Interp* tcl, -- char* name1, char* name2, int flags) -+ const char* name1, const char* name2, int flags) - { - rv_data* rv = (rv_data*)clientData; -@@ -81,5 +81,5 @@ - char res[128]; - flags &= TCL_GLOBAL_ONLY; -- char* cv = Tcl_GetVar2(tcl, name1, name2, flags); -+ const char* cv = Tcl_GetVar2(tcl, name1, name2, flags); - if (cv == NULL) - return (tcl->result); diff --git a/multimedia/vic/files/patch-defs b/multimedia/vic/files/patch-defs deleted file mode 100644 index 2215cae8a4f1..000000000000 --- a/multimedia/vic/files/patch-defs +++ /dev/null @@ -1,16 +0,0 @@ ---- codec/h263/Motion.h Thu Sep 9 08:45:55 1999 -+++ codec/h263/Motion.h Tue Mar 22 14:04:18 2005 -@@ -42,4 +42,5 @@ - } MVector; - /***********************************************************CommentEnd********/ -+MVector *AllocMVector(void); - - #endif /* _MOTION_STRUCTS_H_ */ ---- codec/h263/code.h Thu Sep 9 08:45:58 1999 -+++ codec/h263/code.h Tue Mar 22 14:06:24 2005 -@@ -167,4 +167,4 @@ - /***********************************************************CommentEnd********/ - -- -+Code *InitCode(char *title, int size, int eventDim, int *event, char *cw[]); - #endif /* _CODE_H */ diff --git a/multimedia/vic/files/patch-histtolut.cpp b/multimedia/vic/files/patch-histtolut.cpp deleted file mode 100644 index c47168d31e64..000000000000 --- a/multimedia/vic/files/patch-histtolut.cpp +++ /dev/null @@ -1,73 +0,0 @@ ---- render/histtolut/histtolut.cpp.orig Thu Jan 23 18:13:08 2003 -+++ render/histtolut/histtolut.cpp Thu Jan 23 18:15:11 2003 -@@ -62,6 +62,7 @@ - #endif - #include <sys/stat.h> - #include <fcntl.h> -+#include <cstring> - - #ifdef WIN32 - extern "C" { -@@ -142,7 +143,7 @@ - * For further details see "Introduction to Algorithms" by Carmen, - * Lieserson and Rivest. - */ --//extern void *memset(void *, int, size_t); -+//extern void *std::memset(void *, int, size_t); - - /* XXX should pass backup array in as argument, that way can create it - only once. */ -@@ -154,7 +155,7 @@ - \ - register histItem** hist = &h[idx]; \ - int j; \ -- memset((void *)aux, 0, 256 * sizeof(int)); \ -+ std::memset((void *)aux, 0, 256 * sizeof(int)); \ - for (j = 0; j < n; j++) \ - aux[hist[j]->c.fld]++; \ - \ -@@ -199,7 +200,7 @@ - box* bv = new box[sizeof(box) * newcolors]; - - register u_char* colormap = cmap; -- memset(colormap, 0, 3 * newcolors); -+ std::memset(colormap, 0, 3 * newcolors); - - /* Set up the initial box. */ - bv[0].ind = 0; -@@ -450,7 +451,7 @@ - box* bv = new box[sizeof(box) * newcolors]; - - register u_char* colormap = cmap; -- memset(colormap, 0, 3 * newcolors); -+ std::memset(colormap, 0, 3 * newcolors); - - /* Set up the initial box. */ - bv[0].ind = 0; -@@ -639,7 +640,7 @@ - abort(); - - int ncol[MAX_YLEVELS]; -- memset(ncol, 0, sizeof(ncol)); -+ std::memset(ncol, 0, sizeof(ncol)); - /* - * We do this in two passes so that the size of the table can be - * calculated. Otherwise it would be have to be too big: -@@ -657,7 +658,7 @@ - table[i] = new histItem[ncol[i]]; - - i = 0; -- memset(ncol, 0, sizeof(ncol)); -+ std::memset(ncol, 0, sizeof(ncol)); - for (v = 0; v < 1 << 5; ++v) { - for (int u = 0; u < 1 << 5; ++u) { - for (int y = 0; y < 1 << 4; ++y) { -@@ -688,7 +689,7 @@ - } - - histItem** histogram[MAX_YLEVELS]; -- memset(histogram, 0, sizeof(histogram)); -+ std::memset(histogram, 0, sizeof(histogram)); - int totcol = 0; - for (i = 0; i < ny; ++i) { - if (ncol[i] != 0) { diff --git a/multimedia/vic/files/patch-inet6.h b/multimedia/vic/files/patch-inet6.h deleted file mode 100644 index ed330bfa8b04..000000000000 --- a/multimedia/vic/files/patch-inet6.h +++ /dev/null @@ -1,34 +0,0 @@ ---- net/inet6.h.org Mon Feb 4 17:51:39 2002 -+++ net/inet6.h Mon Feb 4 17:52:02 2002 -@@ -44,7 +44,6 @@ - #define vic_inet6_h - - #ifdef HAVE_IPV6 -- - #include <sys/types.h> - #ifdef WIN32 - //#include <winsock.h> -@@ -62,10 +61,23 @@ - } - #else - #include <netinet/in.h> -+#include <netinet6/in6.h> - #endif - #endif - #ifndef WIN32 - #include <arpa/inet.h> -+#ifdef _NETINET6_IN6_H_ -+#ifndef IPV6_ADD_MEMBERSHIP -+#ifdef IPV6_JOIN_GROUP -+#define IPV6_ADD_MEMBERSHIP IPV6_JOIN_GROUP -+#endif /* IPV6_JOIN_GROUP */ -+#endif /* IPV6_ADD_MEMBERSHIP */ -+#ifndef IPV6_DROP_MEMBERSHIP -+#ifdef IPV6_LEAVE_GROUP -+#define IPV6_DROP_MEMBERSHIP IPV6_LEAVE_GROUP -+#endif /* IPV6_LEAVE_GROUP */ -+#endif /* IPV6_DROP_MEMBERSHIP */ -+#endif /* _NETINET6_IN6_H_ */ - #endif - - #include "config.h" diff --git a/multimedia/vic/files/patch-main b/multimedia/vic/files/patch-main deleted file mode 100644 index 7a217d731fd3..000000000000 --- a/multimedia/vic/files/patch-main +++ /dev/null @@ -1,53 +0,0 @@ ---- main.cpp Tue Feb 25 12:55:08 2003 -+++ main.cpp Tue Mar 22 12:37:51 2005 -@@ -363,36 +363,4 @@ - #endif - --/* -- * From the RTP spec. -- */ --u_int32_t --heuristic_random() --{ -- struct { -- struct timeval tv; -- clock_t cpu; -- pid_t pid; -- u_long hid; -- uid_t uid; -- gid_t gid; -- struct utsname name; -- } s; -- -- gettimeofday(&s.tv, 0); -- uname(&s.name); -- s.cpu = clock(); -- s.pid = getpid(); -- s.hid = gethostid(); -- s.uid = getuid(); -- s.gid = getgid(); -- -- MD5_CTX context; -- MD5Init(&context); -- MD5Update(&context, (u_char*)&s, sizeof(s)); -- u_int32_t out[4]; -- MD5Final((u_char *)out, &context); -- return (out[0] ^ out[1] ^ out[2] ^ out[3]); --} -- - void loadbitmaps(Tcl_Interp* tcl) - { -@@ -407,5 +375,5 @@ - } - --extern "C" int Tk_StripchartCmd(ClientData, Tcl_Interp*, int ac, char** av); -+extern "C" int Tk_StripchartCmd(ClientData, Tcl_Interp*, int ac, const char** av); - #ifdef WIN32 - extern "C" int WinPutsCmd(ClientData, Tcl_Interp*, int ac, char** av); -@@ -433,5 +401,5 @@ - main(int argc, const char** argv) - { -- srandom(heuristic_random()); -+ srandomdev(); - - #ifdef SIGHUP diff --git a/multimedia/vic/files/patch-mbus_handler b/multimedia/vic/files/patch-mbus_handler deleted file mode 100644 index 8237fee3b279..000000000000 --- a/multimedia/vic/files/patch-mbus_handler +++ /dev/null @@ -1,9 +0,0 @@ ---- net/mbus_handler.h Thu Mar 16 08:21:37 2000 -+++ net/mbus_handler.h Thu Sep 23 21:31:33 2004 -@@ -50,6 +50,4 @@ - #include "memory.h" - #include "mbus.h" --#include "mbus_config.h" -- - - #ifdef WIN32 diff --git a/multimedia/vic/files/patch-md5 b/multimedia/vic/files/patch-md5 deleted file mode 100644 index ba52895aa139..000000000000 --- a/multimedia/vic/files/patch-md5 +++ /dev/null @@ -1,21 +0,0 @@ ---- net/crypt.cpp Thu Sep 9 08:48:51 1999 -+++ net/crypt.cpp Tue Mar 22 13:08:25 2005 -@@ -42,5 +42,5 @@ - #define PROTOTYPES 1 - #include "global.h" --#include "md5.h" -+#include <openssl/md5.h> - - Crypt::Crypt() : badpktlen_(0), badpbit_(0) -@@ -70,8 +70,8 @@ - { - MD5_CTX context; -- MD5Init(&context); -- MD5Update(&context, (u_char*)key, strlen(key)); -+ MD5_Init(&context); -+ MD5_Update(&context, (u_char*)key, strlen(key)); - u_char hash[16]; -- MD5Final((u_char *)hash, &context); -+ MD5_Final((u_char *)hash, &context); - return (install_key(hash)); - } diff --git a/multimedia/vic/files/patch-net-ipv6.cpp b/multimedia/vic/files/patch-net-ipv6.cpp deleted file mode 100644 index 4e8812eff9ff..000000000000 --- a/multimedia/vic/files/patch-net-ipv6.cpp +++ /dev/null @@ -1,10 +0,0 @@ ---- net/net-ipv6.cpp Thu Apr 24 10:53:26 2003 -+++ net/net-ipv6.cpp Thu Sep 23 19:08:53 2004 -@@ -59,7 +59,6 @@ - #include "config.h" - #include "net.h" - #include "vic_tcl.h" --#include "inet_ntop.h" - - #include "inet6.h" - #include "net-addr.h" diff --git a/multimedia/vic/files/patch-nomalloc_h b/multimedia/vic/files/patch-nomalloc_h deleted file mode 100644 index 0d7613d84587..000000000000 --- a/multimedia/vic/files/patch-nomalloc_h +++ /dev/null @@ -1,8 +0,0 @@ ---- codec/h263/Util.h Thu Sep 9 08:45:56 1999 -+++ codec/h263/Util.h Thu Sep 23 18:31:34 2004 -@@ -7,5 +7,4 @@ - #define _UTIL_ - --#include <malloc.h> - #include "error.h" - #include <stdlib.h> diff --git a/multimedia/vic/files/patch-renderer-window b/multimedia/vic/files/patch-renderer-window deleted file mode 100644 index 8e940d34f0b4..000000000000 --- a/multimedia/vic/files/patch-renderer-window +++ /dev/null @@ -1,14 +0,0 @@ ---- render/renderer-window.h Thu Sep 9 08:38:16 1999 -+++ render/renderer-window.h Thu Sep 23 21:43:13 2004 -@@ -54,10 +54,10 @@ - int minx, int maxx) const; - void sync() const; - void resize(int w, int h); -- protected: - /*XXX*/ - void dither_null(const u_char* frm, u_int off, u_int x, - u_int width, u_int height) const; -+ protected: - virtual void setcolor(int c); - void compute_scale(int w, int h); - virtual void alloc_image() = 0; diff --git a/multimedia/vic/files/patch-ui-ctrlmenu.tcl b/multimedia/vic/files/patch-ui-ctrlmenu.tcl deleted file mode 100644 index d8a3514fe595..000000000000 --- a/multimedia/vic/files/patch-ui-ctrlmenu.tcl +++ /dev/null @@ -1,25 +0,0 @@ ---- tcl/ui-ctrlmenu.tcl.org Thu May 10 08:44:51 2001 -+++ tcl/ui-ctrlmenu.tcl Thu May 10 08:48:19 2001 -@@ -408,16 +408,16 @@ - -relief raised -command transmit \ - -anchor w -variable transmitButtonState -font $f \ - -state disabled -highlightthickness 0 --# checkbutton $w.freeze -text "Freeze" \ --# -relief raised -command "grabber freeze \$freeze" \ --# -anchor w -variable freeze -font $f \ --# -highlightthickness 0 -+ checkbutton $w.freeze -text "Freeze" \ -+ -relief raised -command "grabber freeze \$freeze" \ -+ -anchor w -variable freeze -font $f \ -+ -highlightthickness 0 - button $w.release -text "Release" \ - -relief raised -command release_device \ - -font $f -highlightthickness 0 - --# pack $w.send $w.release $w.freeze -fill both -- pack $w.send $w.release -fill both -+ pack $w.send $w.release $w.freeze -fill both -+# pack $w.send $w.release -fill both - } - - proc doNothing { args } { diff --git a/multimedia/vic/files/patch-ui-resource.tcl b/multimedia/vic/files/patch-ui-resource.tcl deleted file mode 100644 index b1134d6f5e76..000000000000 --- a/multimedia/vic/files/patch-ui-resource.tcl +++ /dev/null @@ -1,11 +0,0 @@ ---- tcl/ui-resource.tcl.org Mon May 7 16:17:03 2001 -+++ tcl/ui-resource.tcl Mon May 7 16:17:29 2001 -@@ -153,7 +153,7 @@ - option add Vic.infoHighlightColor LightYellow2 startupFile - option add Vic.useJPEGforH261 false startupFile - option add Vic.useHardwareComp false startupFile -- option add Vic.stillGrabber false startupFile -+ option add Vic.stillGrabber true startupFile ; # XXX was false - option add Vic.siteDropTime "300" startupFile - option add Vic.quality "0" startupFile - diff --git a/multimedia/vic/pkg-descr b/multimedia/vic/pkg-descr deleted file mode 100644 index 720c00f6188e..000000000000 --- a/multimedia/vic/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -This package contains the binary release of LBL's `vic' network video -conferencing tool. - -WWW: http://www-mice.cs.ucl.ac.uk/multimedia/software/vic/ diff --git a/multimedia/vic/pkg-plist b/multimedia/vic/pkg-plist deleted file mode 100644 index 3ae0decf49cb..000000000000 --- a/multimedia/vic/pkg-plist +++ /dev/null @@ -1,2 +0,0 @@ -bin/vic -bin/histtolut diff --git a/multimedia/vlc-devel/Makefile b/multimedia/vlc-devel/Makefile deleted file mode 100644 index 968f3b7de0bb..000000000000 --- a/multimedia/vlc-devel/Makefile +++ /dev/null @@ -1,763 +0,0 @@ -# New ports collection makefile for: vlc -# Date created: 3rd August 2001 -# Whom: Brian Somers <brian@FreeBSD.org> -# -# $FreeBSD$ -# -# NOTES about VLC Knobs: -# Below you will see a number of knobs, if it starts with WITHOUT_ it is -# enabled by default, if it starts with WITH_ it is disabled by default -# and will be autodetected to enable -# -# If you define for example WITH_FAAD and WITHOUT_FAAD -# the WITHOUT_ will always over ride the WITH_. -# -# Interface Knobs: -# -# WITHOUT_HTTPD=yes -# Web interface to control streaming media -# * recommended if you want to stream media -# -# WITH_NCURSES=yes -# Ncurses (console) interface -# -# WITH_SKINS -# This Interface supports a skinned gtk2.0 interface -# Skins can be found at http://www.videolan.org/vlc/download-skins.html -# -# WITHOUT_WXWINDOWS=yes -# WxWindows/Gtk 2.x Interface -# This is the default and most supported -# x11 interface -# -# Audio Knobs: -# -# WITH_ARTS=yes -# Arts Support -# -# WITHOUT_DTS=yes -# DTS decoder Support -# useful for many dvds -# -# WITH_ESOUND=yes -# Esound Support -# -# WITH_FAAC=yes -# Faac audio encoder (mp4/aac) Support -# -# WITHOUT_FAAD=yes -# Faad audio decoder (mp4/aac) Support -# -# WITHOUT_FLAC=yes -# Flac Support -# -# WITH_LAME=yes -# Mp3 encoder Support -# -# WITHOUT_LIBA52=yes -# liba52 audio Support -# -# WITH_LIBTREMOR -# Interger-only Ogg Vorbis decoder -# !!experimental!! -# -# WITHOUT_MAD=yes -# Mad mp3 audio decoder Support -# -# WITH_SPEEX=yes -# Speex voice codec Support -# Note: you need audio/speex-devel -# -# WITH_TOOLAME=yes -# Toolame Support -# -# WITHOUT_VORBIS=yes -# Ogg/Vorbis Support -# -# Graphics Knobs: -# -# WITH_AALIB=yes -# Console Graphics Support -# -# WITH_FRIBIDI=yes -# -# WITH_GGI=yes -# -# WITH_LIBCACA=yes -# Console Graphics Support (implies WITH_AALIB) -# -# WITHOUT_SDL=yes -# SDL video output -# -# WITH_SVG=yes -# -# WITH_SVGALIB=yes -# SVGAlib video output -# -# WITH_XOSD=yes -# -# Multimedia Knbos: -# -# WITH_H264 -# Enable H.264/AVC Video Support -# -# WITHOUT_LIBMATROSKA=yes -# Matroska Container Format Support -# -# WITHOUT_LIBMPEG2=yes -# -# WITH_LIBTHEORA=yes -# -# WITHOUT_TRANSCODE=yes -# Disable transcode of multimedia via transcode (multimedia/transcode). -# This option allows you to convert a media file, dvd, A/V stream, etc -# in to another format. This also allows you to transcode multimedia -# on-the-fly and stream to a network and/or local playback. -# -# Other Knobs: -# -# DEBUG=yes -# Enable debuging support -# -# WITHOUT_CDROM=yes -# Disable cddb and vcd support -# and other cdrom support -# -# WITHOUT_DVBPSI=yes -# TS MUX and DEMUX support -# -# WITHOUT_DVD=yes -# Disable all dvd support -# -# WITHOUT_LIVEMEDIA=yes -# Support for rstp/rtp/sdp protocols -# Only versions 2004.11.11 and higher are supported. -# * recommended if you want to stream media. -# -# WITH_MOZILLA_PLUGIN= [mozilla|mozilla-devel|firefox] -# Enable A mozilla plugin for VLC -# See http://www.videolan.org/doc/vlc-user-guide/en/ch07.html#id2529837 -# for more info on using this plugin. -# defaults to www/mozilla -# -# WITH_OPENGL=yes -# Enable OpenGL visual plugin (not playback, play back is default with X11) -# -# WITH_SSL=yes -# Enable TLS/SSL Support for web (httpd) interface -# -# WITHOUT_SLP=yes -# Disable SLP service discovery support -# * recommended if you want to stream media -# -# WITH_OPTIMIZED_CFLAGS=yes -# Compile with -O2 -ffast-math -fomit-frame-pointer -# -# WITH_DVD_DEVICE=/dev/somedevice -# default 5.x and above: /dev/acd0 -# default 4.x and below: /dev/acd0c -# This option changes the default dvd device -# -# WITH_CDROM_DEVICE=/dev/somedevice -# default 5.x and above: /dev/acd0 -# default 4.x and below: /dev/acd0c -# This option changes the default cdrom device -# -# WITHOUT_NLS=yes -# Disable Languarge Support -# -# WITH_VLC_DEFAULT_FONT=/path/to/font -# default: ${X11BASE}/lib/X11/fonts/bitstream-vera/Vera.ttf -# This option lets you change the default font for subtitles -# -# NOPORTDOCS=yes -# Do not install Vlc's Documents -# - -PORTNAME= vlc -PORTVERSION= 0.8.1 -PORTREVISION= 9 -CATEGORIES= multimedia audio ipv6 net www -MASTER_SITES= http://download.videolan.org/pub/videolan/vlc/${PORTVERSION}/ \ - http://ftp.snt.utwente.nl/pub/software/videolan/vlc/${PORTVERSION}/ \ - ftp://ftp.crans.org/pub/videolan/vlc/${PORTVERSION}/ \ - ftp://videolan.cs.pu.edu.tw/Windows/VideoLAN/vlc/${PORTVERSION}/ \ - ${MASTER_SITE_LOCAL:S|$|:mozilla|} -MASTER_SITE_SUBDIR= ahze/:mozilla -PKGNAMESUFFIX?= ${ESOUND_SUFFIX}${MOZILLA_SUFFIX}${PKGNAMESUFFIX2} -DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} \ - vlc-intf-mozilla-plugin${EXTRACT_SUFX}:mozilla - -MAINTAINER= ahze@FreeBSD.org -COMMENT= Multimedia streaming server and player for various audio/video formats - -RUN_DEPEDNS= ${X11BASE}/lib/X11/fonts/bitstream-vera/Vera.ttf:${PORTSDIR}/x11-fonts/bitstream-vera -LIB_DEPENDS= avcodec.1:${PORTSDIR}/multimedia/ffmpeg - -### BROKEN -- Needs newer verision of toolame ### -WITHOUT_TOOLAME= yes -### BROKEN ### - -WITH_VLC_DEFAULT_FONT?= ${X11BASE}/lib/X11/fonts/bitstream-vera/Vera.ttf - -USE_BZIP2= yes -USE_X_PREFIX= yes -USE_GETOPT_LONG=yes -USE_GETTEXT= yes -USE_GMAKE= yes -WANT_GNOME= yes -USE_GNOME= gnometarget -USE_REINPLACE= yes -WANT_SDL= yes -USE_XLIB= yes -USE_ICONV= yes - -FAKEDIR= ${WRKDIR}/fake -PLIST= ${WRKDIR}/plist - -INSTALLS_SHLIB= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV+= PATH_GTKCONFIG="${GTK_CONFIG}" CFLAGS="${CFLAGS}" \ - CPPFLAGS="-I${WRKSRC}/include/vlc/ -I${LOCALBASE}/ffmpeg ${CPPFLAGS} -I${LOCALBASE}/include -I${X11BASE}/include ${PTHREAD_CFLAGS}" \ - LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib -L${X11BASE}/lib ${PTHREAD_LIBS}" - -CONFIGURE_ARGS+= --enable-ffmpeg \ - --with-ffmpeg=${LOCALBASE} \ - --with-ffmpeg-zlib \ - --disable-gnome \ - --disable-gtk \ - --without-libintl-prefix - -MAN1= vlc.1 \ - vlc-config.1 - -.if defined(WITH_MOZILLA_PLUGIN) -.if ${WITH_MOZILLA_PLUGIN}=="firefox" -BUILD_DEPENDS+= ${X11BASE}/libdata/pkgconfig/firefox-plugin.pc:${PORTSDIR}/www/firefox -RUN_DEPENDS+= ${X11BASE}/libdata/pkgconfig/firefox-plugin.pc:${PORTSDIR}/www/firefox - -CONFIGURE_ENV+= MOZILLA_CONFIG="${X11BASE}/bin/firefox-config" -.else -BUILD_DEPENDS+= ${X11BASE}/libdata/pkgconfig/mozilla-plugin${HEADERS_SUFX}.pc:${PORTSDIR}/www/mozilla${HEADERS_SUFX} -RUN_DEPENDS+= ${X11BASE}/libdata/pkgconfig/mozilla-plugin${HEADERS_SUFX}.pc:${PORTSDIR}/www/mozilla${HEADERS_SUFX} - -CONFIGURE_ENV+= MOZILLA_CONFIG="${X11BASE}/lib/mozilla${HEADERS_SUFX}/mozilla-config" -.endif -MOZILLA_SUFFIX=-mozilla -CONFIGURE_ARGS+=--enable-mozilla -.if ${WITH_MOZILLA_PLUGIN}=="mozilla-devel" -HEADERS_SUFX= -devel -.else -HEADERS_SUFX= -.endif -.endif - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 500000 && defined(WITH_MOZILLA_PLUGIN) -.if ${WITH_MOZILLA}=="mozilla-devel" -USE_GCC= 3.4 -WITHOUT_LIVEMEDIA= yes -.endif -.endif - -.if ${HAVE_GNOME:Mesound}!="" && !defined(WITHOUT_ESOUND) -WITH_ESOUND= yes -.endif - -.if exists(${LOCALBASE}/lib/libaa.so.1) && !defined(WITHOUT_AALIB) -WITH_AALIB= yes -.endif - -.if exists(${LOCALBASE}/lib/libcaca.a) -WITH_LIBCACA= yes -WITH_AALIB= yes -.endif - -.if exists(${LOCALBASE}/bin/fribidi-config) && !defined(WITHOUT_FRIBIDI) -WITH_FRIBIDI= yes -.endif - -.if exists(${LOCALBASE}/lib/libggi.so.2) && !defined(WITHOUT_GGI) -WITH_GGI= yes -.endif - -.if exists(${LOCALBASE}/lib/libx264.a) && !defined(WITHOUT_H264) -WITH_H264= yes -.endif - -.if exists(${LOCALBASE}/lib/libmp3lame.a) && !defined(WITHOUT_LAME) -WITH_LAME= yes -.endif - -.if exists(${LOCALBASE}/lib/libtheora.so.1) && !defined(WITHOUT_LIBTHEORA) -WITH_LIBTHEORA= yes -.endif - -.if exists(${LOCALBASE}/lib/libspeex.a) && !defined(WITHOUT_SPEEX) -.if exists(${LOCALBASE}/include/speex.h) -WITHOUT_SPEEX= yes -.else -WITH_SPEEX= yes -.endif -.endif - -.if exists(${LOCALBASE}/lib/libgnutls.a) && !defined(WITHOUT_SSL) -WITH_SSL= yes -.endif - -.if exists(${X11BASE}/lib/librsvg-2.a) && !defined(WITHOUT_SVG) -WITH_SVG= yes -.endif - -.if exists(${LOCALBASE}/lib/lib/vga.so.1) && !defined(WITHOUT_SVGALIB) -WITH_SVGALIB= yes -.endif - -.if exists(${LOCALBASE}/lib/libvorbisidec.a) -WITH_LIBTREMOR= yes -.endif - -.if exists(${LOCALBASE}/bin/toolame) -WITH_TOOLAME= yes -.endif - -.if exists(${LOCALBASE}/lib/libxosd.so.4) && !defined(WITHOUT_XOSD) -WITH_XOSD= yes -.endif - -# compatible knobs. -.if defined(WITH_DEBUG) -DEBUG= yes -.endif - -.if defined(WITH_MATROSKA) -WITH_LIBMATROSKA=yes -.endif - -.if defined(WITH_TREMOR) -WITH_LIBTREMOR=yes -.endif -# end compatible knobs - -.if defined(WITHOUT_NLS) -CONFIGURE_ARGS+=--disable-nls -.endif - -.if defined(WITH_DVD_DEVICE) -DEFAULT_DVD_DEVICE=${WITH_DVD_DEVICE} -.else -.if ${OSVERSION} < 500000 -DEFAULT_DVD_DEVICE=/dev/acd0c -.else -DEFAULT_DVD_DEVICE=/dev/acd0 -.endif -.endif - -.if defined(WITH_CDROM_DEVICE) -DEFAULT_CDROM_DEVICE=${WITH_CDROM_DEVICE} -.else -.if ${OSVERSION} < 500000 -DEFAULT_CDROM_DEVICE=/dev/acd0c -.else -DEFAULT_CDROM_DEVICE=/dev/acd0 -.endif -.endif - -.if defined(WITH_SKINS) && !defined(WITHOUT_SKINS) -LIB_DEPENDS+= wx_gtk2-2.4.0:${PORTSDIR}/x11-toolkits/wxgtk2 -CONFIGURE_ARGS+=--enable-skins2 --enable-skins -.else -CONFIGURE_ARGS+=--disable-skins2 -.endif - -.if !defined(WITHOUT_WXWINDOWS) -LIB_DEPENDS+= wx_gtk2-2.4.0:${PORTSDIR}/x11-toolkits/wxgtk2 -USE_GNOME+= gnomehier -CONFIGURE_ARGS+=--enable-wxwindows -CONFIGURE_ENV+= WX_CONFIG=${X11BASE}/bin/wxgtk2-2.4-config -.else -CONFIGURE_ARGS+=--disable-wxwindows -.endif - -.if defined(WITH_ARTS) && !defined(WITHOUT_ARTS) -LIB_DEPENDS+= artsc.0:${PORTSDIR}/audio/arts -CONFIGURE_ARGS+= --enable-arts -.else -CONFIGURE_ARGS+= --disable-arts -.endif - -.if !defined(WITHOUT_CDROM) -LIB_DEPENDS+= vcdinfo.1:${PORTSDIR}/multimedia/vcdimager \ - cdio.4:${PORTSDIR}/sysutils/libcdio -CONFIGURE_ARGS+=--enable-vcd \ - --enable-libcddb \ - --enable-libcdio -.else -CONFIGURE_ARGS+=--disable-vcd \ - --disable-libcddb \ - --disable-libcdio -.endif - -.if !defined(WITHOUT_DVBPSI) -LIB_DEPENDS+= dvbpsi.3:${PORTSDIR}/multimedia/libdvbpsi -CONFIGURE_ARGS+=--enable-dvbpsi \ - --with-dvbpsi=${LOCALBASE} -.else -CONFIGURE_ARGS+=--disable-dvbpsi -.endif - -.if !defined(WITHOUT_DVD) -LIB_DEPENDS+= dvdnav.3:${PORTSDIR}/multimedia/libdvdnav -CONFIGURE_ARGS+=--enable-dvdnav \ - --enable-dvdread \ - --with-dvdcss=${LOCALBASE} \ - --with-dvdread=${LOCALBASE} -.else -CONFIGURE_ARGS+=--disable-dvdnav \ - --disable-dvdread -.endif - -.if defined(WITH_ESOUND) && !defined(WITHOUT_ESOUND) -ESOUND_SUFFIX= -esound -USE_GNOME+= esound -CONFIGURE_ARGS+=--enable-esd -.endif - -.if defined(WITH_FAAC) && !defined(WITHOUT_FAAC) -CONFIGURE_ARGS+=--with-ffmpeg-faac -LIB_DEPENDS+= faac.0:${PORTSDIR}/audio/faac -.endif - -.if !defined(WITHOUT_FAAD) -LIB_DEPENDS+= faad.0:${PORTSDIR}/audio/faad -CONFIGURE_ARGS+=--enable-faad -.else -CONFIGURE_ARGS+=--disable-faad -.endif - -.if !defined(WITHOUT_FLAC) -LIB_DEPENDS+= FLAC.7:${PORTSDIR}/audio/flac -CONFIGURE_ARGS+=--enable-flac -.else -CONFLGIRE_ARGS+=--disable-flac -.endif - -.if defined(WITH_FRIBIDI) && !defined(WITHOUT_FRIBIDI) -LIB_DEPENDS+= fribidi.0:${PORTSDIR}/converters/fribidi -CONFIGURE_ARGS+=--enable-fribidi -.endif - -.if defined(WITH_AALIB) && !defined(WITHOUT_AALIB) -LIB_DEPENDS+= aa.1:${PORTSDIR}/graphics/aalib -CONFIGURE_ARGS+=--enable-aa -.endif - -.if defined(WITH_H264) && !defined(WITHOUT_H264) -CONFIGURE_ARGS+=--enable-x264 -LIB_DEPENDS+= x264.0:${PORTSDIR}/multimedia/x264 -.else -CONFIGURE_ARGS+=--disable-x264 -.endif - -.if defined(WITH_LIBCACA) && !defined(WITHOUT_LIBCACA) -.if !defined(WITHOUT_AALIB) -WITH_AALIB= yes -BUILD_DEPENDS+= ${LOCALBASE}/lib/libcaca.a:${PORTSDIR}/graphics/libcaca -RUN_DEPENDS+= ${LOCALBASE}/lib/libcaca.a:${PORTSDIR}/graphics/libcaca - -CONFIGURE_ARGS+=--enable-caca -.endif -.else -CONFIGURE_ARGS+=--disable-caca -.endif - -.if !defined(WITHOUT_DTS) -BUILD_DEPENDS+= ${LOCALBASE}/lib/libdts.a:${PORTSDIR}/multimedia/libdts -CONFIGURE_ARGS+=--enable-dts -.else -CONFIGURE_ARGS+=--disable-dts -.endif - -.if defined(WITHOUT_HTTPD) -CONFIGURE_ARGS+=--disable-httpd -.endif - -.if defined(WITH_GGI) && !defined(WITHOUT_GGI) -LIB_DEPENDS+= ggi.2:${PORTSDIR}/graphics/libggi -CONFIGURE_ARGS+=--enable-ggi -.else -CONFIGURE_ARGS+=--disable-ggi -.endif - -.if defined(WITH_LAME) && !defined(WITHOUT_LAME) -LIB_DEPENDS+= mp3lame.0:${PORTSDIR}/audio/lame -CONFIGURE_ARGS+=--enable-mp3lame -.else -CONFIGURE_ARGS+=--disable-mp3lame -.endif - -.if !defined(WITHOUT_LIBMATROSKA) -BUILD_DEPENDS+= ${LOCALBASE}/lib/libmatroska.a:${PORTSDIR}/multimedia/libmatroska -.endif - -.if !defined(WITHOUT_LIBA52) -LIB_DEPENDS+= a52.0:${PORTSDIR}/audio/liba52 -CONFIGURE_ARGS+=--enable-a52 -.else -CONFIGURE_ARGS+=--disable-a52 -.endif - -.if !defined(WITHOUT_LIBMPEG2) -LIB_DEPENDS+= mpeg2.0:${PORTSDIR}/multimedia/libmpeg2 -CONFIGURE_ARGS+=--enable-libmpeg2 -.else -CONFIGURE_ARGS+=--disable-libmpeg2 -.endif - -.if defined(WITH_LIBTHEORA) && !defined(WITHOUT_LIBTHEORA) -LIB_DEPENDS+= theora.1:${PORTSDIR}/multimedia/libtheora -CONFIGURE_ARGS+=--enable-theora -.else -CONFIGURE_ARGS+=--disable-theora -.endif - -.if !defined(WITHOUT_LIVEMEDIA) -BUILD_DEPENDS+= ${LOCALBASE}/live/liveMedia/libliveMedia.a:${PORTSDIR}/net/liveMedia -CONFIGURE_ARGS+=--enable-livedotcom \ - --with-livedotcom-tree=${LOCALBASE}/live -.else -CONFIGURE_ARGS+=--disable-livedotcom -.endif - -.if !defined(WITHOUT_MAD) -LIB_DEPENDS+= id3tag.2:${PORTSDIR}/audio/libid3tag \ - mad.2:${PORTSDIR}/audio/libmad -CONFIGURE_ARGS+=--enable-mad \ - --with-mad=${LOCALBASE} -.else -CONFIGURE_ARGS+=--disable-mad -.endif - -.if defined(WITH_NCURSES) && !defined(WITHOUT_NCURSES) -CONFIGURE_ARGS+=--enable-ncurses -.endif - -.if defined(WITH_OPENGL) && !defined(WITHOUT_OPENGL) -USE_GL= yes -CONFIGURE_ARGS+=--enable-galaktos -.else -CONFIGURE_ARGS+=--disable-galaktos -.endif - -.if !defined(WITHOUT_SDL) -USE_SDL= yes -CONFIGURE_ARGS+=--enable-sdl -.else -CONFIGURE_ARGS+=--disable-sdl -.endif - -.if !defined(WITHOUT_TRANSCODE) -RUN_DEPENDS+= transcode:${PORTSDIR}/multimedia/transcode -.endif - -.if !defined(WITHOUT_HTTPD) && defined(WITH_SSL) -LIB_DEPENDS+= gnutls.12:${PORTSDIR}/security/gnutls -CONFIGURE_ARGS+=--enable-gnutls -.else -CONFIGURE_ARGS+=--disable-gnutls -.endif - -.if !defined(WITHOUT_SLP) -LIB_DEPENDS+= slp.1:${PORTSDIR}/net/openslp -.else -CONFIGURE_ARGS+=--disable-slp -.endif - -.if defined(WITH_SPEEX) && !defined(WITHOUT_SPEEX) -LIB_DEPENDS+= speex.3:${PORTSDIR}/audio/speex-devel -CONFIGURE_ARGS+=--enable-speex -CPPFLAGS+=-I${LOCALBASE}/include/speex -.else -CONFIGURE_ARGS+=--disable-speex -.endif - -.if defined(WITH_SVG) && !defined(WITHOUT_SVG) -USE_GNOME+= librsvg2 -CONFIGURE_ARGS+=--enable-svg -.else -CONFIGURE_AGRS+=--disable-svg -.endif - -.if defined(WITH_SVGALIB) && !defined(WITHOUT_SVGALIB) -LIB_DEPENDS+= vga.1:${PORTSDIR}/graphics/svgalib -CONFIGURE_ARGS+=--enable-svgalib -.else -CONFIGURE_ARGS+=--disable-svgalib -.endif - -.if defined(WITH_LIBTREMOR) && !defined(WITHOUT_LIBTREMOR) -LIB_DEPENDS+= vorbisidec.1:${PORTSDIR}/audio/libtremor -.else -CONFIGURE_ARGS+=--disable-tremor -.endif - -.if defined(WITH_TOOLAME) && !defined(WITHOUT_TOOLAME) -BUILD_DEPENDS+= toolame:${PORTSDIR}/audio/toolame -RUN_DEPEDNS+= toolame:${PORTSDIR}/audio/toolame -CONFIGURE_ARGS+= --enable-toolame -.else -CONFIGURE_ARGS+= --disable-toolame -.endif - -.if !defined(WITHOUT_VORBIS) -LIB_DEPENDS+= vorbis.3:${PORTSDIR}/audio/libvorbis -CONFIGURE_ARGS+=--enable-vorbis -.else -CONFIGURE_ARGS+=--disable-vorbis -.endif - -.if defined(WITH_XOSD) && !defined(WITHOUT_XOSD) -LIB_DEPENDS+= xosd.4:${PORTSDIR}/misc/xosd -CONFIGURE_ARGS+=--enable-xosd -.else -CONFIGURE_ARGS+=--disable-xosd -.endif - -.if defined(DEBUG) -CONFIGURE_AGRS+=--enable-debug -.else -CONFIGURE_ARGS+=--enable-release -.endif - -.if defined(WITH_OPTIMIZED_CFLAGS) -CFLAGS+= -O2 -ffast-math -fomit-frame-pointer -CONFIGURE_ARGS+=--enable-release -.else -CONFIGURE_ARGS+=--disable-optimizations -.endif - -.if ${OSVERSION} < 500000 -CONFIGURE_ENV+= LIBS="-L/usr/lib -lcipher" -.endif - -pre-everything:: - @${ECHO_MSG} "" - @${ECHO_MSG} "Take a careful look at the beginning of the Makefile in order" - @${ECHO_MSG} "to learn how to tune VLC towards you personal preferences!" - @${ECHO_MSG} "For example, make WITH_MOZILLA_PLUGIN=firefox" -.if defined(WITH_SPEEX) && exists(${LOCALBASE}/include/speex.h) - @${ECHO_MSG} "" - @${ECHO_MSG} "**** WARNING ****" - @${ECHO_MSG} "Speex 1.0 was detected, if you want Speex support" - @${ECHO_MSG} "Please upgrade speex to audio/speex-devel (1.1.x)" - @${ECHO_MSG} "" -.endif - -post-patch: -# Subtitle default font - @${REINPLACE_CMD} -e \ - 's|/usr/share/fonts/truetype/freefont/FreeSerifBold.ttf|${WITH_VLC_DEFAULT_FONT}|' \ - ${WRKSRC}/modules/misc/freetype.c -# mozilla plugin -.if defined(WITH_MOZILLA_PLUGIN) - @${CP} -f ${WRKDIR}/vlc-intf-mozilla-plugin/vlcintf.h ${WRKSRC}/mozilla - @${CP} -f ${WRKDIR}/vlc-intf-mozilla-plugin/vlcintf.xpt ${WRKSRC}/mozilla - @${REINPLACE_CMD} -e 's|$$(libdir)/mozilla/plugins|${FAKEDIR}/mozilla|; \ - s|$$(libdir)/mozilla/components|${FAKEDIR}/mozilla|' \ - ${WRKSRC}/mozilla/Makefile.in -.endif -# skins2 interface - @${REINPLACE_CMD} -e 's|lrint|rint|' \ - ${WRKSRC}/modules/gui/skins2/controls/ctrl_list.cpp -# s/Linux/FreeBSD/ - @${REINPLACE_CMD} -e 's|Linux|FreeBSD|' \ - ${WRKSRC}/po/* - @${RM} -f ${WRKSRC}/po/*.bak - @${REINPLACE_CMD} -e 's|Linux OSS|FreeBSD OSS|' \ - ${WRKSRC}/modules/audio_output/oss.c -# pthreads/cflags - @${REINPLACE_CMD} -e 's/-lpthread/${PTHREAD_LIBS}/' \ - -e 's/-lc_r/${PTHREAD_LIBS}/' \ - -e 's|-mcpu=pentiumpro||' \ - -e 's|postproc/postprocess.h|ffmpeg/postproc/postprocess.h|' \ - ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's|cflags_tuning=|# cflags_tuning=|' \ - ${WRKSRC}/vlc-config.in -# cdrom/dvd support - @${REINPLACE_CMD} -e 's|/dev/cdrom|${DEFAULT_CDROM_DEVICE}|; \ - s|/dev/dvd|${DEFAULT_DVD_DEVICE}|' \ - ${WRKSRC}/include/vlc_config.h - -pre-install: - ${RM} -rf ${PLIST} ${FAKEDIR} - ${MKDIR} ${FAKEDIR} - ${TOUCH} -f ${PLIST} -.if !defined(WITHOUT_WXWINDOWS) - ${ECHO_CMD} "share/gnome/applications/vlc.desktop" >> ${PLIST} - ${ECHO_CMD} "share/gnome/pixmaps/vlc.png" >> ${PLIST} -.endif - cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} \ - ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET} prefix=${FAKEDIR} - cd ${FAKEDIR}/bin && ${FIND} -s * | \ - ${SED} -e 's|^|bin/|' >> ${PLIST} - cd ${FAKEDIR}/include && ${FIND} -s * -type f -o -type l | \ - ${SED} -e 's|^|include/|' >> ${PLIST} \ - && ${FIND} -d * -type d | \ - ${SED} -e 's|^|@dirrm include/|' >> ${PLIST} - cd ${FAKEDIR}/lib && ${FIND} -s * -type f -o -type l| \ - ${SED} -e 's|^|lib/|' >> ${PLIST} \ - && ${FIND} -d * -type d | \ - ${SED} -e 's|^|@dirrm lib/|' >> ${PLIST} -.for dir in vlc - cd ${FAKEDIR}/share/${dir} && ${FIND} -s * -type f -o -type l | \ - ${SED} -e 's|^|share/${dir}/|' >> ${PLIST} \ - && ${FIND} -d * -type d | \ - ${SED} -e 's|^|@dirrm share/${dir}/|' >> ${PLIST} -.endfor -.if !defined(NOPORTDOCS) - cd ${FAKEDIR}/share/doc && ${FIND} -s * -type f -o -type l | \ - ${SED} -e 's|^|share/doc/|' >> ${PLIST} \ - && ${FIND} -d * -type d | \ - ${SED} -e 's|^|@dirrm share/doc/|' >> ${PLIST} -.else - ${RM} -rf ${FAKEDIR}/share/doc -.endif - ${ECHO_MSG} "@dirrm share/vlc" >> ${PLIST} - cd ${FAKEDIR}/share/locale && ${FIND} -s * -type f -o -type l | \ - ${SED} -e 's|^|share/locale/|' >> ${PLIST} -.if defined(WITH_MOZILLA_PLUGIN) - cd ${FAKEDIR}/mozilla && ${FIND} -s * | \ - ${SED} -e 's|^|lib/browser_plugins/|' >> ${PLIST} -.endif - -do-install: -.if !defined(WITHOUT_WXWINDOWS) - if [ ! -d ${PREFIX}/share/gnome/applications ]; then \ - ${MKDIR} ${PREFIX}/share/gnome/applications ; \ - fi - ${INSTALL_DATA} ${FILESDIR}/vlc.desktop ${PREFIX}/share/gnome/applications - if [ ! -d ${PREFIX}/share/gnome/pixmaps ]; then \ - ${MKDIR} ${PREFIX}/share/gnome/pixmaps ; \ - fi - ${INSTALL_DATA} ${FAKEDIR}/share/vlc/vlc48x48.png ${PREFIX}/share/gnome/pixmaps/vlc.png -.endif - @${REINPLACE_CMD} -e 's|${FAKEDIR}|${PREFIX}|' \ - ${FAKEDIR}/bin/vlc-config - @${RM} -f ${FAKEDIR}/bin/*.bak - cd ${FAKEDIR}/bin && ${FIND} . | \ - ${CPIO} -pdm -R ${BINOWN}:${BINGRP} ${PREFIX}/bin - cd ${FAKEDIR}/include && ${FIND} . | \ - ${CPIO} -pdm -L -R ${LIBOWN}:${LIBGRP} ${PREFIX}/include - cd ${FAKEDIR}/lib && ${FIND} . | \ - ${CPIO} -pdm -L -R ${LIBOWN}:${LIBGRP} ${PREFIX}/lib - cd ${FAKEDIR}/share && ${FIND} . | \ - ${CPIO} -pdm -L -R ${SHAREOWN} ${PREFIX}/share -.if defined(WITH_MOZILLA_PLUGIN) - @${MKDIR} ${PREFIX}/lib/browser_plugins - ${INSTALL_DATA} ${FAKEDIR}/mozilla/* ${PREFIX}/lib/browser_plugins -.endif - ${INSTALL_MAN} ${WRKSRC}/doc/vlc.1 ${MANPREFIX}/man/man1/ - ${INSTALL_MAN} ${WRKSRC}/doc/vlc-config.1 ${MANPREFIX}/man/man1/ - -.include <bsd.port.post.mk> diff --git a/multimedia/vlc-devel/distinfo b/multimedia/vlc-devel/distinfo deleted file mode 100644 index a30cf2d8b2a4..000000000000 --- a/multimedia/vlc-devel/distinfo +++ /dev/null @@ -1,6 +0,0 @@ -MD5 (vlc-0.8.1.tar.bz2) = 9cdf6d70d51dad30d198edfa96047529 -SIZE (vlc-0.8.1.tar.bz2) = 4877791 -MD5 (ffmpeg-20041113.tar.bz2) = 245bbbb766f43722826358a938afd9a9 -SIZE (ffmpeg-20041113.tar.bz2) = 1472726 -MD5 (vlc-intf-mozilla-plugin.tar.bz2) = cd4697606b8a188a92d8cc77adf857d2 -SIZE (vlc-intf-mozilla-plugin.tar.bz2) = 2493 diff --git a/multimedia/vlc-devel/files/patch-configure b/multimedia/vlc-devel/files/patch-configure deleted file mode 100644 index fd460cf24eb6..000000000000 --- a/multimedia/vlc-devel/files/patch-configure +++ /dev/null @@ -1,10 +0,0 @@ ---- configure.orig Wed Nov 3 08:47:13 2004 -+++ configure Wed Nov 3 08:50:12 2004 -@@ -4967,7 +4967,6 @@ - ;; - bsdi*) - SYS=bsdi -- CFLAGS_save="${CFLAGS_save} -pthread"; CFLAGS="${CFLAGS_save}" - - for element in dvd dvdcss vcd cdda vcdx cddax; do - eval "LDFLAGS_${element}="'"'"-ldvd "'$'"{LDFLAGS_${element}} "'"' diff --git a/multimedia/vlc-devel/files/patch-modules-codec-ffmpeg-ffmpeg.h b/multimedia/vlc-devel/files/patch-modules-codec-ffmpeg-ffmpeg.h deleted file mode 100644 index b474a55d5747..000000000000 --- a/multimedia/vlc-devel/files/patch-modules-codec-ffmpeg-ffmpeg.h +++ /dev/null @@ -1,14 +0,0 @@ ---- modules/codec/ffmpeg/ffmpeg.h.orig Fri Aug 8 19:08:32 2003 -+++ modules/codec/ffmpeg/ffmpeg.h Wed Nov 5 15:10:17 2003 -@@ -49,11 +49,7 @@ - - } generic_thread_t; - --#if LIBAVCODEC_BUILD >= 4663 --# define LIBAVCODEC_PP --#else - # undef LIBAVCODEC_PP --#endif - - #define GetWLE( p ) \ - ( *(u8*)(p) + ( *((u8*)(p)+1) << 8 ) ) diff --git a/multimedia/vlc-devel/files/patch-modules_codec_x264.c b/multimedia/vlc-devel/files/patch-modules_codec_x264.c deleted file mode 100644 index 80fd89fedf6b..000000000000 --- a/multimedia/vlc-devel/files/patch-modules_codec_x264.c +++ /dev/null @@ -1,16 +0,0 @@ ---- modules/codec/x264.c.orig Thu Nov 11 13:50:16 2004 -+++ modules/codec/x264.c Wed Jan 26 05:03:04 2005 -@@ -236,10 +236,11 @@ - p_sys->param.b_deblocking_filter = val.b_bool; - - var_Get( p_enc, SOUT_CFG_PREFIX "keyint", &val ); -- if( val.i_int > 0 ) p_sys->param.i_iframe = val.i_int; -+ if( val.i_int > 0 ) p_sys->param.i_keyint_max = val.i_int; -+ if( val.i_int > 0 ) p_sys->param.i_keyint_min = val.i_int * 0.4; - - var_Get( p_enc, SOUT_CFG_PREFIX "idrint", &val ); -- if( val.i_int > 0 ) p_sys->param.i_idrframe = val.i_int; -+ if( val.i_int > 0 ) p_sys->param.i_keyint_min = val.i_int; - - var_Get( p_enc, SOUT_CFG_PREFIX "bframes", &val ); - if( val.i_int >= 0 && val.i_int <= 16 ) p_sys->param.i_bframe = val.i_int; diff --git a/multimedia/vlc-devel/files/patch-modules_gui_ncurses.c b/multimedia/vlc-devel/files/patch-modules_gui_ncurses.c deleted file mode 100644 index ef435ac6685d..000000000000 --- a/multimedia/vlc-devel/files/patch-modules_gui_ncurses.c +++ /dev/null @@ -1,29 +0,0 @@ ---- modules/gui/ncurses.c.orig Wed Nov 3 18:12:49 2004 -+++ modules/gui/ncurses.c Wed Nov 3 18:14:27 2004 -@@ -875,7 +875,7 @@ - - static void SearchPlaylist( intf_thread_t *p_intf, char *psz_searchstring ) - { -- bool b_ok = false; -+ bool b_ok = 0; - int i_current; - int i_first = 0 ; - int i_item = -1; -@@ -900,7 +900,7 @@ - psz_searchstring ) != NULL ) - { - i_item = i_current; -- b_ok = true; -+ b_ok = 1; - break; - } - } -@@ -914,7 +914,7 @@ - psz_searchstring ) != NULL ) - { - i_item = i_current; -- b_ok = true; -+ b_ok = 1; - break; - } - } diff --git a/multimedia/vlc-devel/files/patch-modules_visualization_galaktos_PCM.c b/multimedia/vlc-devel/files/patch-modules_visualization_galaktos_PCM.c deleted file mode 100644 index 78799ac46b59..000000000000 --- a/multimedia/vlc-devel/files/patch-modules_visualization_galaktos_PCM.c +++ /dev/null @@ -1,11 +0,0 @@ ---- modules/visualization/galaktos/PCM.c.orig Fri Nov 26 08:21:47 2004 -+++ modules/visualization/galaktos/PCM.c Fri Nov 26 08:22:06 2004 -@@ -79,7 +79,7 @@ - //Takes in a 2x512 array of PCM samples - //and stores them - --void addPCM(int16_t PCMdata[2][512]) -+void addPCM(short PCMdata[2][512]) - { - int i,j; - int samples=512; diff --git a/multimedia/vlc-devel/files/vlc.desktop b/multimedia/vlc-devel/files/vlc.desktop deleted file mode 100644 index 2e6cd518f230..000000000000 --- a/multimedia/vlc-devel/files/vlc.desktop +++ /dev/null @@ -1,9 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Name=VideoLAN Media Player -Comment=Video and Audio player and server -Icon=vlc.png -Exec=vlc -Terminal=false -Type=Application -Categories=Application;AudioVideo; diff --git a/multimedia/vlc-devel/pkg-descr b/multimedia/vlc-devel/pkg-descr deleted file mode 100644 index 15b251466d29..000000000000 --- a/multimedia/vlc-devel/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -vlc -- the VideoLAN Client - -VLC media player is a highly portable multimedia player for various -audio and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, ogg, and -more) as well as DVD's, VCD's, and various streaming protocols. It -can also be used as a server to stream in unicast or multicast in -IPv4 or IPv6 on a high-bandwidth network. VLC also has the ability -to transcode media on-the-fly for streaming or saving to disk. - -WWW: http://www.videolan.org/ diff --git a/multimedia/x264-devel/Makefile b/multimedia/x264-devel/Makefile deleted file mode 100644 index a6aed1a5ecee..000000000000 --- a/multimedia/x264-devel/Makefile +++ /dev/null @@ -1,73 +0,0 @@ -# New ports collection makefile for: x264 -# Date created: 2005-01-11 -# Whom: Michael Johnson <ahze@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= x264 -PORTVERSION= 0.0.20050125 -CATEGORIES= multimedia -MASTER_SITES= ${MASTER_SITE_LOCAL:S|$|ahze/|} -# http://download.videolan.org/pub/videolan/contrib/ \ -# http://ftp.snt.utwente.nl/pub/software/videolan/contrib/ -DISTNAME= ${PORTNAME}-${PORTVERSION:S/0.0.//} - -MAINTAINER= ahze@FreeBSD.org -COMMENT= Multimedia library and tool for encoding H.264/AVC video streams - -USE_GETOPT_LONG=yes -USE_BZIP2= yes -WRKSRC= ${WRKDIR}/${DISTNAME} -USE_REINPLACE= yes -USE_GMAKE= yes -ALL_TARGET= default -SHLIB_VER= 0 -CFLAGS+= -DSYS_FREEBSD -INSTALLS_SHLIB= yes - -PLIST_FILES= bin/x264 \ - include/x264.h \ - lib/libx264.a \ - lib/libx264.so \ - lib/libx264.so.${SHLIB_VER} - -OPTIONS= DEBUG "Enable Debugging" Off \ - OPTIMIZED_CFLAGS "Enable Optimized CFLAGS" Off - -.include <bsd.port.pre.mk> - -.if ${ARCH}=="i386" -BUILD_DEPENDS+= nasm:${PORTSDIR}/devel/nasm - -CFLAGS+= -DARCH_X86 -MAKE_ENV+= ARCH_X86="1" -.if ${MACHINE_CPU:Mmmx} -CFLAGS+= -DHAVE_MMXEXT -.endif -.if ${MACHINE_CPU:Msse} -CFLAGS+= -DHAVE_SSE2 -.endif -.endif - -.if !defined(WITH_DEBUG) -MAKE_ENV+= NDEBUG="1" -.endif - -.if defined(WITH_OPTIMIZED_CFLAGS) -CFLAGS+= -O2 -funroll-loops -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|%%CFLAGS%%|${CPPFLAGS} ${CFLAGS}|; \ - s|%%SHLIB_VER%%|${SHLIB_VER}|; \ - s|-lm|${LDFLAGS} -lm|' ${WRKSRC}/${MAKEFILE} - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/x264 ${PREFIX}/bin - ${INSTALL_DATA} ${WRKSRC}/x264.h ${PREFIX}/include - ${INSTALL_DATA} ${WRKSRC}/libx264.a ${PREFIX}/lib - ${INSTALL_DATA} ${WRKSRC}/libx264.so.${SHLIB_VER} ${PREFIX}/lib - ${LN} -sf libx264.so.${SHLIB_VER} ${PREFIX}/lib/libx264.so - -.include <bsd.port.post.mk> diff --git a/multimedia/x264-devel/distinfo b/multimedia/x264-devel/distinfo deleted file mode 100644 index ab337c6cb244..000000000000 --- a/multimedia/x264-devel/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (x264-20050125.tar.bz2) = 8e43454d1062f84703b3193b1bce8769 -SIZE (x264-20050125.tar.bz2) = 160325 diff --git a/multimedia/x264-devel/files/patch-Makefile b/multimedia/x264-devel/files/patch-Makefile deleted file mode 100644 index 6a8172d174cd..000000000000 --- a/multimedia/x264-devel/files/patch-Makefile +++ /dev/null @@ -1,59 +0,0 @@ ---- Makefile.orig Tue Jan 25 16:36:54 2005 -+++ Makefile Mon Jan 31 01:14:20 2005 -@@ -12,18 +12,19 @@ - encoder/set.c encoder/macroblock.c encoder/cabac.c \ - encoder/cavlc.c encoder/encoder.c encoder/eval.c x264.c - --ifdef SYS_MACOSX --PFLAGS=-DARCH_PPC -DSYS_MACOSX -faltivec --SRCS= $(SRCS_COMMON) common/ppc/mc.c common/ppc/pixel.c --else --PFLAGS=-DARCH_X86 -DHAVE_MMXEXT -DHAVE_SSE2 -DHAVE_MALLOC_H -+ifdef ARCH_X86 - SRCS= $(SRCS_COMMON) common/i386/mc-c.c common/i386/dct-c.c common/i386/predict.c - ASMSRC= common/i386/dct-a.asm common/i386/cpu-a.asm common/i386/pixel-a.asm common/i386/mc-a.asm - OBJASM= $(ASMSRC:%.asm=%.o) -+else -+SRCS= $(SRCS_COMMON) - endif - --CC=gcc --CFLAGS=-Wall -I. -O4 -funroll-loops -D__X264__ $(PFLAGS) -+SHARED_LIB= libx264.so -+SHARED_LIB_VER= $(SHARED_LIB).%%SHLIB_VER%% -+ -+CFLAGS=-I. -D__X264__ %%CFLAGS%% -fPIC -+ - ifdef NDEBUG - CFLAGS+=-s -DNDEBUG - else -@@ -39,14 +40,17 @@ - OBJS = $(SRCS:%.c=%.o) - DEP = depend - --default: $(DEP) x264 -+default: $(DEP) x264 $(SHARED_LIB_VER) - - libx264.a: $(OBJS) $(OBJASM) - ar rc libx264.a $(OBJS) $(OBJASM) - ranlib libx264.a - --x264: libx264.a x264.o -- $(CC) $(CFLAGS) -o x264 x264.o libx264.a -lm -+x264: $(SHARED_LIB_VER) x264.o -+ $(CC) $(CFLAGS) -o x264 x264.o $(SHARED_LIB_VER) -lm -+ -+$(SHARED_LIB_VER): $(OBJS) libx264.a -+ $(CC) $(CFLAGS) -shared -Wl,-soname,$(SHARED_LIB_VER) -o $(SHARED_LIB_VER) $(OBJS) $(OBJASM) -lm - - checkasm: testing/checkasm.c libx264.a - $(CC) $(CFLAGS) -o checkasm $< libx264.a -lm -@@ -56,7 +60,7 @@ - - .depend: $(SRCS) x264.c - rm -f .depend -- $(foreach SRC, $(SRCS) x264.c, $(CC) $(CFLAGS) $(SRC) -MM -MT $(SRC:%.c=%.o) 1>> .depend;) -+ $(CC) -MM $(CFLAGS) $(SRCS) x264.c 1> .depend - - depend: .depend - ifneq ($(wildcard .depend),) diff --git a/multimedia/x264-devel/files/patch-encoder_encoder.c b/multimedia/x264-devel/files/patch-encoder_encoder.c deleted file mode 100644 index 5395a239f56b..000000000000 --- a/multimedia/x264-devel/files/patch-encoder_encoder.c +++ /dev/null @@ -1,27 +0,0 @@ ---- encoder/encoder.c.orig Tue Jan 25 21:28:32 2005 -+++ encoder/encoder.c Tue Jan 25 21:30:21 2005 -@@ -1113,12 +1113,14 @@ - if( i_slice_type == SLICE_TYPE_P && !h->param.rc.b_stat_read - && h->param.i_scenecut_threshold >= 0 ) - { -+ int i_gop_size; - int i_mb_i = h->stat.frame.i_mb_count[I_4x4] + h->stat.frame.i_mb_count[I_16x16]; - int i_mb_p = h->stat.frame.i_mb_count[P_L0] + h->stat.frame.i_mb_count[P_8x8]; - int i_mb_s = h->stat.frame.i_mb_count[P_SKIP]; - int i_mb = h->sps->i_mb_width * h->sps->i_mb_height; - int64_t i_inter_cost = h->stat.frame.i_inter_cost; - int64_t i_intra_cost = h->stat.frame.i_intra_cost; -+ float f_bias; - - float f_thresh_max = h->param.i_scenecut_threshold / 100.0; - /* ratio of 10 pulled out of thin air */ -@@ -1126,8 +1128,7 @@ - / ( h->param.i_keyint_max * 4 ); - if( h->param.i_keyint_min == h->param.i_keyint_max ) - f_thresh_min= f_thresh_max; -- float f_bias; -- int i_gop_size = h->fenc->i_frame - h->frames.i_last_idr; -+ i_gop_size = h->fenc->i_frame - h->frames.i_last_idr; - - /* macroblock_analyse() doesn't further analyse skipped mbs, - * so we have to guess their cost */ diff --git a/multimedia/x264-devel/pkg-descr b/multimedia/x264-devel/pkg-descr deleted file mode 100644 index 561027d85d3e..000000000000 --- a/multimedia/x264-devel/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -x264 is a free library for encoding H.264/AVC (aka MPEG-4 Part 10) -video streams. - -Encoder features - * CAVLC/CABAC - * Multi-references - * Intra: all modes (4x4 and 16x16 with all predictions) - * Inter P: all partitions (from 16x16 down to 4x4) - * Inter B: partitions from 16x16 down to 8x8 (including SKIP/DIRECT) - * Ratecontrol: constant quantizer, constant bitrate, or multipass ABR - * Scene cut detection - -WWW: http://www.videolan.org/x264.html |
