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,3 @@
A simple set of tools to help you author a DVD. The idea is to be able to
create menus, buttons, chapters, etc, but for now you can just take an MPEG
stream (as created by mplex -f 8 from mjpegtools 1.6.0) and write it to DVD.

View File

@@ -0,0 +1,23 @@
# $NetBSD: Makefile,v 1.40 2013/06/04 22:16:46 tron Exp $
DISTNAME= dvdauthor-0.7.1
PKGREVISION= 3
CATEGORIES= multimedia
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=dvdauthor/}
MAINTAINER= sekiya@NetBSD.org
HOMEPAGE= http://dvdauthor.sourceforge.net/
COMMENT= Tools to assist DVD authoring
LICENSE= gnu-gpl-v2
WRKSRC= ${WRKDIR}/dvdauthor
GNU_CONFIGURE= YES
USE_TOOLS+= flex gmake yacc pkg-config
# To keep a consistent behavior with previous releases
CONFIGURE_ARGS+= --enable-default-video-format=ntsc
.include "../../graphics/ImageMagick/buildlink3.mk"
.include "../../converters/fribidi/buildlink3.mk"
.include "../../multimedia/libdvdread/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

View File

@@ -0,0 +1,16 @@
@comment $NetBSD: PLIST,v 1.5 2013/04/17 17:30:14 drochner Exp $
bin/dvdauthor
bin/dvddirdel
bin/dvdunauthor
bin/mpeg2desc
bin/spumux
bin/spuunmux
man/man1/dvdauthor.1
man/man1/dvddirdel.1
man/man1/dvdunauthor.1
man/man1/mpeg2desc.1
man/man1/spumux.1
man/man1/spuunmux.1
share/dvdauthor/common.xsd
share/dvdauthor/dvdauthor.xsd
share/dvdauthor/spumux.xsd

View File

@@ -0,0 +1,6 @@
$NetBSD: distinfo,v 1.13 2013/04/17 17:30:14 drochner Exp $
SHA1 (dvdauthor-0.7.1.tar.gz) = a9636d165bf546e3e2b25b7397c33dbfa2895e6a
RMD160 (dvdauthor-0.7.1.tar.gz) = 71bdee2048a45ea15b7d0e62e75675f9132006ca
Size (dvdauthor-0.7.1.tar.gz) = 421324 bytes
SHA1 (patch-configure) = 410993b755cdcd1989b12b6c31b99f64ee7472e0

View File

@@ -0,0 +1,20 @@
$NetBSD: patch-configure,v 1.1 2011/02/16 20:20:14 gls Exp $
Portability fix
--- configure.orig 2010-10-23 02:30:40.000000000 +0000
+++ configure
@@ -5191,11 +5191,11 @@ fi
# Check whether --enable-default-video-format was given.
if test "${enable_default_video_format+set}" = set; then :
enableval=$enable_default_video_format;
-if test "$enable_default_video_format" == "PAL" -o "$enable_default_video_format" == "pal"; then
+if test "$enable_default_video_format" = "PAL" -o "$enable_default_video_format" = "pal"; then
$as_echo "#define DEFAULT_VIDEO_FORMAT 2" >>confdefs.h
-elif test "$enable_default_video_format" == "NTSC" -o "$enable_default_video_format" == "ntsc"; then
+elif test "$enable_default_video_format" = "NTSC" -o "$enable_default_video_format" = "ntsc"; then
$as_echo "#define DEFAULT_VIDEO_FORMAT 1" >>confdefs.h