Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
dumpmpeg is a program that allows you to dump video frames from MPEG
movie files. It uses the SDL MPEG Player Library to accomplish this and
thus requires an open X-Window. Since it uses the SMPEG library, it
can dump frames from format it supports, which currently is MPEG-1 video
files.

View File

@@ -0,0 +1,16 @@
# $NetBSD: Makefile,v 1.13 2012/10/08 09:20:58 asau Exp $
#
DISTNAME= dumpmpeg-0.6
PKGREVISION= 8
CATEGORIES= multimedia
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=dumpmpeg/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://sourceforge.net/projects/dumpmpeg
COMMENT= Splits an MPEG stream into single images
GNU_CONFIGURE= YES
.include "../../multimedia/smpeg/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

View File

@@ -0,0 +1,3 @@
@comment $NetBSD: PLIST,v 1.1 2004/06/26 18:05:45 grant Exp $
bin/dumpmpeg
man/man1/dumpmpeg.1

View File

@@ -0,0 +1,6 @@
$NetBSD: distinfo,v 1.2 2005/02/24 11:24:02 agc Exp $
SHA1 (dumpmpeg-0.6.tar.gz) = 99bd1e62d69c3727d69d1f313c0277718b83d66e
RMD160 (dumpmpeg-0.6.tar.gz) = d53404045542a7ec0c156a0cfbf6fd0f6fb8781f
Size (dumpmpeg-0.6.tar.gz) = 43257 bytes
SHA1 (patch-aa) = 3b1613a264dd5704d74ab732d3c335c971f5f819

View File

@@ -0,0 +1,22 @@
$NetBSD: patch-aa,v 1.1 2004/06/26 18:05:45 grant Exp $
--- dumpmpeg.c.orig Thu May 17 15:52:12 2001
+++ dumpmpeg.c
@@ -318,14 +318,14 @@
#ifdef VCD_SUPPORT
/* Check if source is a CDROM device */
if((fd = vcd_open(argv[i])) != 0)
- mpeg = SMPEG_new_descr(fd, &info, 1);
+ mpeg = SMPEG_new_descr(fd, &info, 0); /* we don't need audio! */
else
#endif
{
if(strcmp(argv[i], "-") == 0) /* Use stdin for input */
- mpeg = SMPEG_new_descr(0, &info, 1);
+ mpeg = SMPEG_new_descr(0, &info, 0); /* we don't need audio! */
else
- mpeg = SMPEG_new(argv[i], &info, 1);
+ mpeg = SMPEG_new(argv[i], &info, 0); /* we don't need audio! */
}
if ( SMPEG_error(mpeg) ) {