summaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorgrant <grant>2004-06-26 18:05:45 +0000
committergrant <grant>2004-06-26 18:05:45 +0000
commited6a2213d92820ee354569d0c45db875e80bd36c (patch)
tree3cdf9e9e25e8a1ff523b014ec321e20fadba806b /graphics
parent6573acabfcca8dfe164aaada884a2ccee2ac49b4 (diff)
downloadpkgsrc-ed6a2213d92820ee354569d0c45db875e80bd36c.tar.gz
move dumpmpeg to multimedia/
Diffstat (limited to 'graphics')
-rw-r--r--graphics/Makefile3
-rw-r--r--graphics/dumpmpeg/DESCR5
-rw-r--r--graphics/dumpmpeg/Makefile17
-rw-r--r--graphics/dumpmpeg/PLIST3
-rw-r--r--graphics/dumpmpeg/distinfo5
-rw-r--r--graphics/dumpmpeg/patches/patch-aa22
6 files changed, 1 insertions, 54 deletions
diff --git a/graphics/Makefile b/graphics/Makefile
index 360358cccc4..9a3baf62b3d 100644
--- a/graphics/Makefile
+++ b/graphics/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.317 2004/06/10 20:06:55 agc Exp $
+# $NetBSD: Makefile,v 1.318 2004/06/26 18:05:45 grant Exp $
#
COMMENT= Graphics tools and libraries
@@ -49,7 +49,6 @@ SUBDIR+= cqcam
SUBDIR+= dcraw
SUBDIR+= denemo
SUBDIR+= dia
-SUBDIR+= dumpmpeg
SUBDIR+= dvdbackup
SUBDIR+= dvdview
SUBDIR+= dx
diff --git a/graphics/dumpmpeg/DESCR b/graphics/dumpmpeg/DESCR
deleted file mode 100644
index b9bc91395d1..00000000000
--- a/graphics/dumpmpeg/DESCR
+++ /dev/null
@@ -1,5 +0,0 @@
-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.
diff --git a/graphics/dumpmpeg/Makefile b/graphics/dumpmpeg/Makefile
deleted file mode 100644
index 6950cf40bb9..00000000000
--- a/graphics/dumpmpeg/Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
-# $NetBSD: Makefile,v 1.11 2004/06/26 18:02:29 grant Exp $
-#
-
-DISTNAME= dumpmpeg-0.6
-PKGREVISION= 2
-CATEGORIES= graphics
-MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=dumpmpeg/}
-
-MAINTAINER= hubertf@NetBSD.org
-HOMEPAGE= http://sourceforge.net/projects/dumpmpeg
-COMMENT= Splits an MPEG stream into single images
-
-USE_BUILDLINK3= YES
-GNU_CONFIGURE= YES
-
-.include "../../multimedia/smpeg/buildlink3.mk"
-.include "../../mk/bsd.pkg.mk"
diff --git a/graphics/dumpmpeg/PLIST b/graphics/dumpmpeg/PLIST
deleted file mode 100644
index 975d1d28479..00000000000
--- a/graphics/dumpmpeg/PLIST
+++ /dev/null
@@ -1,3 +0,0 @@
-@comment $NetBSD: PLIST,v 1.1 2001/10/31 23:50:27 zuntum Exp $
-bin/dumpmpeg
-man/man1/dumpmpeg.1
diff --git a/graphics/dumpmpeg/distinfo b/graphics/dumpmpeg/distinfo
deleted file mode 100644
index 5b814b747f0..00000000000
--- a/graphics/dumpmpeg/distinfo
+++ /dev/null
@@ -1,5 +0,0 @@
-$NetBSD: distinfo,v 1.1.1.1 2001/05/17 16:00:52 hubertf Exp $
-
-SHA1 (dumpmpeg-0.6.tar.gz) = 99bd1e62d69c3727d69d1f313c0277718b83d66e
-Size (dumpmpeg-0.6.tar.gz) = 43257 bytes
-SHA1 (patch-aa) = 3b1613a264dd5704d74ab732d3c335c971f5f819
diff --git a/graphics/dumpmpeg/patches/patch-aa b/graphics/dumpmpeg/patches/patch-aa
deleted file mode 100644
index aef2d964dfd..00000000000
--- a/graphics/dumpmpeg/patches/patch-aa
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 2001/05/17 16:00:52 hubertf 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) ) {