diff options
Diffstat (limited to 'multimedia')
140 files changed, 0 insertions, 7658 deletions
diff --git a/multimedia/ffmpeg-devel/Makefile b/multimedia/ffmpeg-devel/Makefile deleted file mode 100644 index bddefe9bb499..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= 1 -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.2:${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 534b4a76bac0..000000000000 --- a/multimedia/gstreamer-ffmpeg80/Makefile +++ /dev/null @@ -1,53 +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.3 -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}" - -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 8d01a8c7a2f7..000000000000 --- a/multimedia/gstreamer-ffmpeg80/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (gst-ffmpeg-0.8.3.tar.bz2) = c90d8014d94a48195adf6d6304e82dc4 -SIZE (gst-ffmpeg-0.8.3.tar.bz2) = 1803516 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/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-plugins80/Makefile b/multimedia/gstreamer-plugins80/Makefile deleted file mode 100644 index aeac41753f59..000000000000 --- a/multimedia/gstreamer-plugins80/Makefile +++ /dev/null @@ -1,1208 +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.6 -PORTREVISION= 1 -CATEGORIES= multimedia audio -MASTER_SITES= http://gstreamer.freedesktop.org/src/gst-plugins/ \ - ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/gst-plugins/0.8 -PKGNAMESUFFIX= -plugins -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 - -USE_X_PREFIX= yes -USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnomehack \ - gnomehier \ - gnomeprefix \ - pkgconfig \ - gconf2 -USE_REINPLACE= yes -USE_LIBTOOL_VER=15 -GCONF_SCHEMAS= gstreamer-${GST_VERSION}.schemas -CONFIGURE_ARGS= --disable-tests \ - --disable-alsa \ - --enable-cdrom \ - --disable-divx \ - --disable-dxr3 \ - --disable-http \ - --disable-qcam \ - --disable-raw1394 \ - --disable-v4l2 \ - --disable-v4l \ - --disable-osx_audio \ - --disable-sunaudio \ - --disable-dependency-tracking \ - --enable-xshm \ - --enable-x \ - --enable-xvideo \ - --enable-static - -# list of plugins that need some work in one way or the other to work -# probable the lib needs to be ported, disable them for now. -CONFIGURE_ARGS+=\ - --disable-tarkin \ - --disable-lcs \ - --disable-shout2 \ - --disable-dirac \ - --disable-librfb - -CONFIGURE_ENV= PKG_CONFIG=${PKG_CONFIG} \ - CFLAGS="${CFLAGS} -I${LOCALBASE}/include" \ - CPPFLAGS="${CPPFLAGS} -I${X11BASE}/include -I${LOCALBASE}/include" \ - LDFLAGS="${LDFLAGS} -L${X11BASE}/lib -L${LOCALBASE}/lib" -CONFIGURE_TARGET= -PLIST_SUB= \ - VERSION="${GST_VERSION}" \ - SHLIB_VERSION="${SHLIB_VERSION}" -INSTALLS_SHLIB= yes - -# for various GNOME-related component detection -WANT_GNOME= yes - -MAN1= gst-launch-ext-${GST_VERSION}.1 gst-visualise-${GST_VERSION}.1 - -PKG_CONFIG?="${LOCALBASE}/bin/pkg-config" -SDL_CONFIG?="${LOCALBASE}/bin/sdl11-config" -GST_VERSION=${PORTVERSION:C/..$//} - -# library minor number -SHLIB_VERSION= 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 - -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/ - -.include <bsd.port.pre.mk> - -post-patch: -.if ${CXXFLAGS:M*=athlon-4} || ${CXXFLAGS:M*=athlon-mp} || ${CXXFLAGS:M*=athlon-xp} -# Fix gst-register when using -O -march=athlon-xp - @${REINPLACE_CMD} -e 's|@CXXF|-fgcse @CXXF|g' \ - ${WRKSRC}/gst/modplug/Makefile.in \ - ${WRKSRC}/gst/modplug/libmodplug/Makefile.in -.endif -# as of this writing, FreeBSD does not support lrint* C99 math functions - @${REINPLACE_CMD} -E -e \ - 's|^#define.*LRINT.*$$||' \ - ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} -# respect CFLAGS - @${FIND} ${WRKSRC} -type f -name Makefile.in | \ - ${XARGS} -n 10 ${REINPLACE_CMD} -E -e \ - 's,-O(2|3),,; \ - s|-mcpu=i486||' -# mcopidl takes the file as the last argument - @${REINPLACE_CMD} -E -e \ - 's|(mcopidl.+)(\$$<)(.+)$$|\1 \3 \2|' \ - ${WRKSRC}/ext/arts/Makefile.in -# malloc.h was deprecated in favor of stdlib.h -# inttypes.h not stdint.h - @${FIND} ${WRKSRC} -type f | \ - ${XARGS} -n 10 ${REINPLACE_CMD} -e \ - 's|malloc\.h|stdlib.h|; \ - s|stdint\.h|inttypes.h|' -# force libaudiofile detection - @${REINPLACE_CMD} -E -e \ - 's|^.*afOpenVirtualFile[[:space:]]*\(\);|;|' \ - ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} -# 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 - -# tell configure where the musepack includes live - @${REINPLACE_CMD} -e 's|/usr/include/musepack|${LOCALBASE}/include/musepack|g' \ - ${WRKSRC}/configure - -# hermes is required for gstreamer-player to work -# since it is currently the only colorspace plugin available -# XXX However, it currently does not work on sparc64. -.if ${ARCH} != "sparc64" -WITH_HERMES= yes -.endif -# gnomevfs is required for gstreamer-player to work -WITH_GNOMEVFS= yes -# Add default MAD support. This is required for rhythmbox to work. -WITH_MAD= yes - -## -## auto detect possible plugins -## - -# aalib -.if exists(${LOCALBASE}/lib/libaa.a) -WITH_AALIB=yes -.endif - -# arts -.if exists(${LOCALBASE}/lib/libartsc.so.0) && !defined(WITHOUT_ARTS) -WITH_ARTS=yes -.endif - -# cdparanoia -.if exists(${LOCALBASE}/lib/libcdda_paranoia.a) -WITH_CDPARANOIA=yes -.endif - -# dts -.if exists(${LOCALBASE}/lib/libdts_pic.a) -WITH_DTS=yes -.endif - -# faac -.if exists(${LOCALBASE}/lib/libfaac.a) -WITH_FAAC=yes -.endif - -# esound -.if (${HAVE_GNOME:Mesound}!="") -WITH_ESOUND=yes -.endif - -# faad -.if exists(${LOCALBASE}/lib/libfaad.a) -WITH_FAAD=yes -.endif - -# flac -.if exists(${LOCALBASE}/lib/libFLAC.a) -WITH_FLAC=yes -.endif - -# freetype -.if exists(${LOCALBASE}/lib/libfreetype.a) -WITH_FREETYPE=yes -.endif - -# gdkpixbuf -.if ${HAVE_GNOME:Mgtk20}!="" -WITH_GDKPIXBUF=yes -.endif - -# lame -.if exists(${LOCALBASE}/lib/libmp3lame.a) -WITH_LAME=yes -.endif - -# gnomevfs -.if ${HAVE_GNOME:Mgnomevfs2}!="" -WITH_GNOMEVFS=yes -.endif - -# jack -.if exists(${LOCALBASE}/lib/libjack.so.0) -WITH_JACK=YES -.endif - -# libcaca -.if exists(${LOCALBASE}/lib/libcaca.a) -WITH_LIBCACA=yes -.endif - -# libmng -.if exists(${LOCALBASE}/lib/libmng.a) -WITH_MNG=yes -.endif - -# gsm -.if exists(${LOCALBASE}/lib/libgsm.a) -WITH_GSM=yes -.endif - -# Hermes -.if exists (${LOCALBASE}/lib/libHermes.a) -WITH_HERMES=yes -.endif - -# jpeg -.if exists(${LOCALBASE}/lib/libjpeg.a) -WITH_JPEG=yes -.endif - -# ladspa -.if exists(${LOCALBASE}/include/ladspa.h) -WITH_LADSPA=yes -.endif - -# liba52 -.if exists(${LOCALBASE}/lib/liba52.a) -WITH_LIBA52=yes -.endif - -# libaudiofile -.if exists(${LOCALBASE}/lib/libaudiofile.a) -WITH_LIBAUDIOFILE=yes -.endif - -# libcdaudio -.if exists(${LOCALBASE}/lib/libcdaudio.a) -WITH_LIBCDAUDIO=yes -.endif - -# libdv -.if exists(${LOCALBASE}/lib/libdv.a) -WITH_LIBDV=yes -.endif - -# libdvdnav -.if exists(${LOCALBASE}/lib/libdvdnav.so) -WITH_LIBDVDNAV=yes -.endif - -# libdvdread -.if exists(${LOCALBASE}/lib/libdvdread.a) -WITH_LIBDVDREAD=yes -.endif - -# libfame -.if exists(${LOCALBASE}/lib/libfame.a) -WITH_LIBFAME=yes -.endif - -# libmikmod -.if exists(${LOCALBASE}/lib/libmikmod.a) -WITH_LIBMIKMOD=yes -.endif - -# libmpeg2 -.if exists(${LOCALBASE}/lib/libmpeg2.a) -WITH_LIBMPEG2=yes -.endif - -# libmusicbrainz -.if exists(${LOCALBASE}/lib/libmusicbrainz.a) -WITH_LIBMUSICBRAINZ=yes -.endif - -# libshout -.if exists(${LOCALBASE}/lib/libshout.so.2) -WITH_LIBSHOUT=yes -.endif - -# libsidplay -.if exists(${LOCALBASE}/lib/libsidplay.a) -WITH_LIBSIDPLAY=yes -.endif - -# libsndfile -.if exists(${LOCALBASE}/lib/libsndfile.a) -WITH_LIBSNDFILE=yes -.endif - -# libtheora -.if exists(${LOCALBASE}/lib/libtheora.a) -WITH_LIBTHEORA=yes -.endif - -# libvisual -.if exists(${LOCALBASE}/lib/libvisual.a) -WITH_LIBVISUAL=yes -.endif - -# mad -.if exists(${LOCALBASE}/lib/libmad.a) -WITH_MAD=yes -.endif - -# mjpegtools -.if exists(${LOCALBASE}/lib/libmjpegutils.a) -WITH_MJPEGTOOLS=yes -.endif - -# musepack -.if exists(${LOCALBASE}/lib/libmusepack.a) -WITH_MUSEPACK=yes -.endif - -# nas -.if exists(${X11BASE}/lib/libaudio.a) -WITH_NAS=YES -.endif - -# ogg -.if exists(${LOCALBASE}/lib/libogg.a) -WITH_OGG=yes -.endif - -# pango -.if exists(${X11BASE}/lib/libpangoft2-1.0.a) -WITH_PANGO=yes -.endif - -# png -.if exists(${LOCALBASE}/lib/libpng.a) -WITH_PNG=yes -.endif - -# polypaudio -.if exists(${LOCALBASE}/lib/libpolyp-0.6.a) -WITH_POLYPAUDIO=yes -.endif - -# sdl -.if exists(${LOCALBASE}/lib/libSDL-1.1.a) -WITH_SDL=yes -.endif - -# smoothwave -.if exists(${X11BASE}/lib/libgtk-x11-2.0.a) -WITH_SMOOTHWAVE=yes -.endif - -# speex -.if exists(${LOCALBASE}/lib/libspeex.a) -WITH_SPEEX=yes -.endif - -# swfdec -.if exists(${X11BASE}/lib/libswfdec-0.3.a) -WITH_SWFDEC=yes -.endif - -# vorbis -.if exists(${LOCALBASE}/lib/libvorbis.a) -WITH_VORBIS=yes -.endif - -# vorbisidec -.if exists(${LOCALBASE}/lib/libvorbisidec.a) -WITH_VORBISIDEC=yes -.endif - -# xine -# this plugins is meant to support plugins that gstreamer doesn't have (yet) -.if exists(${X11BASE}/lib/libxine.so.12) -WITH_XINE=yes -.endif - -# xvid -.if exists(${LOCALBASE}/lib/libxvidcore.so.4) -WITH_XVID=yes -.endif - -## -## control CONFIGURE options -## - -# aalib -.ifndef(WITH_AALIB) -CONFIGURE_ARGS+= --disable-aalib \ - --disable-aalibtest -PLIST_SUB+= AALIB="@comment " -.else -LIB_DEPENDS+= aa.1:${PORTSDIR}/graphics/aalib - -CONFIGURE_ARGS+= --with-aalib-prefix=${LOCALBASE} \ - --with-aalib-exec-prefix=${LOCALBASE} -PLIST_SUB+= AALIB="" -.endif - -# arts -.ifndef(WITH_ARTS) -CONFIGURE_ARGS+= --disable-arts \ - --disable-artsc \ - --disable-artstest -PLIST_SUB+= ARTS="@comment " -.else -LIB_DEPENDS+= artsc.0:${PORTSDIR}/audio/arts - -CONFIGURE_ARGS+= --with-arts-prefix=${LOCALBASE} \ - --with-arts-exec-prefix=${LOCALBASE} -PLIST_SUB+= ARTS="" -.endif - -# cdparanoia -.ifndef(WITH_CDPARANOIA) -CONFIGURE_ARGS+= --disable-cdparanoia -PLIST_SUB+= CDPARANOIA="@comment " -.else -LIB_DEPENDS+= cdda_interface.0:${PORTSDIR}/audio/cdparanoia - -PLIST_SUB+= CDPARANOIA="" -.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 - -# dts -.ifndef(WITH_DTS) -CONFIGURE_ARGS+= --disable-dts -PLIST_SUB+= DTS="@comment " -.else -BUILD_DEPENDS+= ${LOCALBASE}/lib/libdts_pic.a:${PORTSDIR}/multimedia/libdts -RUN_DEPENDS+= ${LOCALBASE}/lib/libdts_pic.a:${PORTSDIR}/multimedia/libdts -PLIST_SUB+= DTS="" -.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 - -# esound -.ifndef(WITH_ESOUND) -CONFIGURE_ARGS+= --disable-esd \ - --disable-esdtest -PLIST_SUB+= ESOUND="@comment " -.else -USE_GNOME+= esound -CONFIGURE_ARGS+= --with-esd-prefix=${LOCALBASE} \ - --with-esd-exec-prefix=${LOCALBASE} -PLIST_SUB+= ESOUND="" -.endif - -# faac -.ifndef(WITH_FAAC) -CONFIGURE_ARGS+= --disable-faac -PLIST_SUB+= FAAC="@comment " -.else -LIB_DEPENDS+= faac.0:${PORTSDIR}/audio/faac -PLIST_SUB+= FAAC="" -.endif - -# faad -.ifndef(WITH_FAAD) -CONFIGURE_ARGS+= --disable-faad -PLIST_SUB+= FAAD="@comment " -.else -LIB_DEPENDS+= faad.0:${PORTSDIR}/audio/faad -PLIST_SUB+= FAAD="" -.endif - -# flac -.ifndef(WITH_FLAC) -CONFIGURE_ARGS+= --disable-flac -PLIST_SUB+= FLAC="@comment " -.else -LIB_DEPENDS+= FLAC.5:${PORTSDIR}/audio/flac - -PLIST_SUB+= FLAC="" -.endif - -# freetype -.ifndef(WITH_FREETYPE) -CONFIGURE_ARGS+= --disable-freetypetest -PLIST_SUB+= FREETYPE="@comment " -.else -LIB_DEPENDS+= freetype.9:${PORTSDIR}/print/freetype2 - -CONFIGURE_ARGS+= --with-ft-prefix=${LOCALBASE} \ - --with-ft-exec-prefix=${LOCALBASE} -PLIST_SUB+= FREETYPE="" -.endif - -# gdkpixbuf -.ifndef(WITH_GDKPIXBUF) -CONFIGURE_ARGS+= --disable-gdk_pixbuf -PLIST_SUB+= GDKPIXBUF="@comment " -.else -USE_GNOME+= gtk20 -PLIST_SUB+= GDKPIXBUF="" -.endif - -# gnomevfs -.ifndef(WITH_GNOMEVFS) -CONFIGURE_ARGS+= --disable-gnome_vfs -PLIST_SUB+= GNOMEVFS="@comment " -.else -USE_GNOME+= gnomevfs2 -PLIST_SUB+= GNOMEVFS="" -.endif - -# gsm -.ifndef(WITH_GSM) -CONFIGURE_ARGS+= --disable-gsm -PLIST_SUB+= GSM="@comment " -.else -LIB_DEPENDS+= gsm.1:${PORTSDIR}/audio/gsm - -PLIST_SUB+= GSM="" -.endif - -# jack -.ifndef(WITH_JACK) -CONFIGURE_ARGS+= --disable-jack -PLIST_SUB+= JACK="@comment " -.else -LIB_DEPENDS+= jack.0:${PORTSDIR}/audio/jack -PLIST_SUB+= JACK="" -.endif - -# Hermes -.ifndef(WITH_HERMES) -CONFIGURE_ARGS+= --disable-hermes -PLIST_SUB+= HERMES="@comment " -.else -LIB_DEPENDS+= Hermes.1:${PORTSDIR}/graphics/Hermes -PLIST_SUB+= HERMES="" -.endif - -# jpeg -.ifndef(WITH_JPEG) -CONFIGURE_ARGS+= --disable-jpeg -PLIST_SUB+= JPEG="@comment " -.else -LIB_DEPENDS+= jpeg.9:${PORTSDIR}/graphics/jpeg - -PLIST_SUB+= JPEG="" -.endif - -# ladspa -.ifndef(WITH_LADSPA) -CONFIGURE_ARGS+= --disable-ladspa -PLIST_SUB+= LADSPA="@comment " -.else -BUILD_DEPENDS+= ${LOCALBASE}/include/ladspa.h:${PORTSDIR}/audio/ladspa - -PLIST_SUB+= LADSPA="" -.endif - -# lame -.ifndef(WITH_LAME) -CONFIGURE_ARGS+= --disable-lame -PLIST_SUB+= LAME="@comment " -.else -LIB_DEPENDS+= mp3lame.0:${PORTSDIR}/audio/lame - -PLIST_SUB+= LAME="" -.endif - -# liba52 -.ifndef(WITH_LIBA52) -CONFIGURE_ARGS+= --disable-a52dec -PLIST_SUB+= LIBA52="@comment " -.else -LIB_DEPENDS+= a52.0:${PORTSDIR}/audio/liba52 - -CONFIGURE_ARGS+= --with-a52dec-prefix=${LOCALBASE} -PLIST_SUB+= LIBA52="" -.endif - -# libaudiofile -.ifndef(WITH_LIBAUDIOFILE) -CONFIGURE_ARGS+= --disable-audiofile -PLIST_SUB+= LIBAUDIOFILE="@comment " -.else -LIB_DEPENDS+= audiofile.0:${PORTSDIR}/audio/libaudiofile - -PLIST_SUB+= LIBAUDIOFILE="" -.endif - -# libcaca -.ifndef(WITH_LIBCACA) -CONFIGURE_ARGS+= --disable-libcaca -PLIST_SUB+= LIBCACA="@comment " -.else -BUILD_DEPENDS+= ${LOCALBASE}/lib/libcaca.a:${PORTSDIR}/graphics/libcaca -PLIST_SUB+= LIBCACA="" -.endif - -# libcdaudio -.ifndef(WITH_LIBCDAUDIO) -CONFIGURE_ARGS+= --disable-cdaudio -PLIST_SUB+= LIBCDAUDIO="@comment " -.else -LIB_DEPENDS+= cdaudio.1:${PORTSDIR}/audio/libcdaudio - -PLIST_SUB+= LIBCDAUDIO="" -.endif - -# libdv -.ifndef(WITH_LIBDV) -CONFIGURE_ARGS+= --disable-libdv -PLIST_SUB+= LIBDV="@comment " -.else -LIB_DEPENDS+= dv.4:${PORTSDIR}/multimedia/libdv - -PLIST_SUB+= LIBDV="" -.endif - -# libdvdnav -.ifndef(WITH_LIBDVDNAV) -CONFIGURE_ARGS+= --disable-dvdnav -PLIST_SUB+= LIBDVDNAV="@comment " -.else -LIB_DEPENDS+= dvdnav.3:${PORTSDIR}/multimedia/libdvdnav - -PLIST_SUB+= LIBDVDNAV="" -.endif - -# libdvdread -.ifndef(WITH_LIBDVDREAD) -CONFIGURE_ARGS+= --disable-dvdread -PLIST_SUB+= LIBDVDREAD="@comment " -.else -LIB_DEPENDS+= dvdread.3:${PORTSDIR}/multimedia/libdvdread - -PLIST_SUB+= LIBDVDREAD="" -.endif - -# libfame -.ifndef(WITH_LIBFAME) -CONFIGURE_ARGS+= --disable-libfame \ - --disable-libfametest -PLIST_SUB+= LIBFAME="@comment " -.else -LIB_DEPENDS+= fame-0.9.1:${PORTSDIR}/multimedia/libfame - -CONFIGURE_ARGS+= --with-libfame-prefix=${LOCALBASE} \ - --with-libfame-exec-prefix=${LOCALBASE} -PLIST_SUB+= LIBFAME="" -.endif - -# libmikmod -.ifndef(WITH_LIBMIKMOD) -CONFIGURE_ARGS+= --disable-libmikmodtest \ - --disable-mikmod -PLIST_SUB+= LIBMIKMOD="@comment " -.else -LIB_DEPENDS+= mikmod.2:${PORTSDIR}/audio/libmikmod - -CONFIGURE_ARGS+= --with-libmikmod-prefix=${LOCALBASE} \ - --with-libmikmod-exec-prefix=${LOCALBASE} -PLIST_SUB+= LIBMIKMOD="" -.endif - -# libmpeg2 -.ifndef(WITH_LIBMPEG2) -CONFIGURE_ARGS+= --disable-mpeg2dec -PLIST_SUB+= LIBMPEG2="@comment " -.else -LIB_DEPENDS+= mpeg2.0:${PORTSDIR}/multimedia/libmpeg2 - -PLIST_SUB+= LIBMPEG2="" -.endif - -# libmusicbrainz -.ifndef(WITH_LIBMUSICBRAINZ) -CONFIGURE_ARGS+= --disable-musicbrainz -PLIST_SUB+= LIBMUSICBRAINZ="@comment " -.else -LIB_DEPENDS+= musicbrainz.4:${PORTSDIR}/audio/libmusicbrainz -PLIST_SUB+= LIBMUSICBRAINZ="" -.endif - -# libshout -.ifndef(WITH_LIBSHOUT) -CONFIGURE_ARGS+= --disable-shout -PLIST_SUB+= LIBSHOUT="@comment " -.else -LIB_DEPENDS+= shout.2:${PORTSDIR}/audio/libshout - -PLIST_SUB+= LIBSHOUT="" -.endif - -# libsidplay -.ifndef(WITH_LIBSIDPLAY) -CONFIGURE_ARGS+= --disable-sidplay -PLIST_SUB+= LIBSIDPLAY="@comment " -.else -LIB_DEPENDS+= sidplay.1:${PORTSDIR}/audio/libsidplay - -PLIST_SUB+= LIBSIDPLAY="" -.endif - -# libsndfile -.ifndef(WITH_LIBSNDFILE) -CONFIGURE_ARGS+= --disable-sndfile -PLIST_SUB+= LIBSNDFILE="@comment " -.else -LIB_DEPENDS+= sndfile.1:${PORTSDIR}/audio/libsndfile -PLIST_SUB+= LIBSNDFILE="" -.endif - -# libtheora -.ifndef(WITH_LIBTHEORA) -CONFIGURE_ARGS+= --disable-theora -PLIST_SUB+= LIBTHEORA="@comment " -.else -LIB_DEPENDS+= theora.0:${PORTSDIR}/graphics/libtheora -PLIST_SUB+= LIBTHEORA="" -.endif - -# libvisual -.ifndef(WITH_LIBVISUAL) -CONFIGURE_ARGS+= --disable-libvisual -PLIST_SUB+= LIBVISUAL="@comment " -.else -LIB_DEPENDS+= visual.0:${PORTSDIR}/graphics/libvisual - -PLIST_SUB+= LIBVISUAL="" -.endif - -# mad -.ifndef(WITH_MAD) -CONFIGURE_ARGS+= --disable-mad -PLIST_SUB+= LIBMAD="@comment " -.else -LIB_DEPENDS+= mad.2:${PORTSDIR}/audio/libmad \ - id3tag.2:${PORTSDIR}/audio/libid3tag - -PLIST_SUB+= LIBMAD="" -.endif - -# mjpegtools -.ifndef(WITH_MJPEGTOOLS) -CONFIGURE_ARGS+= --disable-mpeg2enc --disable-mplex -PLIST_SUB+= MJPEGTOOLS="@comment " -.else -LIB_DEPENDS+= lavjpeg-1.6.2:${PORTSDIR}/multimedia/mjpegtools - -EXTRA_BUILD_DIR+= ext/mpeg2enc -# XXX - make sure CONFIGURE works with mpeg2enc even with "ccache -# c++" ... weird but necessary -CONFIGURE_ENV+= HAVE_CXX=yes - -PLIST_SUB+= MJPEGTOOLS="" -.endif - -# musepack -.ifndef(WITH_MUSEPACK) -CONFIGURE_ARGS+= --disable-musepack -PLIST_SUB+= MUSEPACK="@comment " -.else -LIB_DEPENDS+= musepack.1:${PORTSDIR}/audio/libmusepack - -PLIST_SUB+= MUSEPACK="" -.endif - -# nas -.ifndef(WITH_NAS) -CONFIGURE_ARGS+= --disable-nas -PLIST_SUB+= NAS="@comment " -.else -LIB_DEPENDS+= audio.2:${PORTSDIR}/audio/nas - -PLIST_SUB+= NAS="" -.endif - -# ogg -.ifndef(WITH_OGG) -CONFIGURE_ARGS+= --disable-ogg \ - --disable-oggtest -PLIST_SUB+= OGG="@comment " -.else -LIB_DEPENDS+= ogg.5:${PORTSDIR}/audio/libogg -PLIST_SUB+= OGG="" -.endif - -# oss -.ifdef(WITHOUT_OSS) -CONFIGURE_ARGS+= --disable-oss -PLIST_SUB+= OSS="@comment " -.else -PLIST_SUB+= OSS="" -.endif - -# pango -.ifndef(WITH_PANGO) -CONFIGURE_ARGS+= --disable-pango -PLIST_SUB+= PANGO="@comment " -.else -USE_GNOME+= pango -PLIST_SUB+= PANGO="" -.endif - -# mng -.ifndef(WITH_MNG) -CONFIGURE_ARGS+= --disable-libmng -PLIST_SUB+= MNG="@comment " -.else -LIB_DEPENDS+= mng.1:${PORTSDIR}/graphics/libmng -PLIST_SUB+= MNG="" -.endif - -# png -.ifndef(WITH_PNG) -CONFIGURE_ARGS+= --disable-libpng -PLIST_SUB+= PNG="@comment " -.else -LIB_DEPENDS+= png.5:${PORTSDIR}/graphics/png - -PLIST_SUB+= PNG="" -.endif - -# polypaudio -.ifndef(WITH_POLYPAUDIO) -CONFIGURE_ARGS+= --disable-polyp -PLIST_SUB+= POLYPAUDIO="@comment " -.else -LIB_DEPENDS+= polyp-0.6.0:${PORTSDIR}/audio/polypaudio - -PLIST_SUB+= POLYPAUDIO="" -.endif - -# sdl -.ifndef(WITH_SDL) -CONFIGURE_ARGS+= --disable-sdl \ - --disable-sdltest -PLIST_SUB+= SDL="@comment " -.else -USE_SDL= sdl - -CONFIGURE_ARGS+= --with-sdl-prefix=${LOCALBASE} \ - --with-sdl-exec-prefix=${LOCALBASE} -CONFIGURE_ENV+= SDL_CONFIG=${SDL_CONFIG} -PLIST_SUB+= SDL="" -.endif - -# smoothwave -.ifndef(WITH_SMOOTHWAVE) -CONFIGURE_ARGS+= --disable-smoothwave -PLIST_SUB+= SMOOTHWAVE="@comment " -.else -USE_GNOME+= gtk20 -PLIST_SUB+= SMOOTHWAVE="" -.endif - -# speex -# !!!BROKEN RIGHT NOW!!! - need -devel speex -#.ifndef(WITH_SPEEX) -CONFIGURE_ARGS+= --disable-speex -PLIST_SUB+= SPEEX="@comment " -#.else -#LIB_DEPENDS+= speex.3:${PORTSDIR}/audio/speex -#PLIST_SUB+= SPEEX="" -#.endif - -# swfdec -.ifndef(WITH_SWFDEC) -CONFIGURE_ARGS+= --disable-swfdec -PLIST_SUB+= SWFDEC="@comment " -.else -LIB_DEPENDS+= swfdec-0.3.0:${PORTSDIR}/graphics/swfdec - -CONFIGURE_ARGS+= --enable-swfdec -PLIST_SUB+= SWFDEC="" -.endif - -# vorbis -.ifndef(WITH_VORBIS) -CONFIGURE_ARGS+= --disable-vorbis \ - --disable-vorbistest -PLIST_SUB+= VORBIS="@comment " -.else -LIB_DEPENDS+= vorbis.3:${PORTSDIR}/audio/libvorbis - -CONFIGURE_ARGS+= --with-vorbis=${LOCALBASE} \ - --with-vorbis-libraries=${LOCALBASE}/lib \ - --with-vorbis-includes=${LOCALBASE}/include -PLIST_SUB+= VORBIS="" -.endif - -# vorbisidec -.ifndef(WITH_VORBISIDEC) -CONFIGURE_ARGS+= --disable-ivorbis -PLIST_SUB+= IVORBIS="@comment " -.else -LIB_DEPENDS+= vorbisidec.1:${PORTSDIR}/audio/libtremor -PLIST_SUB+= IVORBIS="" -.endif - -# xine -.ifndef(WITH_XINE) -CONFIGURE_ARGS+= --disable-xine -PLIST_SUB+= XINE="@comment " -.else -CONFIGURE_ARGS+= --enable-xine -LIB_DEPENDS+= xine.12:${PORTSDIR}/multimedia/libxine - -PLIST_SUB+= XINE="" -.endif - -# xvid -.ifndef(WITH_XVID) -CONFIGURE_ARGS+= --disable-xvid -PLIST_SUB+= XVID="@comment " -.else -LIB_DEPENDS+= xvidcore.4:${PORTSDIR}/multimedia/xvid -PLIST_SUB+= XVID="" -.endif - -pre-build: -# This port cannot be CFLAGS safe, using p4 optimizations -# break the mod plugin - @${REINPLACE_CMD} -E \ - -e 's|(-march=pentiu)m4|\1m3|g' \ - -e 's|(-mcpu=pentiu)m4|\1m3|g' \ - -e 's|(-mtune=pentiu)m)4|\1m3|g' \ - ${WRKSRC}/gst/modplug/Makefile \ - ${WRKSRC}/gst/modplug/libmodplug/Makefile - -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-${GST_VERSION} \ - --gst-registry=${PREFIX}/share/gnome/cache/gstreamer-${GST_VERSION}/registry.xml 2>/dev/null - -pre-everything:: -.ifndef(WITH_AALIB) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_AALIB to enable aalib Video plugin' -.endif -.ifdef(WITH_ARTS) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITHOUT_ARTS to disable aRts Audio plugin' -.else - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_ARTS to enable aRts Audio plugin' -.endif -.ifndef(WITH_CDPARANOIA) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_CDPARANOIA to enable cdparanoia Audio plugin' -.endif -.ifndef(WITH_CDROM_DEVICE) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> The default CDROM device is ${DEFAULT_CDROM_DEVICE}' - @${ECHO_MSG} '===> Define WITH_CDROM_DEVICE if you want to change the default' - @${ECHO_MSG} '===> For example, make WITH_CDROM_DEVICE="/dev/somedevice"' -.endif -.ifndef(WITH_DTS) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_DTS to enable DTS decoding support' -.endif -.ifndef(WITH_DVD_DEVICE) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> The default DVD device is ${DEFAULT_DVD_DEVICE}' - @${ECHO_MSG} '===> Define WITH_DVD_DEVICE if you want to change the default' - @${ECHO_MSG} '===> For example, make WITH_DVD_DEVICE="/dev/somedevice"' -.endif -.ifndef(WITH_ESOUND) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_ESOUND to enable esound Audio plugin' -.endif -.ifndef(WITH_FAAC) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_FAAC to enable faac Audio plugin' -.endif -.ifndef(WITH_FAAD) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_FAAD to enable faad Audio plugin' -.endif -.ifndef(WITH_FLAC) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_FLAC to enable flac Audio plugin' -.endif -.ifndef(WITH_FREETYPE) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_FREETYPE to enable freetype support' -.endif -.ifndef(WITH_GDKPIXBUF) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_GDKPIXBUF to enable gdk-pixbuf plugin' -.endif -.ifndef(WITH_GSM) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_GSM to enable gsm Audio plugin' -.endif -.ifndef(WITH_GNOMEVFS) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_GNOMEVFS to enable gnomevfs Network plugin' -.endif -.ifndef(WITH_JACK) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_JACK to enable jackd audio plugin' -.endif -.ifndef(WITH_HERMES) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_HERMES to enable Hermes colorspace plugin' -.endif -.ifndef(WITH_JPEG) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_JPEG to enable jpeg Video plugin' -.endif -.ifndef(WITH_LADSPA) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_LADSPA to enable LADSPA framework Audio plugin' -.endif -.ifndef(WITH_LAME) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_LAME to enable lame MP3 Audio plugin' -.endif -.ifndef(WITH_LIBA52) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_LIBA52 to enable liba52 AC3 Audio plugin' -.endif -.ifndef(WITH_LIBAUDIOFILE) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_LIBAUDIOFILE to enable libaudiofile Audio plugin' -.endif -.ifndef(WITH_LIBCACA) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_LIBCACA to enable libcaca Video plugin' -.endif -.ifndef(WITH_LIBCDAUDIO) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_LIBCDAUDIO to enable libcdaudio Audio plugin' -.endif -.ifndef(WITH_LIBDV) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_LIBDV to enable libdv Video plugin' -.endif -.ifndef(WITH_LIBDVDNAV) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_LIBDVDNAV to enable libdvdnav Video plugin' -.endif -.ifndef(WITH_LIBDVDREAD) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_LIBDVDREAD to enable libdvdread Video plugin' -.endif -.ifndef(WITH_LIBFAME) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_LIBFAME to enable libfame Video plugin' -.endif -.ifndef(WITH_LIBMIKMOD) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_LIBMIKMOD to enable libmikmod Audio plugin' -.endif -.ifndef(WITH_LIBMPEG2) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_LIBMPEG2 to enable libmpeg2 Video plugin' -.endif -.ifndef(WITH_LIBMUSICBRAINZ) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_LIBMUSICBRAINZ to enable libmusicbrainz Audio plugin' -.endif -.ifndef(WITH_LIBSHOUT) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_LIBSHOUT to enable libshout Audio plugin' -.endif -.ifndef(WITH_LIBSIDPLAY) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_LIBSIDPLAY to enable libsidplay Audio plugin' -.endif -.ifndef(WITH_LIBSNDFILE) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_LIBSNDFILE to enable libsndfile Audio plugin' -.endif -.ifndef(WITH_LIBTHEORA) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_LIBTHEORA to enable libtheora Video plugin' -.endif -.ifndef(WITH_LIBVISUAL) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_LIBVISUAL to enable libvisual Video plugin' -.endif -.ifndef(WITH_MAD) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_MAD to enable mad Audio plugin' -.endif -.ifndef(WITH_MNG) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_MNG to enable libmng plugin' -.endif -.ifndef(WITH_MUSEPACK) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_MUSEPACK to enable musepack Audio plugin' -.endif -.ifndef(WITH_NAS) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_NAS to enable nas Audio plugin' -.endif -.ifndef(WITHOUT_OSS) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITHOUT_OSS to disable OSS Audio plugin' -.endif -.ifndef(WITH_PANGO) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_PANGO to enable pango textoverlay plugin' -.endif -.ifndef(WITH_PNG) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_PNG to enable png Video plugin' -.endif -.ifndef(WITH_POLYPAUDIO) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_POLYPAUDIO to enable polypaudio audio plugin' -.endif -.ifndef(WITH_SDL) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_SDL to enable SDL Video plugin' -.endif -.ifndef(WITH_SMOOTHWAVE) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_SMOOTHWAVE to enable Smoothwave Video plugin' -.endif -.ifndef(WITH_SPEEX) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_SPEEX to enable Speex Video plugin' -.endif -.ifndef(WITH_SWFDEC) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_SWFDEC to enable Flash Video plugin' -.endif -.ifndef(WITH_VORBIS) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_VORBIS to enable vorbis Audio plugin' -.endif -.ifndef(WITH_VORBISIDEC) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_VORBISIDEC to enable vorbisidec Audio plugin' -.endif -.ifndef(WITH_XINE) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_XINE to enable xine plugin' -.endif -.ifndef(WITH_XVID) - @${ECHO_MSG} '===>' - @${ECHO_MSG} '===> Define WITH_XVID to enable xvid Video plugin' -.endif - -.include <bsd.port.post.mk> diff --git a/multimedia/gstreamer-plugins80/distinfo b/multimedia/gstreamer-plugins80/distinfo deleted file mode 100644 index 1c4d6a648cc2..000000000000 --- a/multimedia/gstreamer-plugins80/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (gnome2/gst-plugins-0.8.6.tar.bz2) = e6b04215e7d928bd2fcce390ab406ffd -SIZE (gnome2/gst-plugins-0.8.6.tar.bz2) = 2033762 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_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_musepack_gstmusepackdec.cpp b/multimedia/gstreamer-plugins80/files/patch-ext_musepack_gstmusepackdec.cpp deleted file mode 100644 index 1b1799ca9a98..000000000000 --- a/multimedia/gstreamer-plugins80/files/patch-ext_musepack_gstmusepackdec.cpp +++ /dev/null @@ -1,61 +0,0 @@ ---- ext/musepack/gstmusepackdec.cpp.orig Sun Nov 7 19:30:06 2004 -+++ ext/musepack/gstmusepackdec.cpp Thu Dec 16 16:31:42 2004 -@@ -30,14 +30,24 @@ - GST_STATIC_CAPS ("audio/x-musepack") - ); - -+#ifdef MPC_FIXED_POINT -+#define BASE_CAPS \ -+ "audio/x-raw-int, " \ -+ "signed = (bool) TRUE, " \ -+ "width = (int) 32, " \ -+ "depth = (int) 32" -+#else -+#define BASE_CAPS \ -+ "audio/x-raw-float, " \ -+ "width = (int) 32, " \ -+ "buffer-frames = (int) 0" -+#endif -+ - static GstStaticPadTemplate src_template = GST_STATIC_PAD_TEMPLATE ("src", - GST_PAD_SRC, - GST_PAD_ALWAYS, -- GST_STATIC_CAPS ("audio/x-raw-int, " -+ GST_STATIC_CAPS (BASE_CAPS ", " - "endianness = (int) BYTE_ORDER, " -- "signed = (bool) TRUE, " -- "width = (int) 32, " -- "depth = (int) 32, " - "rate = (int) [ 8000, 96000 ], " - "channels = (int) [ 1, 2 ]") - ); -@@ -352,6 +362,7 @@ - gst_musepack_stream_init (GstMusepackDec * musepackdec) - { - StreamInfo si = StreamInfo (); -+ GstCaps *caps; - - if (musepackdec->dec) - delete musepackdec->dec; -@@ -379,15 +390,12 @@ - return FALSE; - } - -- if (!gst_pad_set_explicit_caps (musepackdec->srcpad, -- gst_caps_new_simple ("audio/x-raw-int", -- "width", G_TYPE_INT, 32, -- "depth", G_TYPE_INT, 32, -- "endianness", G_TYPE_INT, G_BYTE_ORDER, -- "channels", G_TYPE_INT, si.simple.Channels, -- "rate", G_TYPE_INT, si.simple.SampleFreq, -- "signed", G_TYPE_BOOLEAN, TRUE, -- NULL))) { -+ caps = gst_caps_from_string (BASE_CAPS); -+ gst_caps_set_simple (caps, -+ "endianness", G_TYPE_INT, G_BYTE_ORDER, -+ "channels", G_TYPE_INT, si.simple.Channels, -+ "rate", G_TYPE_INT, si.simple.SampleFreq, NULL); -+ if (!gst_pad_set_explicit_caps (musepackdec->srcpad, caps)) { - GST_ELEMENT_ERROR (musepackdec, CORE, NEGOTIATION, (NULL), (NULL)); - delete musepackdec->dec; - musepackdec->dec = NULL; diff --git a/multimedia/gstreamer-plugins80/files/patch-gst_tcp_gsttcpclientsrc.h b/multimedia/gstreamer-plugins80/files/patch-gst_tcp_gsttcpclientsrc.h deleted file mode 100644 index 9d4414eb68dd..000000000000 --- a/multimedia/gstreamer-plugins80/files/patch-gst_tcp_gsttcpclientsrc.h +++ /dev/null @@ -1,11 +0,0 @@ ---- gst/tcp/gsttcpclientsrc.h.orig Wed Jun 23 23:44:07 2004 -+++ gst/tcp/gsttcpclientsrc.h Wed Jun 23 23:44:26 2004 -@@ -29,6 +29,8 @@ - #endif /* __cplusplus */ - - #include <netdb.h> /* sockaddr_in */ -+#include <sys/types.h> -+#include <sys/socket.h> - #include <netinet/in.h> /* sockaddr_in */ - #include <unistd.h> - #include "gsttcp.h" 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 b258cd10acaf..000000000000 --- a/multimedia/gstreamer-plugins80/pkg-plist +++ /dev/null @@ -1,232 +0,0 @@ -bin/gst-launch-ext-%%VERSION%% -bin/gst-visualise-%%VERSION%% -include/gstreamer-%%VERSION%%/gst/audio/gstaudiofilter.h -include/gstreamer-%%VERSION%%/gst/audio/audioclock.h -include/gstreamer-%%VERSION%%/gst/audio/audio.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/gconf/gconf.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 -%%LIBA52%%lib/gstreamer-%%VERSION%%/libgsta52dec.so -%%AALIB%%lib/gstreamer-%%VERSION%%/libgstaasink.so -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 -%%ARTS%%lib/gstreamer-%%VERSION%%/libgstartsdsink.so -lib/gstreamer-%%VERSION%%/libgstasf.so -lib/gstreamer-%%VERSION%%/libgstaudioconvert.so -lib/gstreamer-%%VERSION%%/libgstaudiofilter.so -lib/gstreamer-%%VERSION%%/libgstaudiorate.so -lib/gstreamer-%%VERSION%%/libgstaudio.so -%%LIBAUDIOFILE%%lib/gstreamer-%%VERSION%%/libgstaudiofile.so -lib/gstreamer-%%VERSION%%/libgstaudioscale.so -lib/gstreamer-%%VERSION%%/libgstauparse.so -lib/gstreamer-%%VERSION%%/libgstavi.so -%%LIBCACA%%lib/gstreamer-%%VERSION%%/libgstcacasink.so -%%LIBCDAUDIO%%lib/gstreamer-%%VERSION%%/libgstcdaudio.so -%%CDPARANOIA%%lib/gstreamer-%%VERSION%%/libgstcdparanoia.so -lib/gstreamer-%%VERSION%%/libgstcdplayer.so -lib/gstreamer-%%VERSION%%/libgstcdxaparse.so -lib/gstreamer-%%VERSION%%/libgstchart.so -%%HERMES%%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 -%%DTS%%lib/gstreamer-%%VERSION%%/libgstdtsdec.so -%%LIBDV%%lib/gstreamer-%%VERSION%%/libgstdvdec.so -%%LIBDVDNAV%%lib/gstreamer-%%VERSION%%/libgstdvdnavsrc.so -%%LIBDVDREAD%%lib/gstreamer-%%VERSION%%/libgstdvdreadsrc.so -lib/gstreamer-%%VERSION%%/libgstefence.so -lib/gstreamer-%%VERSION%%/libgsteffectv.so -lib/gstreamer-%%VERSION%%/libgstequalizer.so -%%ESOUND%%lib/gstreamer-%%VERSION%%/libgstesd.so -%%FAAC%%lib/gstreamer-%%VERSION%%/libgstfaac.so -%%FAAD%%lib/gstreamer-%%VERSION%%/libgstfaad.so -lib/gstreamer-%%VERSION%%/libgstfestival.so -lib/gstreamer-%%VERSION%%/libgstffmpegcolorspace.so -lib/gstreamer-%%VERSION%%/libgstfilter.so -%%FLAC%%lib/gstreamer-%%VERSION%%/libgstflac.so -lib/gstreamer-%%VERSION%%/libgstflxdec.so -lib/gstreamer-%%VERSION%%/libgstgamma.so -%%GDKPIXBUF%%lib/gstreamer-%%VERSION%%/libgstgdkpixbuf.so -lib/gstreamer-%%VERSION%%/libgstglimagesink.so -%%GNOMEVFS%%lib/gstreamer-%%VERSION%%/libgstgnomevfs.so -lib/gstreamer-%%VERSION%%/libgstgoom.so -%%GSM%%lib/gstreamer-%%VERSION%%/libgstgsm.so -%%HERMES%%lib/gstreamer-%%VERSION%%/libgsthermescolorspace.so -lib/gstreamer-%%VERSION%%/libgstidct.so -lib/gstreamer-%%VERSION%%/libgstinterleave.so -%%IVORBIS%%lib/gstreamer-%%VERSION%%/libgstivorbis.so -%%JACK%%lib/gstreamer-%%VERSION%%/libgstjack.so -%%JPEG%%lib/gstreamer-%%VERSION%%/libgstjpeg.so -%%LADSPA%%lib/gstreamer-%%VERSION%%/libgstladspa.so -%%LAME%%lib/gstreamer-%%VERSION%%/libgstlame.so -lib/gstreamer-%%VERSION%%/libgstlevel.so -%%LIBFAME%%lib/gstreamer-%%VERSION%%/libgstlibfame.so -%%LIBVISUAL%%lib/gstreamer-%%VERSION%%/libgstlibvisual.so -%%LIBMAD%%lib/gstreamer-%%VERSION%%/libgstmad.so -lib/gstreamer-%%VERSION%%/libgstmatroska.so -lib/gstreamer-%%VERSION%%/libgstmedian.so -%%LIBMIKMOD%%lib/gstreamer-%%VERSION%%/libgstmikmod.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 -%%LIBMPEG2%%lib/gstreamer-%%VERSION%%/libgstmpeg2dec.so -%%MJPEGTOOLS%%lib/gstreamer-%%VERSION%%/libgstmpeg2enc.so -lib/gstreamer-%%VERSION%%/libgstmpeg2subt.so -lib/gstreamer-%%VERSION%%/libgstmpegaudio.so -lib/gstreamer-%%VERSION%%/libgstmpegaudioparse.so -lib/gstreamer-%%VERSION%%/libgstmpegstream.so -%%MNG%%lib/gstreamer-%%VERSION%%/libgstmng.so -%%MJPEGTOOLS%%lib/gstreamer-%%VERSION%%/libgstmplex.so -lib/gstreamer-%%VERSION%%/libgstmulaw.so -lib/gstreamer-%%VERSION%%/libgstmultifilesink.so -lib/gstreamer-%%VERSION%%/libgstmultipart.so -%%MUSEPACK%%lib/gstreamer-%%VERSION%%/libgstmusepack.so -%%NAS%%lib/gstreamer-%%VERSION%%/libgstnassink.so -lib/gstreamer-%%VERSION%%/libgstnavigationtest.so -%%OGG%%lib/gstreamer-%%VERSION%%/libgstogg.so -lib/gstreamer-%%VERSION%%/libgstoverlay.so -%%OSS%%lib/gstreamer-%%VERSION%%/libgstossaudio.so -lib/gstreamer-%%VERSION%%/libgstpassthrough.so -lib/gstreamer-%%VERSION%%/libgstplaybin.so -lib/gstreamer-%%VERSION%%/libgstplayondemand.so -%%PNG%%lib/gstreamer-%%VERSION%%/libgstpng.so -lib/gstreamer-%%VERSION%%/libgstqtdemux.so -lib/gstreamer-%%VERSION%%/libgstresample.so -lib/gstreamer-%%VERSION%%/libgstrmdemux.so -lib/gstreamer-%%VERSION%%/libgstriff.so -lib/gstreamer-%%VERSION%%/libgstrtjpeg.so -lib/gstreamer-%%VERSION%%/libgstrtp.so -%%SDL%%lib/gstreamer-%%VERSION%%/libgstsdlvideosink.so -%%LIBSHOUT%%lib/gstreamer-%%VERSION%%/libgstshout.so -%%LIBSIDPLAY%%lib/gstreamer-%%VERSION%%/libgstsid.so -lib/gstreamer-%%VERSION%%/libgstsilence.so -lib/gstreamer-%%VERSION%%/libgstsinesrc.so -%%SMOOTHWAVE%%lib/gstreamer-%%VERSION%%/libgstsmoothwave.so -lib/gstreamer-%%VERSION%%/libgstsmooth.so -lib/gstreamer-%%VERSION%%/libgstsmpte.so -%%PNG%%lib/gstreamer-%%VERSION%%/libgstsnapshot.so -%%LIBSNDFILE%%lib/gstreamer-%%VERSION%%/libgstsndfile.so -lib/gstreamer-%%VERSION%%/libgstspectrum.so -lib/gstreamer-%%VERSION%%/libgstspeed.so -%%SPEEX%%lib/gstreamer-%%VERSION%%/libgstspeex.so -lib/gstreamer-%%VERSION%%/libgststereo.so -%%SWFDEC%%lib/gstreamer-%%VERSION%%/libgstswfdec.so -lib/gstreamer-%%VERSION%%/libgstswitch.so -lib/gstreamer-%%VERSION%%/libgstsynaesthesia.so -lib/gstreamer-%%VERSION%%/libgsttagedit.so -lib/gstreamer-%%VERSION%%/libgsttcp.so -lib/gstreamer-%%VERSION%%/libgsttextoverlay.so -%%LIBTHEORA%%lib/gstreamer-%%VERSION%%/libgsttheora.so -lib/gstreamer-%%VERSION%%/libgsttimeoverlay.so -%%LIBMUSICBRAINZ%%lib/gstreamer-%%VERSION%%/libgsttrm.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 -%%VORBIS%%lib/gstreamer-%%VERSION%%/libgstvorbis.so -lib/gstreamer-%%VERSION%%/libgstwavenc.so -lib/gstreamer-%%VERSION%%/libgstwavparse.so -lib/gstreamer-%%VERSION%%/libgstximagesink.so -%%XINE%%lib/gstreamer-%%VERSION%%/libgstxine.so -%%XVID%%lib/gstreamer-%%VERSION%%/libgstxvid.so -lib/gstreamer-%%VERSION%%/libgstxvimagesink.so -lib/gstreamer-%%VERSION%%/libgstxwindowlistener.so -lib/gstreamer-%%VERSION%%/libgsty4menc.so -%%POLYPAUDIO%%lib/gstreamer-%%VERSION%%/libpolypaudio.so -lib/libgstgconf-%%VERSION%%.a -lib/libgstgconf-%%VERSION%%.so -lib/libgstgconf-%%VERSION%%.so.%%SHLIB_VERSION%% -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-gconf-%%VERSION%%.pc -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 -@unexec rmdir %D/lib/gstreamer-%%VERSION%% 2>/dev/null || true -@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/gconf -@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 %%X11BASE%%/bin/gst-register-%%VERSION%% --gst-registry=%D/share/gnome/cache/gstreamer-%%VERSION%%/registry.xml 2>/dev/null || true -@unexec %%X11BASE%%/bin/gst-register-%%VERSION%% --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 3ebee5b497aa..000000000000 --- a/multimedia/gstreamer80/Makefile +++ /dev/null @@ -1,59 +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.8 -CATEGORIES= multimedia -MASTER_SITES= http://gstreamer.freedesktop.org/src/gstreamer/ \ - ${MASTER_SITE_GNOME} -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 - -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.mk> diff --git a/multimedia/gstreamer80/distinfo b/multimedia/gstreamer80/distinfo deleted file mode 100644 index bd43f541e1d7..000000000000 --- a/multimedia/gstreamer80/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (gnome2/gstreamer-0.8.8.tar.bz2) = 31a796592433eb250486bfae0d51238d -SIZE (gnome2/gstreamer-0.8.8.tar.bz2) = 1408026 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 b66b7062f37b..000000000000 --- a/multimedia/gstreamer80/files/patch-gst::cothreads.c +++ /dev/null @@ -1,22 +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 */ -@@ -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-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/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 607ea65c4225..000000000000 --- a/multimedia/gstreamer80/pkg-plist +++ /dev/null @@ -1,129 +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/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 -@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 95290ce90d08..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= 1 -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 5cc13d0e2823..000000000000 --- a/multimedia/kdemultimedia4/Makefile +++ /dev/null @@ -1,76 +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-* - -LIB_DEPENDS+= audiofile:${PORTSDIR}/audio/libaudiofile \ - FLAC:${PORTSDIR}/audio/flac \ - cdda_paranoia:${PORTSDIR}/audio/cdparanoia \ - mad:${PORTSDIR}/audio/libmad \ - musicbrainz:${PORTSDIR}/audio/libmusicbrainz \ - ogg:${PORTSDIR}/audio/libogg \ - speex:${PORTSDIR}/audio/speex \ - tag:${PORTSDIR}/audio/taglib \ - tunepimp:${PORTSDIR}/audio/libtunepimp \ - vorbis:${PORTSDIR}/audio/libvorbis - -USE_KDELIBS_VER=3 -PREFIX= ${KDE_PREFIX} - -USE_BZIP2= yes -USE_GMAKE= yes -USE_REINPLACE= yes -GNU_CONFIGURE= yes -_NO_KDE_FINAL= yes -_NO_KDE_CLOSURE=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+=mpeglib mpeglib_artsplug xine_artsplugin - -OPTIONS= MPEGLIB "Use mpeglib for audio playback" on \ - XINE "Enable support for video playback using libxine" off - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" -.include <bsd.port.pre.mk> - -.if defined(WITH_XINE) -RUN_DEPENDS= ${LOCALBASE}/lib/libarts_xine.la:${PORTSDIR}/multimedia/xine_artsplugin -.endif - -.if !defined(WITHOUT_MPEGLIB) -RUN_DEPENDS+= mpeglibartsplay:${PORTSDIR}/audio/mpeglib_artsplug -.elseif defined(WITHOUT_MPEGLIB) -# Use the KFile plugins. Those can't do streaming, but work better with -# some buggy(?) sound drivers in -STABLE. -.endif - -.if defined(DO_NOT_COMPILE) -CONFIGURE_ENV+= DO_NOT_COMPILE="${DO_NOT_COMPILE}" -.endif # defined(DO_NOT_COMPILE) - -pre-configure: - ${REINPLACE_CMD} -e 's|-lc_r|${PTHREAD_LIBS}|g' ${WRKSRC}/configure - -post-install: - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/multimedia/kdemultimedia4/distinfo b/multimedia/kdemultimedia4/distinfo deleted file mode 100644 index 86bf7c8924a6..000000000000 --- a/multimedia/kdemultimedia4/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kdemultimedia-3.3.2.tar.bz2) = 2f393da809542dab5bf75bf7a91d1ec0 -SIZE (KDE/kdemultimedia-3.3.2.tar.bz2) = 5384470 diff --git a/multimedia/kdemultimedia4/files/patch-akode-lib-localfile.h b/multimedia/kdemultimedia4/files/patch-akode-lib-localfile.h deleted file mode 100644 index e1fad24c49fb..000000000000 --- a/multimedia/kdemultimedia4/files/patch-akode-lib-localfile.h +++ /dev/null @@ -1,23 +0,0 @@ -=================================================================== -RCS file: /home/kde/kdemultimedia/akode/lib/localfile.h,v -retrieving revision 1.6 -retrieving revision 1.7 -diff -u -r1.6 -r1.7 ---- akode/lib/localfile.h 2004/07/29 14:45:13 1.6 -+++ akode/lib/localfile.h 2004/09/19 19:16:50 1.7 -@@ -23,6 +23,15 @@ - - #include "file.h" - -+#ifdef __FreeBSD__ -+// There is an unfortunate #define in some obscure FBSD system -+// header that turns fileno into a macro to account for threading -+// issues; we undef it in this case. -+#ifdef fileno -+#undef fileno -+#endif -+#endif -+ - namespace aKode { - - //! An implementation of the File interface for local-file access 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/files/patch-configure b/multimedia/kdemultimedia4/files/patch-configure deleted file mode 100644 index 7185d93fc46b..000000000000 --- a/multimedia/kdemultimedia4/files/patch-configure +++ /dev/null @@ -1,20 +0,0 @@ ---- configure.orig Fri May 2 15:23:56 2003 -+++ configure Fri May 2 15:24:28 2003 -@@ -26016,7 +26016,7 @@ fi - - echo "$as_me:$LINENO: result: $ac_cv_x86_sse" >&5 - echo "${ECHO_T}$ac_cv_x86_sse" >&6 --if eval "test \"`echo `$ac_cv_x86_sse\" = yes"; then -+if test $ac_cv_x86_sse = yes; then - - cat >>confdefs.h <<\_ACEOF - #define HAVE_X86_SSE 1 -@@ -32634,7 +32634,7 @@ - echo $ECHO_N "(cached) $ECHO_C" >&6 - else - ac_check_lib_save_LIBS=$LIBS --LIBS="-lFLAC $LIBS" -+LIBS="-lFLAC -lm $LIBS" - cat >conftest.$ac_ext <<_ACEOF - /* #line $LINENO "configure" */ - /* confdefs.h. */ 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 39e1068a90ce..000000000000 --- a/multimedia/kdemultimedia4/pkg-plist +++ /dev/null @@ -1,1156 +0,0 @@ -bin/artsbuilder -bin/artscontrol -bin/juk -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/akode/akodelib.h -include/akode/audiobuffer.h -include/akode/audioconfiguration.h -include/akode/audioframe.h -include/akode/crossfader.h -include/akode/decoder.h -include/akode/encoder.h -include/akode/fast_resampler.h -include/akode/file.h -include/akode/framedecoder.h -include/akode/frametostream_decoder.h -include/akode/localfile.h -include/akode/mmapfile.h -include/akode/pluginhandler.h -include/akode/resampler.h -include/akode/sink.h -include/akode/streamdecoder.h -include/akode/streamtoframe_decoder.h -include/akode/wav_decoder.h -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_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/libakode.la -lib/libakode.so -lib/libakode.so.1 -lib/libakode_mpc_decoder.la -lib/libakode_mpc_decoder.so -lib/libakode_mpeg_decoder.la -lib/libakode_mpeg_decoder.so -lib/libakode_xiph_decoder.la -lib/libakode_xiph_decoder.so -lib/libarts_akode.la -lib/libarts_akode.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_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/akodeMPCPlayObject.mcopclass -lib/mcop/akodeMPEGPlayObject.mcopclass -lib/mcop/akodePlayObject.mcopclass -lib/mcop/akodeSpeexStreamPlayObject.mcopclass -lib/mcop/akodeVorbisStreamPlayObject.mcopclass -lib/mcop/akodeXiphPlayObject.mcopclass -lib/mcop/akodearts.mcopclass -lib/mcop/akodearts.mcoptype -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/juk.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_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/juk/jukui-rtl.rc -share/apps/juk/jukui.rc -share/apps/juk/pics/playing.png -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/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/jukservicemenu.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/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/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_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/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/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/juk.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/juk.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/actions/juk_dock.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/juk.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/juk.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/juk.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/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_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/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/juk/pics -@dirrm share/apps/juk -@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 include/akode -@dirrm etc/xdg/menus/applications-merged diff --git a/multimedia/kmplayer-kde4/Makefile b/multimedia/kmplayer-kde4/Makefile deleted file mode 100644 index 5d8e4f4c4372..000000000000 --- a/multimedia/kmplayer-kde4/Makefile +++ /dev/null @@ -1,95 +0,0 @@ -# New ports collection makefile for: KMplayer -# Date created: Jan 31, 2003 -# Whom: will -# -# $FreeBSD$ -# - -PORTNAME= kmplayer -DISTVERSION= 0.8.4-rc4b -PORTREVISION= 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 - -#EXTRA_PATCHES= ${.CURDIR}/../../x11/kde3/files/extrapatch-configure -EXTRA_PATCHES= ${PORTSDIR}/x11/kde3/files/extrapatch-configure - -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_GNOME= gstreamerplugins - -### -## 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> - -### -## Internal Detection -### -# gstreamer -.if ${HAVE_GNOME:Mgstreamerplugins} -WITH_GSTREAMER=yes -.endif - -### -## Support Activation -### -# gstreamer -.undef WITH_GSTREAMER -.if defined(WITH_GSTREAMER) -USE_GNOME+= gstreamerplugins - -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 6834ae90202f..000000000000 --- a/multimedia/kmplayer-kde4/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (kmplayer-0.8.4-rc4b.tar.bz2) = 0d7bf995b07982872d6fb2ac4a5e283c -SIZE (kmplayer-0.8.4-rc4b.tar.bz2) = 571593 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 d511ad2df3d3..000000000000 --- a/multimedia/kmplayer-kde4/files/patch-src::kmplayer.desktop +++ /dev/null @@ -1,11 +0,0 @@ ---- src/kmplayer.desktop.orig Wed Nov 10 23:22:35 2004 -+++ src/kmplayer.desktop Wed Nov 10 23:24:51 2004 -@@ -35,7 +35,7 @@ - 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; -+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;application/vnd.ms-asf;application/vnd.rn-realmedia;audio/ac3;audio/vorbis;audio/x-matroska;video/x-matroska;video/x-ogm; - 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 d80339eeac3e..000000000000 --- a/multimedia/kmplayer-kde4/pkg-plist +++ /dev/null @@ -1,54 +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/icons/crystalsvg/scalable/apps/kmplayer.svgz -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/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/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/crystalsvg/scalable/apps 2>/dev/null || true -@unexec rmdir %D/share/icons/crystalsvg/scalable 2>/dev/null || true -@unexec rmdir %D/share/icons/crystalsvg 2>/dev/null || true -@unexec rmdir %D/share/icons 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 28e74ebbb38a..000000000000 --- a/multimedia/kplayer-kde4/Makefile +++ /dev/null @@ -1,26 +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 -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 acb49d1b0f37..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://ldvd9to5.gff-clan.net/ldvd9to5/ -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 f398b6d9485d..000000000000 --- a/multimedia/libdca/Makefile +++ /dev/null @@ -1,21 +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://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/libtheora/Makefile b/multimedia/libtheora/Makefile deleted file mode 100644 index 4cbd3bb98a7c..000000000000 --- a/multimedia/libtheora/Makefile +++ /dev/null @@ -1,50 +0,0 @@ -# New ports collection makefile for: theora -# Date created: 09 februari 2003 -# Whom: Koop Mast <kwm@rainbow-runner.nl> -# -# $FreeBSD$ -# - -PORTNAME= libtheora -PORTVERSION= 1.0.a3 -CATEGORIES= graphics -MASTER_SITES= http://www.theora.org/files/ -DISTNAME= ${PORTNAME}-${PORTVERSION:S/.a3/alpha3/} - -MAINTAINER= kwm@FreeBSD.org -COMMENT= Theora video codec for the Ogg multimedia streaming system - -LIB_DEPENDS= vorbis.3:${PORTSDIR}/audio/libvorbis - -WRKSRC= ${WRKDIR}/${DISTNAME} - -USE_REINPLACE= yes -USE_LIBTOOL_VER=13 -INSTALLS_SHLIB= yes -GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include " \ - LDFLAGS="-L${LOCALBASE}/lib" \ - LIBS="${PTHEAD_LIBS}" -CONFIGURE_ARGS= --disable-sdltest \ - --enable-shared - -post-patch: - @${REINPLACE_CMD} -e 's|sdl-config|sdl11-config|g; \ - s|-O2||g' ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's|SDL/SDL.h|SDL11/SDL.h|g; \ - s|machine/soundcard.h|sys/soundcard.h|g' \ - ${WRKSRC}/examples/player_example.c - @${REINPLACE_CMD} -e 's|-pthread|${PTHREAD_LIBS}|g' \ - ${WRKSRC}/examples/Makefile.in - -do-install: - for i in ${WRKSRC}/lib/.libs/libtheora.so.0 \ - ${WRKSRC}/lib/.libs/libtheora.so \ - ${WRKSRC}/lib/.libs/libtheora.a ; do \ - ${INSTALL_DATA} $$i ${PREFIX}/lib ; \ - done - @${MKDIR} ${PREFIX}/include/theora - @${INSTALL_DATA} ${WRKSRC}/include/theora/theora.h \ - ${PREFIX}/include/theora/ - -.include <bsd.port.mk> diff --git a/multimedia/libtheora/distinfo b/multimedia/libtheora/distinfo deleted file mode 100644 index 3f966da0822a..000000000000 --- a/multimedia/libtheora/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (libtheora-1.0alpha3.tar.gz) = eab566a0c7fdc21da1ce503edfa43bb4 -SIZE (libtheora-1.0alpha3.tar.gz) = 1015002 diff --git a/multimedia/libtheora/files/patch-Makefile.in b/multimedia/libtheora/files/patch-Makefile.in deleted file mode 100644 index ad71736b4e26..000000000000 --- a/multimedia/libtheora/files/patch-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in.orig Sat Mar 20 06:43:22 2004 -+++ Makefile.in Tue Mar 23 00:28:57 2004 -@@ -148,7 +148,7 @@ - - AUTOMAKE_OPTIONS = foreign dist-zip - --SUBDIRS = lib include doc examples debian -+SUBDIRS = lib include doc debian - - EXTRA_DIST = COPYING autogen.sh win32 - subdir = . diff --git a/multimedia/libtheora/pkg-descr b/multimedia/libtheora/pkg-descr deleted file mode 100644 index 6370a23db61d..000000000000 --- a/multimedia/libtheora/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -Theora is Xiph.Org's video codec, intended for use within the Ogg -project's Ogg multimedia streaming system. Theora is derived -directly from On2's VP3 codec. - -This is alpha testing software; the API will probably change. - -WWW: http://www.theora.org diff --git a/multimedia/libtheora/pkg-plist b/multimedia/libtheora/pkg-plist deleted file mode 100644 index aeaca0944fe0..000000000000 --- a/multimedia/libtheora/pkg-plist +++ /dev/null @@ -1,5 +0,0 @@ -include/theora/theora.h -lib/libtheora.a -lib/libtheora.so -lib/libtheora.so.0 -@dirrm include/theora diff --git a/multimedia/mp4v2/Makefile b/multimedia/mp4v2/Makefile deleted file mode 100644 index 67493f34a88c..000000000000 --- a/multimedia/mp4v2/Makefile +++ /dev/null @@ -1,53 +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_INC_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} < 502110 -USE_GCC= 3.4 -.endif - -post-patch: - @${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-ltmain.sh b/multimedia/mp4v2/files/patch-ltmain.sh deleted file mode 100644 index b7b985b46652..000000000000 --- a/multimedia/mp4v2/files/patch-ltmain.sh +++ /dev/null @@ -1,15 +0,0 @@ ---- ltmain.sh.orig Thu Sep 30 04:09:46 2004 -+++ ltmain.sh Thu Sep 30 04:11:06 2004 -@@ -5425,10 +5425,12 @@ - fi - - # Install the pseudo-library for information purposes. -+ if /usr/bin/false; then - name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` - instname="$dir/$name"i - $show "$install_prog $instname $destdir/$name" - $run eval "$install_prog $instname $destdir/$name" || exit $? -+ fi - - # Maybe install the static library, too. - test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" 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 1bebb92d58a0..000000000000 --- a/multimedia/pvrxxx/Makefile +++ /dev/null @@ -1,135 +0,0 @@ -# -# New ports collection makefile for: pvr250 -# Date created: 10 October 2004 -# Whom: Edwin Groothuis <edwin@mavetju.org> -# -# $FreeBSD$ -# - -PORTNAME= pvr250 -PORTVERSION= 20041107 -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 \ - 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_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 3dcffa51180a..000000000000 --- a/multimedia/pvrxxx/distinfo +++ /dev/null @@ -1,6 +0,0 @@ -MD5 (cxm-20041107.shar) = beddb963e7c2df4781fda81bfb3e6e0c -SIZE (cxm-20041107.shar) = 184374 -MD5 (hcwPVRP2.sys) = IGNORE -SIZE (hcwPVRP2.sys) = IGNORE -MD5 (pvr250-1.1.tar.gz) = 85fe46157fafead2ad7f4dd76bf192cc -SIZE (pvr250-1.1.tar.gz) = 2372 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-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 a05b423d78e1..000000000000 --- a/multimedia/py-gstreamer80/Makefile +++ /dev/null @@ -1,55 +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 -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= gstreamerplugins \ - pygtk2 \ - gnomehack \ - pkgconfig -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 a8219c25b40f..000000000000 --- a/multimedia/vic/Makefile +++ /dev/null @@ -1,49 +0,0 @@ -# New ports collection makefile for: vic -# Date created: 14 December 1994 -# Whom: wollman -# -# $FreeBSD$ -# - -PORTNAME= vic -PORTVERSION= 2.8.1.1.3 -PORTREVISION= 1 -CATEGORIES= mbone tk83 ipv6 -MASTER_SITES= http://www-mice.cs.ucl.ac.uk/multimedia/software/vic/2.8ucl-1.1.3/ -DISTNAME= ${PORTNAME}-2.8ucl-1.1.3 - -MAINTAINER= fenner@FreeBSD.org -COMMENT= MBONE video tool - -LIB_DEPENDS= tk83.1:${PORTSDIR}/x11-toolkits/tk83 -BUILD_DEPENDS= ${LOCALBASE}/lib/libuclmmbase.a:${PORTSDIR}/devel/uclmmbase - -WRKSRC= ${WRKDIR}/vic-2.8ucl-1.1.3/vic - -USE_AUTOCONF_VER= 213 -USE_PERL5_BUILD=yes -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 - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 502126 -BROKEN= "Does not compile on FreeBSD >= 5.x" -.endif - -pre-patch: - @${FIND} ${WRKSRC} -name "*.[c,h]" | ${XARGS} ${PERL} -pi -e \ - 's|malloc.h|stdlib.h|' - -post-install: - ${STRIP_CMD} ${PREFIX}/bin/vic - ${STRIP_CMD} ${PREFIX}/bin/histtolut - -.include <bsd.port.post.mk> diff --git a/multimedia/vic/distinfo b/multimedia/vic/distinfo deleted file mode 100644 index b9faf5a35270..000000000000 --- a/multimedia/vic/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (vic-2.8ucl-1.1.3.tar.gz) = 55e792aa8f370fc15a197bb1b910a704 diff --git a/multimedia/vic/files/patch-Makefile.in b/multimedia/vic/files/patch-Makefile.in deleted file mode 100644 index 24d9a710cec8..000000000000 --- a/multimedia/vic/files/patch-Makefile.in +++ /dev/null @@ -1,20 +0,0 @@ ---- Makefile.in.orig Thu Feb 17 21:59:08 2000 -+++ Makefile.in Tue May 8 09:06:28 2001 -@@ -85,7 +85,7 @@ - OBJ_XIL = @V_OBJ_XIL@ - 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/libuclmmbase.a -lm -+ codec/tmndec/libh263.a codec/tmn-x/libh263coder.a /usr/local/lib/libuclmmbase.a -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 -@@ -329,7 +329,7 @@ - chown bin @prefix@/bin/vic - chgrp bin @prefix@/bin/vic - chmod 555 @prefix@/bin/vic -- cp vic.1 @prefix@/man/vic.1 -+ cp vic.1 @prefix@/man/man1/vic.1 - cp histtolut @prefix@/bin/histtolut - chown bin @prefix@/bin/histtolut - chgrp bin @prefix@/bin/histtolut diff --git a/multimedia/vic/files/patch-Tcl.cpp b/multimedia/vic/files/patch-Tcl.cpp deleted file mode 100644 index 881919b5448f..000000000000 --- a/multimedia/vic/files/patch-Tcl.cpp +++ /dev/null @@ -1,10 +0,0 @@ ---- Tcl.cpp.org Mon May 7 15:55:17 2001 -+++ Tcl.cpp Mon May 7 15:55:34 2001 -@@ -66,6 +66,7 @@ - { - instance_.tcl_ = tcl; - instance_.application_ = application; -+ Tcl_Init(tcl); - } - - void Tcl::evalc(const char* s) 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 aee5d9ad4021..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.3/ -+ if test ! -r $d/include/tcl8.3/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/libtcl83.so \ -+ $d/lib/libtcl83.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.3 \ - $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.3 -+ if test ! -r $d/include/tk8.3/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/libtk83.so \ -+ $d/lib/libtk83.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.3 \ - $d/lib/tk" - V_LIBRARY_TK=FAIL - for dir in $places; do diff --git a/multimedia/vic/files/patch-encoder-jpeg.cpp b/multimedia/vic/files/patch-encoder-jpeg.cpp deleted file mode 100644 index 7a8fed0d8b42..000000000000 --- a/multimedia/vic/files/patch-encoder-jpeg.cpp +++ /dev/null @@ -1,16 +0,0 @@ ---- codec/encoder-jpeg.cpp.orig Thu Jan 23 18:22:29 2003 -+++ codec/encoder-jpeg.cpp Thu Jan 23 18:22:37 2003 -@@ -127,12 +127,12 @@ - void size(int w, int h); - int consume(const VideoFrame*); - -- protected: - struct huffentry { - u_short val; - u_short nb; - }; - -+ protected: - int command(int argc, const char*const* argv); - - int flush(pktbuf* pb, int nbit, pktbuf* npb); 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.c b/multimedia/vic/files/patch-inet6.c deleted file mode 100644 index 3d1ba594a6f2..000000000000 --- a/multimedia/vic/files/patch-inet6.c +++ /dev/null @@ -1,14 +0,0 @@ ---- net/inet6.c.org Mon Feb 4 17:51:32 2002 -+++ net/inet6.c Mon Feb 4 17:52:02 2002 -@@ -64,11 +64,7 @@ - memcpy(addr->s6_addr, &(((struct sockaddr_in6 *)(ai->ai_addr))->sin6_addr), sizeof(struct in6_addr)); - return (0); - #else --#ifdef MUSICA_IPV6 - hp = gethostbyname2(hostname, AF_INET6); --#else -- hp = getnodebyname(hostname, AF_INET6,AI_DEFAULT); --#endif /*MUSICA_IPV6*/ - #endif /*LINUX_IPV6*/ - #endif /*SOLARIS7_IPV6*/ - if (hp == 0) return (-1); 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-net-ipv6.cpp b/multimedia/vic/files/patch-net-ipv6.cpp deleted file mode 100644 index 26397cdde8ff..000000000000 --- a/multimedia/vic/files/patch-net-ipv6.cpp +++ /dev/null @@ -1,29 +0,0 @@ ---- net/net-ipv6.cpp.org Mon Feb 4 17:51:46 2002 -+++ net/net-ipv6.cpp Mon Feb 4 17:52:08 2002 -@@ -277,7 +277,7 @@ - p->sin6_family = AF_INET6; - int len = sizeof(*p), result = 0; - -- if ((result = getsockname(ssock_, (struct sockaddr *)p, &len)) < 0) { -+ if ((result = getsockname(ssock_, (struct sockaddr *)p, (socklen_t *)&len)) < 0) { - perror("getsockname"); - p->sin6_addr = in6addr_any; - p->sin6_port = 0; -@@ -364,7 +364,7 @@ - * with bated breath. - */ - #if defined(__FreeBSD__) -- struct oipv6_mreq mr; -+ struct ipv6_mreq mr; - #else - struct ipv6_mreq mr; - #endif -@@ -522,7 +522,7 @@ - sockaddr_in6 sfrom; - int fromlen = sizeof(sfrom); - int cc = ::recvfrom(fd, (char*)buf, len, 0, -- (sockaddr*)&sfrom, &fromlen); -+ (sockaddr*)&sfrom, (socklen_t *)&fromlen); - if (cc < 0) { - if (errno != EWOULDBLOCK) - perror("recvfrom"); 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 457adff21faf..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. - -NOTE: This kit requires XFree86 3.1, Tk, and Tcl shared libraries. 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 f424df9ec613..000000000000 --- a/multimedia/vlc-devel/Makefile +++ /dev/null @@ -1,738 +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 -# -# WITHOUT_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: -# -# 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= 4 -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 ${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/libtheora.so.0) && !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.3:${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.5:${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 -CONFIGUR_ARGSE+= --enable-aa -.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(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.0:${PORTSDIR}/graphics/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_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/ |