diff options
author | avilla <avilla@FreeBSD.org> | 2010-03-10 00:12:40 +0800 |
---|---|---|
committer | avilla <avilla@FreeBSD.org> | 2010-03-10 00:12:40 +0800 |
commit | f8731736deb4e4f994ebacbfc79fd4578d286ba3 (patch) | |
tree | e620bc3fd57d08187569d80be384b3f0ffac95e8 /multimedia/oggvideotools | |
parent | 0dc16fa35364cf94de662dc7d8fe42422ba6db6d (diff) | |
download | freebsd-ports-gnome-f8731736deb4e4f994ebacbfc79fd4578d286ba3.tar.gz freebsd-ports-gnome-f8731736deb4e4f994ebacbfc79fd4578d286ba3.tar.zst freebsd-ports-gnome-f8731736deb4e4f994ebacbfc79fd4578d286ba3.zip |
- Add new port multimedia/oggvideotools.
The "Ogg Video Tools" is a toolbox for manipulating Ogg video files,
which usually consist of a video stream (Theora) and an audio stream
(Vorbis). It includes a number of handy command line tools for
creating an manipulating these video files, such as for splitting the
different streams.
At the moment there are the following tools available: oggResize,
oggThumb, oggSlideshow, oggCut, oggCat, oggSplit, oggJoin, oggDump,
oggLength, oggSilence and oggScroll.
WWW: http://dev.streamnik.de/oggvideotools.html
PR: 144347
Submitted by: Jille Timmermans <jille@quis.cx>
Approved by: miwi, tabthorpe (mentors)
Diffstat (limited to 'multimedia/oggvideotools')
-rw-r--r-- | multimedia/oggvideotools/Makefile | 32 | ||||
-rw-r--r-- | multimedia/oggvideotools/distinfo | 3 | ||||
-rw-r--r-- | multimedia/oggvideotools/pkg-descr | 11 |
3 files changed, 46 insertions, 0 deletions
diff --git a/multimedia/oggvideotools/Makefile b/multimedia/oggvideotools/Makefile new file mode 100644 index 000000000000..756bd12290ab --- /dev/null +++ b/multimedia/oggvideotools/Makefile @@ -0,0 +1,32 @@ +# Ports collection makefile for: oggvideotools +# Date created: Sat Feb 28, 2010 +# Whom: Jille Timmermans (jille@quis.cx) +# $FreeBSD$ + +PORTNAME= oggvideotools +PORTVERSION= 0.8 +CATEGORIES= multimedia +MASTER_SITES= SF +MASTER_SITE_SUBDIR= oggvideotools/oggvideotools/${DISTNAME} + +MAINTAINER= jille@quis.cx +COMMENT= A toolbox for manipulating Ogg video files + +LIB_DEPENDS= gd.4:${PORTSDIR}/graphics/gd \ + ogg.6:${PORTSDIR}/audio/libogg \ + theora.0:${PORTSDIR}/multimedia/libtheora \ + vorbis.4:${PORTSDIR}/audio/libvorbis + +USE_SDL= sdl +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS=-I${LOCALBASE}/include +MAKEFILE= makefile + +.for app in oggSplit oggDump oggJoin oggCut oggCat oggLength oggSlideshow oggThumb oggResize oggSilence oggScroll mkThumbs mkSlideshow +PLIST_FILES+= bin/${app} +.endfor +.for app in oggResize oggSlideshow oggThumb oggSplit oggJoin oggCut oggCat oggSilence +MAN1+= ${app}.1 +.endfor + +.include <bsd.port.mk> diff --git a/multimedia/oggvideotools/distinfo b/multimedia/oggvideotools/distinfo new file mode 100644 index 000000000000..4084b1ea7756 --- /dev/null +++ b/multimedia/oggvideotools/distinfo @@ -0,0 +1,3 @@ +MD5 (oggvideotools-0.8.tar.gz) = d735b6a4cdb5557340cc4b7d558f1052 +SHA256 (oggvideotools-0.8.tar.gz) = c33f33b400d6c01d12490a063e29347ac36fb59eac00892256552cafb0d4c93a +SIZE (oggvideotools-0.8.tar.gz) = 476044 diff --git a/multimedia/oggvideotools/pkg-descr b/multimedia/oggvideotools/pkg-descr new file mode 100644 index 000000000000..662eb5741f71 --- /dev/null +++ b/multimedia/oggvideotools/pkg-descr @@ -0,0 +1,11 @@ +The "Ogg Video Tools" is a toolbox for manipulating Ogg video files, +which usually consist of a video stream (Theora) and an audio stream +(Vorbis). It includes a number of handy command line tools for +creating an manipulating these video files, such as for splitting the +different streams. + +At the moment there are the following tools available: oggResize, +oggThumb, oggSlideshow, oggCut, oggCat, oggSplit, oggJoin, oggDump, +oggLength, oggSilence and oggScroll. + +WWW: http://dev.streamnik.de/oggvideotools.html |