pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc move dumpmpeg to multimedia/



details:   https://anonhg.NetBSD.org/pkgsrc/rev/f244f7835815
branches:  trunk
changeset: 477087:f244f7835815
user:      grant <grant%pkgsrc.org@localhost>
date:      Sat Jun 26 18:05:45 2004 +0000

description:
move dumpmpeg to multimedia/

diffstat:

 graphics/Makefile                    |   3 +--
 graphics/dumpmpeg/DESCR              |   5 -----
 graphics/dumpmpeg/Makefile           |  17 -----------------
 graphics/dumpmpeg/PLIST              |   3 ---
 graphics/dumpmpeg/distinfo           |   5 -----
 graphics/dumpmpeg/patches/patch-aa   |  22 ----------------------
 multimedia/Makefile                  |   3 ++-
 multimedia/dumpmpeg/DESCR            |   5 +++++
 multimedia/dumpmpeg/Makefile         |  17 +++++++++++++++++
 multimedia/dumpmpeg/PLIST            |   3 +++
 multimedia/dumpmpeg/distinfo         |   5 +++++
 multimedia/dumpmpeg/patches/patch-aa |  22 ++++++++++++++++++++++
 12 files changed, 55 insertions(+), 55 deletions(-)

diffs (178 lines):

diff -r cb4be0ce3a80 -r f244f7835815 graphics/Makefile
--- a/graphics/Makefile Sat Jun 26 18:02:29 2004 +0000
+++ b/graphics/Makefile Sat Jun 26 18:05:45 2004 +0000
@@ -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+=       dcraw
 SUBDIR+=       denemo
 SUBDIR+=       dia
-SUBDIR+=       dumpmpeg
 SUBDIR+=       dvdbackup
 SUBDIR+=       dvdview
 SUBDIR+=       dx
diff -r cb4be0ce3a80 -r f244f7835815 graphics/dumpmpeg/DESCR
--- a/graphics/dumpmpeg/DESCR   Sat Jun 26 18:02:29 2004 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -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 -r cb4be0ce3a80 -r f244f7835815 graphics/dumpmpeg/Makefile
--- a/graphics/dumpmpeg/Makefile        Sat Jun 26 18:02:29 2004 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -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@localhost
-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 -r cb4be0ce3a80 -r f244f7835815 graphics/dumpmpeg/PLIST
--- a/graphics/dumpmpeg/PLIST   Sat Jun 26 18:02:29 2004 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -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 -r cb4be0ce3a80 -r f244f7835815 graphics/dumpmpeg/distinfo
--- a/graphics/dumpmpeg/distinfo        Sat Jun 26 18:02:29 2004 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -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 -r cb4be0ce3a80 -r f244f7835815 graphics/dumpmpeg/patches/patch-aa
--- a/graphics/dumpmpeg/patches/patch-aa        Sat Jun 26 18:02:29 2004 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -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) ) {
diff -r cb4be0ce3a80 -r f244f7835815 multimedia/Makefile
--- a/multimedia/Makefile       Sat Jun 26 18:02:29 2004 +0000
+++ b/multimedia/Makefile       Sat Jun 26 18:05:45 2004 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.52 2004/06/26 18:00:21 grant Exp $
+# $NetBSD: Makefile,v 1.53 2004/06/26 18:05:45 grant Exp $
 #
 
 COMMENT=       Multimedia utilities
@@ -9,6 +9,7 @@
 SUBDIR+=       avifile
 SUBDIR+=       dirac
 SUBDIR+=       divxplayer
+SUBDIR+=       dumpmpeg
 SUBDIR+=       dvdauthor
 SUBDIR+=       dvdrip
 SUBDIR+=       ffmpeg
diff -r cb4be0ce3a80 -r f244f7835815 multimedia/dumpmpeg/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/multimedia/dumpmpeg/DESCR Sat Jun 26 18:05:45 2004 +0000
@@ -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.
diff -r cb4be0ce3a80 -r f244f7835815 multimedia/dumpmpeg/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/multimedia/dumpmpeg/Makefile      Sat Jun 26 18:05:45 2004 +0000
@@ -0,0 +1,17 @@
+# $NetBSD: Makefile,v 1.1 2004/06/26 18:05:45 grant Exp $
+#
+
+DISTNAME=      dumpmpeg-0.6
+PKGREVISION=   2
+CATEGORIES=    graphics
+MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=dumpmpeg/}
+
+MAINTAINER=    hubertf%NetBSD.org@localhost
+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 -r cb4be0ce3a80 -r f244f7835815 multimedia/dumpmpeg/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/multimedia/dumpmpeg/PLIST Sat Jun 26 18:05:45 2004 +0000
@@ -0,0 +1,3 @@
+@comment $NetBSD: PLIST,v 1.1 2004/06/26 18:05:45 grant Exp $
+bin/dumpmpeg
+man/man1/dumpmpeg.1
diff -r cb4be0ce3a80 -r f244f7835815 multimedia/dumpmpeg/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/multimedia/dumpmpeg/distinfo      Sat Jun 26 18:05:45 2004 +0000
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1 2004/06/26 18:05:45 grant Exp $
+
+SHA1 (dumpmpeg-0.6.tar.gz) = 99bd1e62d69c3727d69d1f313c0277718b83d66e
+Size (dumpmpeg-0.6.tar.gz) = 43257 bytes
+SHA1 (patch-aa) = 3b1613a264dd5704d74ab732d3c335c971f5f819
diff -r cb4be0ce3a80 -r f244f7835815 multimedia/dumpmpeg/patches/patch-aa
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/multimedia/dumpmpeg/patches/patch-aa      Sat Jun 26 18:05:45 2004 +0000
@@ -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) ) {



Home | Main Index | Thread Index | Old Index