diff options
author | jylefort <jylefort@FreeBSD.org> | 2005-09-06 05:09:08 +0800 |
---|---|---|
committer | jylefort <jylefort@FreeBSD.org> | 2005-09-06 05:09:08 +0800 |
commit | 8071478254ae2aca8f4e85f2630584677149e8be (patch) | |
tree | 450b1d1c7500d6e3b07c8dee2dd4be4266df0a15 /multimedia | |
parent | 0e9cbc547fe27a92fef4a3ae30827b91a389487f (diff) | |
download | freebsd-ports-gnome-8071478254ae2aca8f4e85f2630584677149e8be.tar.gz freebsd-ports-gnome-8071478254ae2aca8f4e85f2630584677149e8be.tar.zst freebsd-ports-gnome-8071478254ae2aca8f4e85f2630584677149e8be.zip |
Add streamdvd.
StreamDVD is a fast tool to backup Video DVDs 'on the fly', there will
be no ripping, demultiplexing, recoding, remultiplexing...
You can select the wanted title, chapters, video, audio and subpicture
streams, a resize factor, and StreamDVD will write a 'ready to author'
vob file to stdout.
WWW: http://www.badabum.de/streamdvd.html
PR: ports/85714
Submitted by: Serge Gagnon <serge.gagnon@b2b2c.ca>
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/Makefile | 1 | ||||
-rw-r--r-- | multimedia/streamdvd/Makefile | 38 | ||||
-rw-r--r-- | multimedia/streamdvd/distinfo | 2 | ||||
-rw-r--r-- | multimedia/streamdvd/pkg-descr | 8 |
4 files changed, 49 insertions, 0 deletions
diff --git a/multimedia/Makefile b/multimedia/Makefile index 061f83c8305e..217b094cb024 100644 --- a/multimedia/Makefile +++ b/multimedia/Makefile @@ -149,6 +149,7 @@ SUBDIR += smpeg-xmms SUBDIR += spigot SUBDIR += splitmpg + SUBDIR += streamdvd SUBDIR += subconv SUBDIR += tcmplex-panteltje SUBDIR += tkxanim diff --git a/multimedia/streamdvd/Makefile b/multimedia/streamdvd/Makefile new file mode 100644 index 000000000000..8a01b6336af0 --- /dev/null +++ b/multimedia/streamdvd/Makefile @@ -0,0 +1,38 @@ +# New ports collection makefile for: streamdvd +# Date created: Fri Jul 22 18:30:01 EDT 2005 +# Whom: Serge Gagnon <serge.gagnon@b2b2c.ca> +# +# $FreeBSD$ +# + +PORTNAME= streamdvd +PORTVERSION= 0.4 +CATEGORIES= multimedia +MASTER_SITES= http://www.badabum.de/down/ + +MAINTAINER= serge.gagnon@b2b2c.ca +COMMENT= A fast tool to backup Video DVDs 'on the fly' + +LIB_DEPENDS= dvdread:${PORTSDIR}/multimedia/libdvdread + +WRKSRC= ${WRKDIR}/StreamDVD-${PORTVERSION} +USE_REINPLACE= yes + +PLIST_FILES= bin/streamdvd +PORTDOCS= README + +post-patch: + @${REINPLACE_CMD} -e 's|g++ -g -Wall|${CXX} ${CXXFLAGS} -I${LOCALBASE}/include -L${LOCALBASE}/lib|' ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e 's|<getopt\.h>|<unistd.h>|' \ + ${WRKSRC}/mplex/mplex.cpp ${WRKSRC}/streamdvd.c + @${REINPLACE_CMD} -e 's|<stdint\.h>|<unistd.h>|' \ + ${WRKSRC}/mplex/mjpeg_types.h + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/streamdvd ${PREFIX}/bin +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR} +.endif + +.include <bsd.port.mk> diff --git a/multimedia/streamdvd/distinfo b/multimedia/streamdvd/distinfo new file mode 100644 index 000000000000..83a4521f2fc1 --- /dev/null +++ b/multimedia/streamdvd/distinfo @@ -0,0 +1,2 @@ +MD5 (streamdvd-0.4.tar.gz) = 5e85dee490c5c5fb20faf87851fdca74 +SIZE (streamdvd-0.4.tar.gz) = 152669 diff --git a/multimedia/streamdvd/pkg-descr b/multimedia/streamdvd/pkg-descr new file mode 100644 index 000000000000..c00be10b5e8c --- /dev/null +++ b/multimedia/streamdvd/pkg-descr @@ -0,0 +1,8 @@ +StreamDVD is a fast tool to backup Video DVDs 'on the fly', there will +be no ripping, demultiplexing, recoding, remultiplexing... + +You can select the wanted title, chapters, video, audio and subpicture +streams, a resize factor, and StreamDVD will write a 'ready to author' +vob file to stdout. + +WWW: http://www.badabum.de/streamdvd.html |